.articles-section {
    padding: 80px 0;
    background: #f9fafb;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.article-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.article-date svg {
    stroke: #9ca3af;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #f59e0b;
}

.article-excerpt {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.article-link:hover {
    gap: 0.75rem;
}

.article-link svg {
    stroke: currentColor;
}

/* No Articles */
.no-articles {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.no-articles svg {
    stroke: #d1d5db;
    margin-bottom: 1.5rem;
}

.no-articles h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.no-articles p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .articles-section {
        padding: 60px 0;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-content {
        padding: 1.5rem;
    }

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

@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .articles-section {
        padding: 50px 0;
    }

    .articles-grid {
        gap: 1.25rem;
    }

    .article-content {
        padding: 1.25rem;
    }

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

    .article-excerpt {
        font-size: 0.875rem;
    }

    .article-image {
        height: 220px;
    }

    .article-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .article-meta-item {
        font-size: 0.8125rem;
    }

    .no-articles {
        padding: 3rem 1.5rem;
    }

    .no-articles h3 {
        font-size: 1.5rem;
    }

    .no-articles p {
        font-size: 1rem;
    }
}
