/* Articles List Component */

.articles-list-section {
    background: white;
    padding: 2rem 0 4rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card */
.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26, 50, 99, 0.15);
}

/* Image */
.article-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.4s ease;
}

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

/* Content */
.article-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: right;
}

.article-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1A3263;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.article-card-excerpt {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

/* Button */
.article-card-btn {
    width: 100%;
    background: #1A3263;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
    text-align: center;
}

.article-card-btn:hover {
    background: #0f1f3d;
}

/* Responsive */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .articles-list-section {
        padding: 2.5rem 0;
    }

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

/* Pagination */
.articles-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.articles-pag-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1A3263;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s ease;
    font-family: inherit;
}

.articles-pag-btn:hover {
    background: #0f1f3d;
}

.articles-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.articles-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C9D1E2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.articles-dot.active {
    background: #1A3263;
    width: 28px;
    border-radius: 5px;
}