/* ===============================
   NEWS LIST – DESKTOP
================================ */
.news-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 20px 0;
}

.news-card {
    display: flex;
    gap: 40px;
}

.news-thumb img {
    width: 380px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
}

.news-info {
    padding-top: 10px;
}

.news-info .date {
    color: #F6C200;
    font-size: 14px;
    margin-bottom: 8px;
}

.news-title {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-title a {
    color: #0f4f93;
    font-weight: 700;
    text-decoration: none;
}

.btn-view {
    background: #1659B7;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    transition: .25s ease;
}

.btn-view:hover {
    background: #0e4b8e;
}


/* ===============================
   NEWS LIST – MOBILE
================================ */
@media (max-width: 980px) {

    .news-list-wrap {
        gap: 36px;
        padding: 16px 0;
    }

    .news-card {
        flex-direction: column;
        gap: 14px;
    }

    .news-thumb img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .news-info {
        padding-top: 0;
    }

    .news-info .date {
        font-size: 13px;
    }

    .news-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .btn-view {
        padding: 10px 22px;
    }
}

/* ===============================
   PAGINATION
   =============================== */

.pagination-wrap {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.pagination {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.pagination .page-arrow {
    font-size: 18px;
    font-weight: 700;
}

/* LINK */
.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;

    text-decoration: none;
    border: 2px solid #1659B7;
    background: #fff;
    color: #1659B7;

    transition: all .25s ease;
}

/* HOVER */
.pagination a:hover {
    background: #F6C200;
    border-color: #F6C200;
    color: #1659B7;
}

/* ACTIVE (CURRENT PAGE) */
.pagination .active span {
    background: #F6C200;
    border-color: #F6C200;
    color: #1659B7;
    box-shadow: 0 6px 18px rgba(246, 194, 0, 0.45);
}

/* PREV / NEXT */
.pagination .nav {
    font-size: 18px;
}

/* MOBILE */
@media (max-width: 600px) {
    .pagination {
        gap: 6px;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
}



/* ===============================
   NEWS DETAIL – MOBILE
================================ */
@media (max-width: 980px) {

    .news-cover-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .news-content {
        font-size: 15px;
        line-height: 1.7;
    }

    .news-gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
}