@charset "UTF-8";

/* ==========================================================================
   Information Pages Style (from information.html)
   ========================================================================== */
 .sv-container a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Container utility */
.sv-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header Banner */
.sv-page-header {
    background: linear-gradient(135deg, #0f2537 0%, #1c3d5a 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sv-page-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sv-page-header__title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.sv-page-header__sub {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #8da4be;
    text-transform: uppercase;
}

/* Breadcrumbs */
.sv-breadcrumb-wrapper {
    background-color: #f4f6f8;
    border-bottom: 1px solid #e2e8f0;
}

.sv-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 0;
    font-size: 13px;
    color: #64748b;
}

.sv-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}

.sv-breadcrumb__item {
    display: flex;
    align-items: center;
}

.sv-breadcrumb__item:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #94a3b8;
    border-right: 1px solid #94a3b8;
    transform: rotate(45deg);
    margin: 0 10px;
}

.sv-breadcrumb__link {
    color: #475569;
    transition: color 0.2s;
}

.sv-breadcrumb__link:hover {
    color: #0f2537;
    text-decoration: underline;
}

.sv-breadcrumb__current {
    color: #1e293b;
    font-weight: 500;
}

/* Main Content Area & Category Filter */
.sv-news-section {
    padding: 60px 0 90px;
}

.sv-news-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
    list-style: none;
}

.sv-news-nav__btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.sv-news-nav__btn:hover,
.sv-news-nav__btn.is-active {
    background-color: #0f2537;
    color: #ffffff;
    border-color: #0f2537;
    box-shadow: 0 4px 10px rgba(15, 37, 55, 0.15);
}

/* News List Items */
.sv-news-list {
    list-style: none;
    border-top: 2px solid #0f2537;
}

.sv-news-item {
    border-bottom: 1px solid #e2e8f0;
}

.sv-news-item__link {
    display: flex;
    align-items: center;
    padding: 24px 16px;
    background-color: #ffffff;
    transition: background-color 0.25s ease, padding-left 0.25s ease;
}

.sv-news-item__link:hover {
    background-color: #f8fafc;
    padding-left: 24px;
}

.sv-news-item__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 260px;
    flex-shrink: 0;
}

.sv-news-item__date {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
}

.sv-news-item__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    text-align: center;
    line-height: 1.4;
    min-width: 110px;
    background-color: #f1f5f9;
    color: #334155;
}

.sv-news-item__title {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    flex-grow: 1;
    padding-right: 20px;
    line-height: 1.6;
}

.sv-news-item__link:hover .sv-news-item__title {
    color: #0056b3;
}

.sv-news-item__arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.25s ease, color 0.25s ease;
}

.sv-news-item__arrow::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.sv-news-item__link:hover .sv-news-item__arrow {
    color: #0f2537;
    transform: translateX(5px);
}

/* Pagination */
.sv-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.sv-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sv-pagination .page-numbers:hover,
.sv-pagination .page-numbers.current {
    background-color: #0f2537;
    color: #ffffff;
    border-color: #0f2537;
}

.sv-pagination .page-numbers.dots {
    border: none;
    background: none;
    cursor: default;
}

.sv-pagination .page-numbers.prev,
.sv-pagination .page-numbers.next {
    width: auto;
    padding: 0 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sv-page-header {
        padding: 40px 16px;
    }

    .sv-page-header__title {
        font-size: 24px;
    }

    .sv-news-section {
        padding: 40px 0 60px;
    }

    .sv-news-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .sv-news-nav__btn {
        white-space: nowrap;
        padding: 8px 16px;
        font-size: 13px;
    }

    .sv-news-item__link {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 12px;
        gap: 10px;
        position: relative;
    }

    .sv-news-item__link:hover {
        padding-left: 12px;
    }

    .sv-news-item__meta {
        min-width: auto;
        gap: 12px;
    }

    .sv-news-item__title {
        font-size: 14px;
        padding-right: 25px;
    }

    .sv-news-item__arrow {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .sv-news-item__link:hover .sv-news-item__arrow {
        transform: translateY(-50%) translateX(3px);
    }
}