.articles-header {
    background: linear-gradient(135deg, #3B4C7A 0%, #2C8C99 100%);
    color: var(--background-white);
    text-align: center;
    padding: 2rem var(--standard-padding);
    position: relative;
}

.articles-header-content {
    max-width: var(--max-document-width);
    margin: 0 auto;
}

.articles-header h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: var(--text-3xl);
    line-height: var(--text-3xl--line-height);
    margin: 0 0 0.5rem 0;
    color: var(--background-white);
}

.articles-header-subtitle {
    font-size: var(--text-base);
    line-height: var(--text-base--line-height);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.articles-header-line {
    border: none;
    height: 0.125rem;
    background-color: var(--background-white);
    width: 4rem;
    margin: 0 auto;
    opacity: 0.8;
}

.articles-page-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.articles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-card {
    background-color: var(--background-white);
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 100%;
    flex: 1;
}

.article-card:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.article-thumbnail {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.article-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.article-card-content h3 {
    font-size: var(--text-base);
    line-height: var(--text-base--line-height);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    flex-grow: 1; 
}

.article-card-meta {
    font-size: var(--text-xs);
    color: #666;
    margin-top: auto; 
}

@media (width >= 40rem) {
    .articles-grid {
        align-items: stretch;
    }

    .articles-header {
        padding: 3rem var(--standard-padding);
    }

    .articles-header h1 {
        font-size: var(--text-4xl);
        line-height: var(--text-4xl--line-height);
    }

    .articles-header-subtitle {
        font-size: var(--text-lg);
        line-height: var(--text-lg--line-height);
    }

    .article-card {
        min-width: calc(50% - 0.5rem);
    }
} 