/* ===================================
   NEWS ARCHIVE PAGE
   =================================== */

.news-archive-section {
    padding: 100px 40px;
    background: #f5f5f5;
    min-height: 100vh;
}

.news-archive-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    margin: 22px 0;
    text-align: center;
}

.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.news-archive-item {
    transition: opacity 0.3s ease;
}

.news-archive-item:hover {
    opacity: 0.7;
}

.news-archive-item .news-item-link {
    display: block;
    text-decoration: none;
    color: #000;
}

.news-archive-item .news-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.news-archive-item .news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-archive-item .news-date {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.news-archive-item .news-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.no-posts {
    text-align: center;
    font-size: 16px;
    color: #666;
    padding: 60px 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
}

.pagination a,
.pagination .current {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.pagination .current {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .news-archive-section {
        padding: 100px 40px;
    }

    .page-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .news-archive-section {
        padding: 80px 20px;
    }

    .page-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .news-archive-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-archive-content {
        padding: 20px;
    }

    .news-archive-title {
        font-size: 16px;
    }
}
