/* Articles-specific styles extracted from views */

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.back-to-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-to-brand:hover {
    background-color: #3b82f6;
    color: white;
    text-decoration: none;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.article-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.article-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-content {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.article-attachments {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.article-attachments h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.attachments-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.attachment-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.attachment-item:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.attachment-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    gap: 1rem;
}

.attachment-icon {
    font-size: 1.25rem;
    color: #6b7280;
}

.attachment-info {
    flex: 1;
    min-width: 0;
}

.attachment-name {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.attachment-size {
    font-size: 0.875rem;
    color: #6b7280;
}

.download-icon {
    font-size: 1.25rem;
    color: #3b82f6;
}

.article-separator {
    height: 2px;
    background: linear-gradient(90deg, #e5e7eb, #d1d5db, #e5e7eb);
    border: none;
    margin: 2rem 0;
}

.article-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

.empty-state-icon {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.empty-state-message {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .articles-container {
        padding: 1rem;
    }

    .articles-title {
        font-size: 2rem;
    }

    .article-item {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.5rem;
    }
}
