﻿html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", sans-serif;
}

body,
button,
input,
optgroup,
select,
textarea,
code,
kbd,
pre,
samp {
    font-family: "Barlow", sans-serif;
}

.global-history-back {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 50;
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 156, 78, 0.22);
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.96);
    color: #1E3A5F;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
    transition: transform .22s ease, color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

    .global-history-back.is-hidden {
        display: none;
    }

#global-back-to-top {
    right: 1.25rem;
    bottom: 4.75rem;
}

    .global-history-back svg {
        flex: 0 0 auto;
    }

    .global-history-back:hover,
    .global-history-back:focus-visible {
        border-color: rgba(18, 156, 78, 0.46);
        background: #129c4e;
        color: #fff;
        box-shadow: 0 18px 40px rgba(18, 156, 78, 0.24);
        transform: translateY(-2px);
    }

    .global-history-back:focus-visible {
        outline: 2px solid rgba(18, 156, 78, 0.28);
        outline-offset: 3px;
    }

    .global-history-back::after {
        content: attr(data-tooltip);
        position: absolute;
        right: calc(100% + 0.65rem);
        top: 50%;
        transform: translate(0.35rem, -50%);
        pointer-events: none;
        white-space: nowrap;
        border-radius: 999px;
        background: #0f172a;
        padding: 0.45rem 0.75rem;
        color: #fff;
        font-size: 0.75rem;
        font-weight: 800;
        line-height: 1;
        opacity: 0;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
        transition: opacity .18s ease, transform .18s ease;
    }

    .global-history-back:hover::after,
    .global-history-back:focus-visible::after {
        transform: translate(0, -50%);
        opacity: 1;
    }

@media (min-width: 640px) {
    .global-history-back {
        right: 2rem;
        bottom: 2rem;
    }

    #global-back-to-top {
        right: 2rem;
        bottom: 5.65rem;
    }
}

@media (max-width: 480px) {
    .global-history-back::after {
        display: none;
    }
}

.pvn-brand-wordmark {
    display: inline-block;
    color: #129c4e;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: .82;
    letter-spacing: .01em;
    transform-origin: left center;
    text-shadow: .25px 0 0 currentColor;
    white-space: nowrap;
}

.pvn-brand-subtitle {
    max-width: 100%;
    margin-top: .375rem;
    color: #129c4e;
    font-family: "Barlow", sans-serif;
    font-synthesis: none;
    font-size: .62rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: .012em;
    text-wrap: balance;
    text-shadow: .25px 0 0 currentColor;
    text-transform: uppercase;
}

.pvn-brand-font {
    font-family: "Barlow", sans-serif;
    font-synthesis: none;
}

@media (min-width: 640px) {
    .pvn-brand-wordmark {
        font-size: 1.48rem;
    }

    .pvn-brand-subtitle {
        font-size: .82rem;
        letter-spacing: .02em;
    }
}

@media (min-width: 1024px) {
    .pvn-brand-wordmark {
        font-size: 1.92rem;
    }

    .pvn-brand-subtitle {
        font-size: 1.18rem;
    }
}

@media (min-width: 1280px) {
    .pvn-brand-wordmark {
        font-size: 1.78rem;
    }

    .pvn-brand-subtitle {
        margin-top: .5rem;
        font-size: .83rem;
        letter-spacing: .025em;
        white-space: nowrap;
    }
}

@media (min-width: 1536px) {
    .pvn-brand-wordmark {
        font-size: 2.32rem;
    }

    .pvn-brand-subtitle {
        margin-top: .625rem;
        font-size: 1.15rem;
        letter-spacing: .04em;
    }
}

.about-dots-pattern {
    background-image: radial-gradient(circle at 2px 2px, #129c4e 2px, transparent 0);
    background-size: 40px 40px;
}

.footer-icon-pattern {
    background-image: url('./images/footer-iconbg.png');
    background-size: 360px auto;
    background-position: center;
    background-repeat: repeat;
}

.search-hero-icon-pattern {
    background-image: url('./images/footer-iconbg.png');
    background-size: 420px auto;
    background-position: right bottom;
    background-repeat: repeat;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ticker-track {
    animation: ticker-scroll 35s linear infinite;
}

    .ticker-track:hover {
        animation-play-state: paused;
    }

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-30%);
    }
}

.ticker-message-inner {
    display: inline-block;
    vertical-align: top;
}

.ticker-compact-marquee {
    display: none;
}

@media (max-width: 1023px) {
    .ticker-desktop-rotator {
        display: none !important;
    }

    .ticker-compact-marquee {
        display: block;
        height: 24px;
        overflow: hidden;
        white-space: nowrap;
    }

    .ticker-compact-track {
        display: inline-flex;
        align-items: center;
        width: max-content;
        min-width: 100%;
        height: 24px;
        animation: ticker-compact-marquee 30s linear infinite;
        will-change: transform;
    }

    .ticker-compact-marquee:hover .ticker-compact-track {
        animation-play-state: paused;
    }

    .ticker-compact-link {
        display: inline-flex;
        align-items: center;
        color: #ffffff;
        font-size: 0.68rem;
        font-weight: 900;
        line-height: 24px;
        letter-spacing: -0.01em;
        text-decoration: none;
        text-shadow: 0 4px 12px rgba(0, 0, 0, .14);
    }

        .ticker-compact-link:hover {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

    .ticker-compact-separator {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        color: rgba(255, 255, 255, .62);
    }

        .ticker-compact-separator svg {
            width: 7px;
            height: 7px;
        }
}

@media (max-width: 430px) {
    .ticker-compact-link {
        font-size: 0.62rem;
    }

    .ticker-compact-separator {
        width: 18px;
    }
}

@keyframes ticker-compact-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .ticker-viewport {
        height: 24px;
    }

    .ticker-message {
        height: 24px;
        line-height: 24px;
    }

    .ticker-message-inner {
        max-width: none;
        white-space: nowrap;
    }

    .ticker-message.is-marquee {
        text-align: left;
    }

        .ticker-message.is-marquee .ticker-message-inner {
            min-width: 100%;
            padding-left: 100%;
            animation: ticker-message-marquee var(--ticker-message-marquee-duration, 12500ms) linear infinite;
            will-change: transform;
        }

        .ticker-message.is-marquee:hover .ticker-message-inner {
            animation-play-state: paused;
        }
}

@keyframes ticker-message-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.prose table {
    width: 100%;
    display: block;
    overflow-x: auto;
}

.news-detail-content {
    display: flow-root;
    width: 100%;
    max-width: none;
    min-width: 0;
    overflow-wrap: break-word;
}

    .news-detail-content::after {
        content: "";
        display: block;
        clear: both;
    }

    .news-detail-content p,
    .news-detail-content div,
    .news-detail-content section,
    .news-detail-content article,
    .news-detail-content figure,
    .news-detail-content figcaption,
    .news-detail-content blockquote,
    .news-detail-content ul,
    .news-detail-content ol {
        box-sizing: border-box;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .news-detail-content p,
    .news-detail-content div,
    .news-detail-content section,
    .news-detail-content article,
    .news-detail-content figure,
    .news-detail-content blockquote {
        width: auto !important;
    }

    .news-detail-content [style*="float"],
    .news-detail-content [align="left"],
    .news-detail-content [align="right"] {
        float: none !important;
    }

    .news-detail-content [style*="clear"] {
        clear: both !important;
    }

    .news-detail-content img,
    .news-detail-content video,
    .news-detail-content iframe,
    .news-detail-content object,
    .news-detail-content embed {
        box-sizing: border-box;
        max-width: 100% !important;
    }

    .news-detail-content img {
        display: block;
        float: none !important;
        height: auto !important;
        margin-left: auto;
        margin-right: auto;
    }

    .news-detail-content figure {
        display: block;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .news-detail-content .news-image-figure,
    .news-detail-content .image-container {
        margin-top: 0.75rem;
        margin-bottom: 0.15rem;
        text-align: center;
    }

        .news-detail-content .news-image-figure img,
        .news-detail-content .image-container img {
            margin-top: 0 !important;
            margin-bottom: 0 !important;
        }

    .news-detail-content .news-image-caption,
    .news-detail-content .image-caption {
        margin-top: 0.75rem;
        color: #64748b;
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.5rem;
        text-align: center;
    }

    .news-detail-content table {
        display: block;
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto;
        border-collapse: collapse;
    }

    .news-detail-content tbody,
    .news-detail-content thead,
    .news-detail-content tfoot {
        max-width: 100% !important;
    }

    .news-detail-content tr {
        max-width: 100% !important;
    }

    .news-detail-content td,
    .news-detail-content th {
        max-width: 100% !important;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .news-detail-content iframe,
    .news-detail-content video {
        display: block;
        width: 100% !important;
        aspect-ratio: 16 / 9;
    }

    .news-detail-content span[style*="width"],
    .news-detail-content font[style*="width"] {
        max-width: 100% !important;
    }

.news-detail-content-rich {
    font-size: 1.04rem;
    line-height: 2rem;
    color: #1e293b;
}

    .news-detail-content-rich a {
        color: #129c4e;
        font-weight: 600;
        text-underline-offset: 4px;
    }

        .news-detail-content-rich a:hover {
            text-decoration: underline;
        }

    .news-detail-content-rich p {
        margin: 1.25rem 0;
        line-height: 2rem;
    }

    .news-detail-content-rich h2 {
        margin: 2.5rem 0 1rem;
        color: #020617;
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    .news-detail-content-rich h3 {
        margin: 2rem 0 0.75rem;
        color: #020617;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.35;
    }

    .news-detail-content-rich blockquote {
        margin: 1.75rem 0;
        padding: 1rem 1.25rem;
        border-left: 4px solid #129c4e;
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
        background: #f8fafc;
        color: #334155;
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 2rem;
    }

    .news-detail-content-rich img {
        margin-top: 1.75rem;
        margin-bottom: 1.75rem;
        border-radius: 1rem;
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
        cursor: zoom-in;
    }

    .news-detail-content-rich.news-detail-content-no-slideshow img {
        cursor: default;
    }

    .news-detail-content-rich figcaption {
        margin-top: 0.75rem;
        color: #64748b;
        font-size: 0.875rem;
        text-align: center;
    }

    .news-detail-content-rich ul,
    .news-detail-content-rich ol {
        margin: 1.25rem 0;
        padding-left: 1.5rem;
    }

    .news-detail-content-rich ul {
        list-style: disc;
    }

    .news-detail-content-rich ol {
        list-style: decimal;
    }

        .news-detail-content-rich ul li,
        .news-detail-content-rich ol li {
            padding-left: 0.25rem;
        }

            .news-detail-content-rich ul li + li,
            .news-detail-content-rich ol li + li {
                margin-top: 0.5rem;
            }

    .news-detail-content-rich strong {
        color: #020617;
        font-weight: 700;
    }

    .news-detail-content-rich table {
        width: 100%;
        margin: 1.75rem 0;
        overflow: hidden;
        border-radius: 0.75rem;
        font-size: 0.875rem;
    }

    .news-detail-content-rich th,
    .news-detail-content-rich td {
        padding: 0.75rem;
        border: 1px solid #e2e8f0;
    }

    .news-detail-content-rich th {
        background: #f8fafc;
        text-align: left;
    }

.news-detail-content table,
.news-detail-content-rich table {
    border: 1px solid #cbd5e1 !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

.news-detail-content tr {
    border: 0 !important;
}

.news-detail-content th,
.news-detail-content td {
    border: 1px solid #cbd5e1 !important;
    border-color: #cbd5e1 !important;
    border-style: solid !important;
    padding: 0.75rem !important;
    vertical-align: top;
}

.news-detail-content th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
}

.news-detail-content td {
    background: transparent;
}

/* Các bài e-magazine legacy dùng table để dựng layout, không phải bảng dữ liệu. */
.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG > tbody > tr,
.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG > thead > tr,
.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG > tfoot > tr,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG > tbody > tr,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG > thead > tr,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG > tfoot > tr {
    border: 0 !important;
    background: transparent !important;
}

.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG > tbody > tr > td,
.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG > tbody > tr > th,
.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG > thead > tr > td,
.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG > thead > tr > th,
.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG > tfoot > tr > td,
.news-detail-content table.MASTERCMS_TPL_TABLE_FOR_EMAG > tfoot > tr > th,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG > tbody > tr > td,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG > tbody > tr > th,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG > thead > tr > td,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG > thead > tr > th,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG > tfoot > tr > td,
.news-detail-content-rich table.MASTERCMS_TPL_TABLE_FOR_EMAG > tfoot > tr > th {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.article-lightbox-thumbs {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

    .article-lightbox-thumbs::-webkit-scrollbar {
        height: 4px;
    }

    .article-lightbox-thumbs::-webkit-scrollbar-track {
        background: transparent;
    }

    .article-lightbox-thumbs::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.22);
        border-radius: 999px;
    }

        .article-lightbox-thumbs::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.34);
        }



/* ===== BRAND GUIDE RESET TRONG NEWS DETAIL ===== */
.news-detail-content .brand-guide,
.news-detail-content .brand-guide * {
    box-sizing: border-box;
}

.news-detail-content .brand-guide {
    margin: 0 !important;
    border: 1px solid #d9dde3 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    color: #2F4C8E !important;
}

.news-detail-content .brand-guide-top-line {
    height: 4px !important;
    background: #00A651 !important;
}

.news-detail-content .brand-guide-header {
    padding: 28px 24px 20px !important;
    text-align: center !important;
}

    .news-detail-content .brand-guide-header figure,
    .news-detail-content .brand-guide-header .image-container {
        margin: 0 auto 14px !important;
        padding: 0 !important;
        max-width: 170px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .news-detail-content .brand-guide-header img,
    .news-detail-content .brand-guide-logo {
        display: block !important;
        width: 100% !important;
        max-width: 170px !important;
        height: auto !important;
        margin: 0 auto !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        cursor: default !important;
    }

    .news-detail-content .brand-guide-header figcaption,
    .news-detail-content .brand-guide-header .image-caption,
    .news-detail-content .brand-guide-header .news-image-caption {
        display: none !important;
    }

.news-detail-content .brand-guide-title {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 23px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    color: #2F4C8E !important;
    text-align: center !important;
}

    .news-detail-content .brand-guide-title a {
        color: #2F4C8E !important;
        text-decoration: none !important;
        font-weight: 800 !important;
    }

        .news-detail-content .brand-guide-title a:hover {
            color: #00A651 !important;
            text-decoration: none !important;
        }

.news-detail-content .brand-guide-section {
    margin: 0 !important;
    padding: 0 24px 26px !important;
}

.news-detail-content .brand-guide-section-title {
    margin: 0 0 12px !important;
    padding: 0 0 0 12px !important;
    position: relative !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #2F4C8E !important;
}

    .news-detail-content .brand-guide-section-title::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        top: 3px !important;
        width: 4px !important;
        height: 18px !important;
        background: #ef4444 !important;
    }

.news-detail-content .brand-guide-list,
.news-detail-content .brand-guide-sublist {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

    .news-detail-content .brand-guide-list > li,
    .news-detail-content .brand-guide-sublist > li {
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
        list-style: none !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
        font-weight: 700 !important;
        color: #2F4C8E !important;
    }

        .news-detail-content .brand-guide-list > li::before,
        .news-detail-content .brand-guide-sublist > li::before {
            content: none !important;
        }

.news-detail-content .brand-guide-sublist {
    margin-top: 6px !important;
    padding-left: 20px !important;
}

    .news-detail-content .brand-guide-list a,
    .news-detail-content .brand-guide-sublist a {
        color: #2F4C8E !important;
        text-decoration: none !important;
        font-weight: 700 !important;
    }

        .news-detail-content .brand-guide-list a:hover,
        .news-detail-content .brand-guide-sublist a:hover {
            color: #00A651 !important;
            text-decoration: none !important;
        }

.news-detail-content .brand-guide-docs {
    margin: 0 !important;
    padding: 0 !important;
}

    .news-detail-content .brand-guide-docs a {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
        color: #2F4C8E !important;
        text-decoration: none !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
        font-weight: 700 !important;
    }

        .news-detail-content .brand-guide-docs a::before {
            content: "" !important;
            width: 14px !important;
            min-width: 14px !important;
            height: 14px !important;
            margin-top: 5px !important;
            border: 1px solid #64748b !important;
            background: #fff !important;
        }

        .news-detail-content .brand-guide-docs a:hover {
            color: #00A651 !important;
            text-decoration: none !important;
        }

/* chặn prose/article styles từ wrapper ngoài */
.news-detail-content .brand-guide p {
    margin: 0 !important;
}

.news-detail-content .brand-guide ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.news-detail-content .brand-guide img {
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .news-detail-content .brand-guide-header {
        padding: 22px 14px 16px !important;
    }

        .news-detail-content .brand-guide-header figure,
        .news-detail-content .brand-guide-header .image-container,
        .news-detail-content .brand-guide-header img,
        .news-detail-content .brand-guide-logo {
            max-width: 120px !important;
        }

    .news-detail-content .brand-guide-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    .news-detail-content .brand-guide-section {
        padding: 0 14px 20px !important;
    }

    .news-detail-content .brand-guide-section-title {
        font-size: 16px !important;
    }

    .news-detail-content .brand-guide-list > li,
    .news-detail-content .brand-guide-sublist > li,
    .news-detail-content .brand-guide-docs a {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .news-detail-content .brand-guide-sublist {
        padding-left: 14px !important;
    }
}

.history-nav-link.is-active {
    border-color: #129c4e;
    background: #129c4e;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(18, 156, 78, 0.2);
}

    .history-nav-link.is-active span:first-child {
        background: rgba(255, 255, 255, 0.92);
    }

.history-filter-bar {
    scrollbar-width: none;
}

    .history-filter-bar::-webkit-scrollbar {
        display: none;
    }

.history-filter-btn {
    background: #f3f4f6;
    color: #374151;
    transition: all 0.25s ease;
}

    .history-filter-btn:hover {
        background: #e5e7eb;
    }

    .history-filter-btn.is-active {
        background: linear-gradient(90deg, #2F4C8E 0%, #129c4e 100%);
        color: #ffffff;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
        transform: scale(1.03);
    }

.history-timeline-line {
    background: linear-gradient(to bottom, #2F4C8E 0%, #129c4e 33%, #d4a84b 66%, #00A651 100%);
}

body.history-modal-open {
    overflow: hidden;
}

.history-detail-modal .history-detail-modal-panel {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
}

.history-detail-modal.is-open .history-detail-modal-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Thu vien anh & video landing page. */
.library-hub {
    position: relative;
    overflow: hidden;
    padding: 32px 0 54px;
    background: url("./images/library-hub-bg.png") bottom / cover no-repeat, radial-gradient(circle at 77% 22%, rgba(54, 200, 201, .24), transparent 33%), radial-gradient(circle at 7% 90%, rgba(21, 170, 147, .15), transparent 28%), linear-gradient(110deg, #fff 8%, #f5fbfc 48%, #d6f5f3 100%);
}

.library-hub-shell {
    position: relative;
    z-index: 1;
    max-width: 1352px;
    margin: 0 auto;
    padding: 0 30px;
}

.library-hub-heading {
    max-width: 670px;
    margin-bottom: 33px;
}

.library-hub-eyebrow {
    display: block;
    width: 28px;
    height: 3px;
    margin-bottom: 18px;
    background: #15974f;
}

.library-hub-heading h1 {
    margin: 0;
    color: #12529b;
    font-size: 49px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .01em;
    text-transform: uppercase;
}

    .library-hub-heading h1 span {
        background: linear-gradient(90deg, #157ba4 0%, #06984f 95%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.library-hub-heading p {
    margin: 17px 0 0;
    color: #59616b;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
}

.library-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.library-hub-card {
    position: relative;
    display: flex;
    min-height: 253px;
    overflow: hidden;
    align-items: flex-start;
    gap: 20px;
    padding: 33px 30px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 13px 21px rgba(18, 58, 89, .18);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .library-hub-card:hover {
        color: #fff;
        box-shadow: 0 20px 32px rgba(18, 58, 89, .24);
        transform: translateY(-4px);
    }

.library-hub-card-video {
    background: linear-gradient(90deg, rgba(3, 79, 162, .98) 0%, rgba(0, 129, 190, .86) 48%, rgba(0, 103, 172, .24) 100%), url("./images/bg_video_img.png") right center / cover no-repeat, linear-gradient(105deg, #07509f, #008bc8);
}

.library-hub-card-photo {
    background: linear-gradient(90deg, rgba(0, 112, 61, .98) 0%, rgba(0, 159, 76, .84) 50%, rgba(0, 130, 62, .22) 100%), url("./images/bg_video_img.png") right center / cover no-repeat, linear-gradient(105deg, #00633d, #00a259);
}

.library-hub-icon {
    display: inline-flex;
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 9px 17px rgba(0, 35, 83, .2);
}

.library-hub-card-video .library-hub-icon {
    background: linear-gradient(140deg, #2c9adb, #0063b3);
}

.library-hub-card-photo .library-hub-icon {
    background: linear-gradient(140deg, #80c651, #00984b);
}

.library-hub-icon svg {
    width: 41px;
    height: 41px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.library-hub-card-body {
    display: flex;
    flex-direction: column;
}

    .library-hub-card-body strong {
        display: block;
        margin-top: 8px;
        font-size: 29px;
        font-weight: 800;
        line-height: 1.15;
        text-transform: uppercase;
    }

    .library-hub-card-body > span {
        margin-top: 14px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.9;
    }

    .library-hub-card-body em {
        display: inline-flex;
        width: fit-content;
        min-width: 195px;
        height: 48px;
        margin-top: 20px;
        align-items: center;
        justify-content: center;
        gap: 35px;
        border-radius: 999px;
        background: #fff;
        color: #10519a;
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
    }

.library-hub-card-photo .library-hub-card-body em {
    color: #087b43;
}

.library-hub-card-body em svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 980px) {
    .library-hub-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .library-hub {
        padding: 38px 0 42px;
    }

    .library-hub-shell {
        padding: 0 16px;
    }

    .library-hub-heading h1 {
        font-size: 36px;
    }

    .library-hub-heading p {
        font-size: 15px;
    }

    .library-hub-break {
        display: none;
    }

    .library-hub-card {
        min-height: 290px;
        padding: 26px 21px;
    }

    .library-hub-icon {
        width: 65px;
        height: 65px;
    }

        .library-hub-icon svg {
            width: 32px;
            height: 32px;
        }

    .library-hub-card-body strong {
        font-size: 23px;
    }
}

.library-hub-page {
    background: #fff;
}

.library-hub-hero {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.library-hub-hero-background,
.library-hub-hero-overlay,
.library-hub-hero-dots {
    position: absolute;
    inset: 0;
}

.library-hub-hero-background {
    background: url("./images/hero-slide-2.jpg") center center / cover no-repeat;
}

.library-hub-hero-overlay {
    background: linear-gradient(90deg, rgba(20, 48, 99, .94) 0%, rgba(18, 156, 78, .78) 52%, rgba(15, 86, 150, .82) 100%);
}

.library-hub-hero-dots {
    opacity: .08;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 42px 42px;
}

.library-hub-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 24px 65px;
    color: #fff;
    text-align: center;
}

.library-hub-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 600;
}

    .library-hub-breadcrumb a {
        transition: color .2s ease;
    }

        .library-hub-breadcrumb a:hover {
            color: #fff;
        }

    .library-hub-breadcrumb svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke: rgba(255, 255, 255, .45);
        stroke-width: 2.3;
    }

    .library-hub-breadcrumb span {
        color: #fff;
    }

.library-hub-hero-content h1 {
    margin: 33px 0 0;
    color: #fff;
    font-size: 65px;
    font-weight: 800;
    line-height: 1.04;
}

.library-hub-hero-content p {
    max-width: 780px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, .94);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.65;
}

@media (max-width: 640px) {
    .library-hub-hero {
        min-height: 286px;
    }

    .library-hub-hero-content {
        padding: 36px 18px 46px;
    }

        .library-hub-hero-content h1 {
            margin-top: 28px;
            font-size: 39px;
        }

        .library-hub-hero-content p {
            font-size: 15px;
        }
}
/* content bài viết*/
.pvn-party-content {
    font-family: "Barlow", sans-serif;
    color: #344054;
    background: #fff;
    border-radius: 28px;
    padding: 42px 48px 42px 56px;
    position: relative;
    overflow: hidden;
}

.pvn-party-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg,#1E61B7,#129C4E);
}

.pvn-party-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #129C4E;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 14px;
}

.pvn-party-label:before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 99px;
    background: #129C4E;
}

.pvn-party-title {
    margin: 0 0 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid #E5EDF6;
    color: #1E3A5F;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.18;
    font-weight: 900;
    text-transform: uppercase;
}

.pvn-party-content p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.85;
    text-align: justify;
}

    .pvn-party-content p.first-paragraph:first-letter {
        float: left;
        font-size: 64px;
        line-height: .9;
        padding: 8px 10px 0 0;
        color: #1E61B7;
        font-weight: 900;
    }

.pvn-party-highlight {
    margin: 30px 0;
    padding: 28px 32px;
    border-radius: 22px;
    background: linear-gradient(135deg,#1E61B7,#2B398B 62%,#129C4E);
    color: #fff;
    font-size: 21px;
    line-height: 1.55;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(43,57,139,.18);
}

@media(max-width:768px) {
    .pvn-party-content {
        border-radius: 22px;
        padding: 30px 22px 30px 30px;
    }

        .pvn-party-content p {
            font-size: 16px;
            text-align: left;
        }

    .pvn-party-highlight {
        padding: 22px;
        font-size: 18px;
    }
}

.pvn-party-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.pvn-party-col {
    min-width: 0;
}

    .pvn-party-col p {
        margin: 0 0 20px;
        font-size: 17px;
        line-height: 1.85;
        color: #344054;
        text-align: justify;
    }

    .pvn-party-col .pvn-party-highlight {
        margin: 28px 0;
    }

@media(max-width:900px) {
    .pvn-party-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pvn-party-col p {
        text-align: left;
    }
}

.news-detail-content .tochucchinhtri {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
}

    .news-detail-content .tochucchinhtri::before,
    .news-detail-content .tochucchinhtri::after {
        display: none;
    }

    .news-detail-content .tochucchinhtri > [class*="col-"] {
        position: relative;
        display: flex;
        min-width: 0;
        height: 100%;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        border-radius: 22px;
        background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

        .news-detail-content .tochucchinhtri > [class*="col-"]::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 4px;
            background: linear-gradient(90deg, #1E61B7 0%, #129C4E 100%);
            opacity: 0;
            transition: opacity .25s ease;
        }

        .news-detail-content .tochucchinhtri > [class*="col-"]:hover {
            border-color: rgba(18, 156, 78, 0.35);
            box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
            transform: translateY(-4px);
        }

            .news-detail-content .tochucchinhtri > [class*="col-"]:hover::before {
                opacity: 1;
            }

    .news-detail-content .tochucchinhtri .img_css {
        aspect-ratio: 16 / 10;
        margin: 0;
        overflow: hidden;
        background: #e2e8f0;
    }

        .news-detail-content .tochucchinhtri .img_css a {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

            .news-detail-content .tochucchinhtri .img_css a::after {
                content: "";
                position: absolute;
                right: 14px;
                bottom: 14px;
                width: 42px;
                height: 42px;
                border-radius: 999px;
                background:
                    #129c4e
                    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 11V6a2 2 0 0 0-4 0v5'/%3E%3Cpath d='M14 10V4a2 2 0 0 0-4 0v8'/%3E%3Cpath d='M10 12V8a2 2 0 0 0-4 0v8'/%3E%3Cpath d='M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2a8 8 0 0 1-8-8v-2'/%3E%3C/svg%3E")
                    center / 22px 22px no-repeat;
                opacity: 0;
                box-shadow: 0 12px 26px rgba(15, 23, 42, 0.24);
                transform: translateY(8px) scale(0.92);
                transition: opacity .22s ease, transform .22s ease;
            }

            .news-detail-content .tochucchinhtri .img_css a:hover::after,
            .news-detail-content .tochucchinhtri .img_css a:focus-visible::after {
                opacity: 1;
                transform: translateY(0) scale(1);
            }

        .news-detail-content .tochucchinhtri .img_css img {
            width: 100% !important;
            height: 100% !important;
            margin: 0 !important;
            border-radius: 0;
            object-fit: cover;
            box-shadow: none;
            cursor: pointer;
            transition: transform .45s ease;
        }

    .news-detail-content .tochucchinhtri > [class*="col-"]:hover .img_css img {
        transform: scale(1.045);
    }

    .news-detail-content .tochucchinhtri h3 {
        margin: 0;
        padding: 22px 22px 0;
        color: #1E3A5F;
        font-family: "Barlow", sans-serif;
        font-size: 21px;
        font-weight: 900;
        line-height: 1.24;
        text-transform: uppercase;
    }

    .news-detail-content .tochucchinhtri .title-news_css2 {
        margin: 0;
        padding: 14px 22px 24px;
        color: #475467;
        font-size: 15.5px;
        font-weight: 500;
        line-height: 1.75;
        text-align: left;
    }

    .news-detail-content .tochucchinhtri h3 + .title-news_css2 {
        flex: 1;
    }

@media (max-width: 1100px) {
    .news-detail-content .tochucchinhtri {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .news-detail-content .tochucchinhtri {
        grid-template-columns: 1fr;
        gap: 18px;
    }

        .news-detail-content .tochucchinhtri h3 {
            padding: 18px 18px 0;
            font-size: 19px;
        }

        .news-detail-content .tochucchinhtri .title-news_css2 {
            padding: 12px 18px 20px;
            font-size: 15px;
        }
}

.member-units-shell {
    font-family: "Barlow", sans-serif;
}

.member-units-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.member-units-tab {
    display: flex;
    min-height: 92px;
    align-items: center;
    gap: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    padding: 22px 26px;
    color: #1e3a5f;
    text-align: left;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
    transition: background-color .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

    .member-units-tab:hover {
        color: #1e3a5f;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
    }

    .member-units-tab--active {
        border-color: #16a158;
        background: #16a158;
        color: #fff;
        box-shadow: 0 18px 36px rgba(18, 156, 78, 0.22);
    }

        .member-units-tab--active:hover {
            color: #fff;
        }

.member-units-tab__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f1f5f9;
    color: #1e4f93;
}

    .member-units-tab--active .member-units-tab__icon {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
    }

    .member-units-tab__icon svg {
        width: 25px;
        height: 25px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.member-units-tab strong,
.member-units-tab em {
    display: block;
}

.member-units-tab strong {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.member-units-tab em {
    margin-top: 6px;
    color: #64748b;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

    .member-units-tab--active em {
        color: rgba(255, 255, 255, 0.88);
    }

.member-units-panel {
    display: none;
}

    .member-units-panel.is-active {
        display: block;
    }

.member-units-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
}

.member-unit-card {
    position: relative;
    display: flex;
    min-height: 90px;
    align-items: center;
    gap: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    padding: 16px 56px 16px 24px;
    box-shadow: 0 4px 13px rgba(15, 23, 42, 0.07);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

a.member-unit-card:hover {
    border-color: rgba(18, 156, 78, 0.32);
    color: inherit;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.11);
    transform: translateY(-2px);
}

.member-unit-card__accent {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: #16a158;
}

.member-unit-card__logo {
    display: inline-flex;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(15, 23, 42, 0.12);
}

    .member-unit-card__logo img {
        width: 42px;
        height: auto;
    }

.member-unit-card__logo--text {
    padding: 5px;
    border-color: rgba(17, 150, 61, 0.24);
    background: linear-gradient(135deg, rgba(17, 150, 61, 0.10), rgba(4, 119, 200, 0.10));
    color: #0d7f3c;
    text-align: center;
}

    .member-unit-card__logo--text span {
        display: -webkit-box;
        max-width: 100%;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: clamp(0.68rem, 1.2vw, 0.8rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1;
        overflow-wrap: anywhere;
        text-transform: uppercase;
    }

.member-unit-card__body {
    display: block;
    min-width: 0;
}

    .member-unit-card__body strong {
        display: block;
        color: #009344;
        font-size: 16px;
        font-weight: 900;
        line-height: 1.2;
    }

    .member-unit-card__body span {
        display: block;
        margin-top: 7px;
        color: #1e3a5f;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.35;
    }

.member-unit-card__open {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #cbd5e1;
}

    .member-unit-card__open svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

a.member-unit-card:hover .member-unit-card__open {
    color: #16a158;
}

@media (max-width: 1100px) {
    .member-units-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .member-units-tabs,
    .member-units-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .member-units-tab,
    .member-unit-card {
        border-radius: 14px;
    }

    .member-units-tab {
        min-height: 82px;
        padding: 18px;
    }

    .member-unit-card {
        padding: 14px 48px 14px 18px;
    }

    .member-unit-card__logo {
        width: 52px;
        height: 52px;
    }
}

.page-hero-stat-card {
    min-height: 72px;
    background:
        radial-gradient(circle at 22% 16%, rgba(255,255,255,0.30), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.10) 46%, rgba(4,18,40,0.40)),
        linear-gradient(180deg, rgba(7,31,64,0.46), rgba(5,18,38,0.30));
    border: 1px solid rgba(255,255,255,0.52);
    box-shadow:
        0 16px 34px rgba(3,20,42,0.20),
        inset 0 1px 0 rgba(255,255,255,0.36),
        inset 0 -1px 0 rgba(255,255,255,0.08);
    color: #fff;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.page-hero-stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 10%, rgba(255,255,255,0.34), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(212,168,75,0.30), transparent 34%),
        linear-gradient(90deg, rgba(212,168,75,0.78), rgba(0,166,81,0.68));
    opacity: .26;
    z-index: -1;
}

.page-hero-stat-card::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f4c96d 0%, #00a651 58%, rgba(255,255,255,0) 100%);
    opacity: .95;
}

.page-hero-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.62);
    box-shadow:
        0 18px 38px rgba(3,20,42,0.24),
        inset 0 1px 0 rgba(255,255,255,0.34);
}

.page-hero-stat-value {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 0.22rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-shadow:
        0 3px 16px rgba(0,0,0,0.42),
        0 0 18px rgba(255,255,255,0.14);
}

.page-hero-stat-value::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.18rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f4c96d, rgba(0,166,81,0.86), transparent);
    opacity: 0.72;
    pointer-events: none;
}

.page-hero-stat-label {
    color: rgba(255,255,255,0.86);
    letter-spacing: 0.01em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.24);
}

.page-hero-stat-icon {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.26), rgba(255,255,255,0.09)),
        rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.52);
    box-shadow:
        0 12px 26px rgba(0,0,0,0.16),
        inset 0 1px 0 rgba(255,255,255,0.38),
        inset 0 -10px 18px rgba(0,0,0,0.08);
    color: #f4c96d;
}

.page-hero-stat-unit {
    display: inline-flex;
    align-items: center;
    color: #f4c96d;
    font-size: .48em;
    font-weight: 900;
    letter-spacing: 0.03em;
    padding: 0;
    text-transform: uppercase;
    text-shadow:
        0 2px 10px rgba(0,0,0,0.28),
        0 0 12px rgba(244,201,109,0.22);
    transform: translateY(-0.08em);
}

.publication-child-modal {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 220ms ease;
}

.publication-child-modal:target,
.publication-child-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.publication-child-dialog {
    max-height: min(90vh, 760px);
    display: flex;
    flex-direction: column;
    transform: translateY(18px) scale(0.98);
    transition: transform 240ms ease;
}

.publication-child-modal:target .publication-child-dialog,
.publication-child-modal.is-open .publication-child-dialog {
    transform: translateY(0) scale(1);
}

.publication-child-option-cover {
    aspect-ratio: 4 / 5;
}

.publication-cover-card,
.publication-child-option-cover {
    background: #fff;
}

.publication-cover-image,
.publication-child-option-cover img {
    object-fit: contain;
    object-position: center;
    transition: transform 500ms ease;
}

.publication-child-option:hover .publication-child-option-cover img {
    transform: scale(1.035);
}

.publication-child-list {
    overflow-y: auto;
    overscroll-behavior: contain;
}

.home-key-figures-section {
    position: relative;
    overflow: hidden;
    padding: 18px 0 22px;
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 166, 81, .09), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(47, 76, 142, .08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    border-bottom: 1px solid rgba(0, 166, 81, .10);
}

.home-key-figures-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(0, 166, 81, .055) 1px, transparent 1px);
    background-size: calc(100% / 7) 100%;
    opacity: .75;
    pointer-events: none;
}

.home-key-figures-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 16px;
}

.home-key-figures-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 12px;
}

.home-key-figures-heading span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #123b72;
    font-size: clamp(1.2rem, 1.75vw, 1.7rem);
    font-weight: 950;
    line-height: 1.1;
}

.home-key-figures-heading span::before {
    content: "";
    width: 5px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(180deg, #079646, #0b4ab4);
    box-shadow: 0 8px 18px rgba(7, 150, 70, .18);
}

.home-key-figures-heading p {
    max-width: none;
    margin: 0;
    color: #526172;
    font-size: clamp(.72rem, .78vw, .86rem);
    font-weight: 600;
    line-height: 1.45;
    text-align: right;
    white-space: nowrap;
}

.home-key-figures {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: stretch;
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
}

.home-key-figure {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    min-height: 118px;
    padding: 16px 12px 15px;
    color: #123b72;
    opacity: 0;
    transform: translateY(12px);
    animation: homeKeyFigureIn .62s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(var(--figure-index) * 70ms);
}

.home-key-figure + .home-key-figure::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 166, 81, .23), transparent);
}

.home-key-figure-icon {
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 166, 81, .10), rgba(47, 76, 142, .08));
    color: #079646;
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.home-key-figure-icon svg,
.home-key-figure-icon img {
    width: 31px;
    height: 31px;
}

.home-key-figure-icon img {
    display: block;
    object-fit: contain;
    transition: filter .28s ease;
}

.home-key-figure-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    min-width: 0;
    color: #0b4ab4;
    font-size: clamp(1.22rem, 1.65vw, 1.72rem);
    font-weight: 950;
    line-height: .95;
    letter-spacing: 0;
    white-space: nowrap;
}

.home-key-figure-prefix,
.home-key-figure-suffix {
    color: #079646;
    font-size: .44em;
    font-weight: 950;
    line-height: 1.05;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-key-figure-suffix {
    max-width: none;
}

.home-key-figure-label {
    align-self: start;
    margin-top: 8px;
    color: #25364a;
    font-size: clamp(.7rem, .78vw, .82rem);
    font-weight: 700;
    line-height: 1.28;
}

.home-key-figure:hover .home-key-figure-icon {
    transform: translateY(-3px) scale(1.04);
    background: linear-gradient(135deg, #079646, #0b4ab4);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(7, 150, 70, .20);
}

.home-key-figure:hover .home-key-figure-icon img {
    filter: brightness(0) invert(1);
}

.home-english-intro-section {
    padding: 18px 0 10px;
}

.home-english-intro-grid {
    gap: 24px;
}

.home-english-intro-media,
.home-english-intro-copy {
    border-radius: 20px;
}

.home-english-intro-media > .relative {
    min-height: clamp(330px, 30vw, 410px);
}

.home-english-intro-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-english-intro-copy > p {
    margin-top: 16px;
    font-size: clamp(.94rem, .94vw, 1rem);
    line-height: 1.7;
}

.home-key-figures-section-english {
    padding: 10px 0 34px;
    background: #f7fbff;
    border-bottom: 0;
}

.home-key-figures-section-english::before {
    display: none;
}

.home-key-figures-section-english .home-key-figures-container {
    max-width: 1488px;
    padding: 0 16px;
}

.home-key-figures-section-english .home-key-figures-heading {
    display: none;
}

.home-key-figures-section-english .home-key-figures {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
}

.home-key-figures-section-english .home-key-figure {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    row-gap: 7px;
    min-height: 176px;
    padding: 20px 10px 18px;
    text-align: center;
}

.home-key-figures-section-english .home-key-figure + .home-key-figure::before {
    top: 28px;
    bottom: 28px;
    background: linear-gradient(180deg, transparent, rgba(148, 163, 184, .26), transparent);
}

.home-key-figures-section-english .home-key-figure-icon {
    grid-row: auto;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(7, 150, 70, .1);
    color: #079646;
}

.home-key-figures-section-english .home-key-figure-icon svg,
.home-key-figures-section-english .home-key-figure-icon img {
    width: 30px;
    height: 30px;
}

.home-key-figures-section-english .home-key-figure-value {
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px 5px;
    color: #0b4ab4;
    font-size: clamp(1.05rem, 1.38vw, 1.55rem);
    line-height: 1;
    white-space: normal;
}

.home-key-figures-section-english .home-key-figure-prefix,
.home-key-figures-section-english .home-key-figure-suffix {
    flex-basis: 100%;
    color: #079646;
    font-size: .48em;
    line-height: 1.05;
}

.home-key-figures-section-english .home-key-figure-value-inline-prefix .home-key-figure-prefix {
    flex-basis: auto;
    align-self: baseline;
    margin-right: 1px;
    font-size: .58em;
    line-height: 1;
}

.home-key-figures-section-english .home-key-figure-value-rank-prefix .home-key-figure-prefix {
    flex-basis: auto;
    align-self: baseline;
    margin-right: 1px;
    font-size: .58em;
    line-height: 1;
}

.home-key-figures-section-english .home-key-figure-value-inline-prefix .home-key-figure-suffix {
    flex-basis: 100%;
}

.home-key-figures-section-english .home-key-figure-label {
    margin-top: 0;
    color: #23364f;
    font-size: clamp(.58rem, .62vw, .72rem);
    font-weight: 800;
    line-height: 1.24;
}

@keyframes homeKeyFigureIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-outline-title {
    color: #ffffff;
    -webkit-text-stroke: 1.45px #24479A;
    text-shadow: 1px 0 #129c4e, 0 1px #129c4e;
}

.core-value-outline-title {
    color: #ffffff;
    -webkit-text-stroke: 1.25px #24479A;
    text-shadow:
        1px 0 #129c4e,
        0 1px #129c4e;
}

.news-featured-frame {
    min-height: 620px;
}

.news-featured-frame .news-featured-slide:not(.hidden),
.news-featured-frame .news-featured-slide:not(.hidden) > div {
    min-height: 620px;
}

.news-featured-summary {
    max-height: 180px;
    padding-bottom: 1px;
}

@media (min-width: 1024px) {
    .news-featured-frame {
        height: 420px;
        min-height: 420px;
    }

    .news-featured-frame .news-featured-slide:not(.hidden),
    .news-featured-frame .news-featured-slide:not(.hidden) > div {
        height: 100%;
        min-height: 420px;
    }

    .news-featured-summary {
        max-height: none;
    }
}

@keyframes newsSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strategic-pillars-section {
    --strategic-pillars-green: #079646;
    --strategic-pillars-muted: #6e7782;
    position: relative;
    overflow: hidden;
    padding: 54px 0 68px;
    background:
        radial-gradient(circle at 92% 8%, rgba(212, 168, 75, .16), transparent 28%),
        radial-gradient(circle at 8% 14%, rgba(18, 156, 78, .11), transparent 32%),
        linear-gradient(180deg, #f6faf8 0%, #eef6f2 100%);
}

.strategic-pillars-section::before {
    position: absolute;
    inset: 0;
    content: "";
    background: url("./images/footer-iconbg.png") center / 760px auto repeat-x;
    opacity: .055;
    pointer-events: none;
}

.strategic-pillars-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 16px;
}

.strategic-pillars-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.strategic-pillars-title {
    margin-bottom: 0;
    text-align: left;
}

.strategic-pillars-title h2 {
    margin: 0 0 8px;
    color: #0f2437;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.strategic-pillars-title h2 span {
    color: var(--strategic-pillars-green);
}

.strategic-pillars-title p {
    max-width: 1000px;
    margin: 0;
    color: #475569;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.6;
}

.strategic-pillars-overview {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    border: 1px solid rgba(18, 156, 78, .24);
    border-radius: 999px;
    background: #fff;
    padding: 0 18px 0 20px;
    color: #129c4e;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
    transition: transform .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.strategic-pillars-overview span {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #129c4e;
    color: #fff;
}

.strategic-pillars-overview:hover {
    border-color: rgba(18, 156, 78, .42);
    color: #0d7f40;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
}

.strategic-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.strategic-pillars-card {
    position: relative;
    display: block;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 18px;
    color: #fff;
    isolation: isolate;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .13);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.strategic-pillars-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08) brightness(.94);
    transition: transform .55s ease;
    z-index: -2;
}

.strategic-pillars-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 18, 38, .10) 0%, rgba(5, 18, 38, .16) 38%, rgba(5, 18, 38, .58) 72%, rgba(3, 12, 26, .92) 100%),
        linear-gradient(180deg, transparent 48%, var(--pillar-accent) 100%);
    opacity: .94;
    transition: opacity .3s ease, background .3s ease;
    z-index: -1;
}

.strategic-pillars-number {
    position: absolute;
    top: 14px;
    right: 20px;
    display: inline-flex;
    width: 132px;
    height: 96px;
    align-items: center;
    justify-content: flex-end;
    color: rgba(255, 255, 255, .18);
    font-size: clamp(68px, 8vw, 112px);
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.02em;
    pointer-events: none;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    z-index: 0;
}

.strategic-pillars-content {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: block;
    transform: translateY(0);
    transition: transform .3s ease;
}

.strategic-pillars-eyebrow {
    display: inline-flex;
    margin-bottom: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    padding: 7px 12px;
    color: #ffe08a;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .28s ease, transform .28s ease;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .42);
}

.strategic-pillars-content strong {
    display: block;
    max-width: 620px;
    color: #fff;
    font-size: 31px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .78), 0 10px 24px rgba(0, 0, 0, .58);
}

.strategic-pillars-role {
    display: block;
    margin-top: 4px;
    color: #ffe08a;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .7), 0 8px 18px rgba(0, 0, 0, .42);
}

.strategic-pillars-content > span:last-child {
    display: block;
    max-width: 560px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .96);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .72), 0 8px 18px rgba(0, 0, 0, .36);
    transition: max-height .3s ease, margin-top .3s ease, opacity .28s ease, transform .28s ease;
}

.strategic-pillars-card-service .strategic-pillars-content strong {
    max-width: none;
    font-size: 27px;
    white-space: normal;
}

.strategic-pillars-section-en .strategic-pillars-content strong {
    max-width: none;
    font-size: clamp(24px, 2.05vw, 31px);
    line-height: 1.08;
    white-space: nowrap;
}

.strategic-pillars-section-en .strategic-pillars-card-service .strategic-pillars-content strong {
    font-size: clamp(16px, 1.22vw, 20px);
    letter-spacing: 0;
    white-space: nowrap;
}

.strategic-pillars-card:hover {
    border-color: rgba(255, 255, 255, .86);
    color: #fff;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(15, 23, 42, .2);
}

.strategic-pillars-card:hover img {
    filter: saturate(1.12) contrast(1.1) brightness(.9);
    transform: scale(1.045);
}

.strategic-pillars-card:hover .strategic-pillars-shade {
    background:
        linear-gradient(180deg, rgba(5, 18, 38, .16) 0%, rgba(5, 18, 38, .32) 34%, rgba(3, 12, 26, .95) 100%),
        linear-gradient(135deg, var(--pillar-accent), transparent 58%);
    opacity: 1;
}

.strategic-pillars-card:hover .strategic-pillars-eyebrow,
.strategic-pillars-card:hover .strategic-pillars-content > span:last-child {
    max-height: 110px;
    margin-top: 12px;
    opacity: 1;
    transform: translateY(0);
}

.strategic-pillars-card:hover .strategic-pillars-content {
    transform: translateY(-6px);
}

.strategic-pillars-card:hover .strategic-pillars-content > span:last-child {
    opacity: 1;
    transform: translateY(0);
}

.strategic-pillars-card-energy {
    --pillar-accent: rgba(47, 76, 142, .76);
}

.strategic-pillars-card-industry {
    --pillar-accent: rgba(0, 166, 81, .72);
}

.strategic-pillars-card-service {
    --pillar-accent: rgba(13, 45, 94, .78);
}

@media (max-width: 1100px) {
    .strategic-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategic-pillars-card-service {
        grid-column: 1 / -1;
        min-height: 360px;
    }
}

@media (max-width: 720px) {
    .strategic-pillars-container {
        padding: 0 16px;
    }

    .strategic-pillars-grid {
        grid-template-columns: 1fr;
    }

    .strategic-pillars-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .strategic-pillars-overview {
        width: 100%;
    }

    .strategic-pillars-card,
    .strategic-pillars-card-service {
        grid-column: auto;
        min-height: 330px;
    }

    .strategic-pillars-content strong {
        font-size: 25px;
    }

    .strategic-pillars-card-service .strategic-pillars-content strong {
        font-size: 24px;
        white-space: normal;
    }

    .strategic-pillars-section-en .strategic-pillars-content strong,
    .strategic-pillars-section-en .strategic-pillars-card-service .strategic-pillars-content strong {
        font-size: clamp(18px, 5vw, 25px);
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .strategic-pillars-card,
    .strategic-pillars-card img {
        transition: none;
    }

    .strategic-pillars-card:hover,
    .strategic-pillars-card:hover img {
        transform: none;
    }
}
.home-publication-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0 62px;
    background:
        radial-gradient(circle at 91% 14%, rgba(214, 177, 94, .12), transparent 29%),
        linear-gradient(180deg, #fffdf8 0%, #f8f4ea 100%);
}

.home-publication-section::before {
    position: absolute;
    inset: auto -6% -55px -6%;
    height: 145px;
    content: "";
    background: url("./images/bg_vansong.png") center bottom / cover no-repeat;
    opacity: .16;
    pointer-events: none;
}

.home-publication-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 16px;
}

.home-publications {
    margin-top: 0;
}

.home-publications h2 {
    margin: 0 0 18px;
    color: #183248;
    font-size: 23px;
    font-weight: 700;
}

.home-publications h2 span {
    color: #079646;
}

.home-publication-books {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 24px;
}

.home-publication-book {
    display: flex;
    height: 332px;
    align-items: center;
    justify-content: center;
    overflow: visible;
    text-decoration: none;
    transition: transform .35s ease;
}

.home-publication-book:hover {
    transform: translateY(-5px);
}

.home-publication-book img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 7px 16px rgba(13, 30, 42, .14);
    object-fit: contain;
    object-position: center;
    transition: box-shadow .35s ease;
}

.home-publication-book:hover img {
    box-shadow: 0 16px 30px rgba(13, 30, 42, .2);
}

.home-publication-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.home-publication-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: #079646;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(7, 150, 70, .22);
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.home-publication-more:hover {
    transform: translateY(-2px);
    background: #05783d;
    color: #fff;
    box-shadow: 0 18px 34px rgba(7, 150, 70, .28);
}

.home-publication-more span {
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1100px) {
    .home-publication-books {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .home-publication-container {
        padding: 0 16px;
    }

    .home-publication-books {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-publication-book {
        height: min(78vw, 360px);
    }
}

@media (min-width: 640px) {
    .strategic-pillars-container,
    .home-publication-container {
        padding: 0 24px;
    }
}

@media (max-width: 1280px) {
    .home-key-figures {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-key-figure:nth-child(5)::before {
        display: none;
    }
}

@media (min-width: 1281px) and (max-width: 1500px) {
    .home-key-figure {
        grid-template-columns: 40px minmax(0, 1fr);
        column-gap: 8px;
        padding-inline: 10px;
    }

    .home-key-figure-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .home-key-figure-icon svg,
    .home-key-figure-icon img {
        width: 27px;
        height: 27px;
    }

    .home-key-figure-value {
        font-size: clamp(1.08rem, 1.45vw, 1.45rem);
        gap: 3px;
    }

    .home-key-figure-label {
        font-size: .68rem;
        line-height: 1.24;
    }
}

@media (max-width: 760px) {
    .home-key-figures-section {
        padding: 14px 0 18px;
    }

    .home-key-figures-container {
        padding: 0;
    }

    .home-key-figures-heading {
        display: block;
        margin: 0 16px 12px;
    }

    .home-key-figures-heading span {
        font-size: clamp(1.08rem, 5.2vw, 1.32rem);
        line-height: 1.18;
    }

    .home-key-figures-heading p {
        margin-top: 6px;
        text-align: left;
        font-size: clamp(.76rem, 3.6vw, .86rem);
        line-height: 1.42;
        white-space: normal;
    }

    .home-key-figures {
        display: flex;
        gap: 0;
        overflow-x: auto;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-key-figures::-webkit-scrollbar {
        display: none;
    }

    .home-key-figure {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 10px;
        flex: 0 0 min(82vw, 310px);
        min-height: 104px;
        margin-left: 12px;
        padding: 14px 13px 13px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .90);
        box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
        scroll-snap-align: start;
    }

    .home-key-figure-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .home-key-figure-icon svg,
    .home-key-figure-icon img {
        width: 28px;
        height: 28px;
    }

    .home-key-figure-value {
        gap: 3px;
        font-size: clamp(1.28rem, 8vw, 1.72rem);
        white-space: nowrap;
    }

    .home-key-figure-prefix,
    .home-key-figure-suffix {
        font-size: .42em;
    }

    .home-key-figure-label {
        margin-top: 7px;
        font-size: clamp(.72rem, 3.5vw, .84rem);
        line-height: 1.28;
    }

    .home-key-figure:last-child {
        margin-right: 12px;
    }

    .home-key-figure::before {
        display: none;
    }
}

.home-business-fields {
    position: relative;
    overflow: hidden;
    padding: 68px 0 84px;
    border-top: 1px solid rgba(226, 232, 240, .9);
    background:
        radial-gradient(circle at 8% 4%, rgba(17, 66, 147, .08), transparent 28%),
        radial-gradient(circle at 94% 94%, rgba(7, 150, 70, .09), transparent 30%),
        linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.home-business-fields::before,
.home-business-fields::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.home-business-fields::before {
    top: -190px;
    left: -170px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(17, 66, 147, .08);
    box-shadow: 0 0 0 42px rgba(17, 66, 147, .025);
}

.home-business-fields::after {
    right: -125px;
    bottom: -180px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(7, 150, 70, .10);
    box-shadow: 0 0 0 48px rgba(7, 150, 70, .025);
}

.home-business-container {
    position: relative;
    z-index: 1;
}

.home-business-section-title {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.home-business-section-title h2 {
    position: relative;
    margin: 0;
    padding-left: 22px;
    font-size: clamp(27px, 2.2vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.home-business-section-title h2::before {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 6px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(180deg, #174293, #079646);
}

.home-business-section-title h2 span {
    color: #123d83;
}

.home-business-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.home-business-field {
    position: relative;
    height: 410px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .26);
    border-radius: 22px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 12px 30px rgba(15, 45, 84, .10);
    color: #174293;
    isolation: isolate;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease, border-color .4s ease, background-size .5s ease;
}

.home-business-field::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 5px;
    content: "";
    opacity: .92;
    pointer-events: none;
}

.home-business-field::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .98) 38%, rgba(255, 255, 255, .82) 53%, rgba(255, 255, 255, .12) 72%, transparent 82%);
    pointer-events: none;
}

.home-business-field:hover {
    border-color: currentColor;
    box-shadow: 0 24px 48px rgba(15, 45, 84, .18);
    transform: translateY(-8px);
}

.home-business-field-number,
.home-business-field-icon,
.home-business-field h3,
.home-business-field-arrow {
    position: absolute;
    z-index: 1;
}

.home-business-field-number {
    top: 26px;
    left: 22px;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    opacity: .22;
}

.home-business-field-icon {
    top: 24px;
    left: 50%;
    width: 82px;
    height: 82px;
    object-fit: contain;
    filter: drop-shadow(0 7px 10px rgba(15, 45, 84, .10));
    transform: translateX(-50%) scale(1);
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.home-business-field:hover .home-business-field-icon {
    transform: translateX(-50%) scale(1.08);
}

.home-business-field h3 {
    top: 127px;
    right: 20px;
    left: 20px;
    margin: 0;
    text-align: center;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.34;
    text-shadow: 0 1px 0 #fff, 0 0 18px #fff, 0 0 32px #fff;
}

.home-business-field-arrow {
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    width: 47px;
    height: 47px;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #174293;
    color: #fff;
    box-shadow: 0 8px 18px rgba(15, 45, 84, .22);
    line-height: 1;
    transition: transform .35s ease, box-shadow .35s ease;
}

.home-business-field-arrow::before {
    width: 19px;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-1px);
}

.home-business-field-arrow::after {
    position: absolute;
    top: 50%;
    right: 13px;
    width: 9px;
    height: 9px;
    content: "";
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.home-business-field:hover .home-business-field-arrow {
    box-shadow: 0 10px 22px rgba(15, 45, 84, .28);
    transform: translateX(4px);
}

.home-business-field-01 {
    color: #113b8e;
}

.home-business-field-02 {
    color: #087c40;
}

.home-business-field-03 {
    color: #00799f;
}

.home-business-field-04 {
    color: #d46c00;
}

.home-business-field-05 {
    color: #4c2e9d;
}

.home-business-field-01 .home-business-field-arrow { background: #174293; }
.home-business-field-02 .home-business-field-arrow { background: #168a4d; }
.home-business-field-03 .home-business-field-arrow { background: #1180a9; }
.home-business-field-04 .home-business-field-arrow { background: #dd7a15; }
.home-business-field-05 .home-business-field-arrow { background: #563aa9; }

@media (max-width: 1100px) {
    .home-business-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-business-field {
        height: 390px;
    }
}

@media (max-width: 720px) {
    .home-business-fields {
        padding: 48px 0 58px;
    }

    .home-business-section-title {
        margin-bottom: 24px;
    }

    .home-business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .home-business-field {
        height: 360px;
        border-radius: 18px;
    }

    .home-business-field h3 {
        right: 14px;
        left: 14px;
        font-size: 19px;
    }
}

@media (max-width: 520px) {
    .home-business-grid {
        grid-template-columns: 1fr;
    }

    .home-business-field {
        height: 390px;
    }
}

.business-quick-links {
    overflow: hidden;
    border: 1px solid rgba(18, 61, 131, .13);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(15, 45, 84, .12);
}

.business-quick-links-nav {
    display: grid;
    gap: 7px;
    padding: 12px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.business-quick-link {
    display: grid;
    min-height: 62px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #334155;
    transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.business-quick-link:hover {
    border-color: rgba(18, 156, 78, .18);
    background: rgba(18, 156, 78, .06);
    color: #0f7f40;
    transform: translateX(3px);
}

.business-quick-link-number {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.business-quick-link-title {
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
}

.business-quick-link.is-active {
    border-color: rgba(18, 156, 78, .24);
    background: rgba(18, 156, 78, .055);
    color: #087a3a;
    box-shadow: 0 4px 12px rgba(15, 92, 58, .05);
    transform: none;
}

.business-quick-link.is-active:hover {
    border-color: rgba(18, 156, 78, .3);
    background: rgba(18, 156, 78, .075);
    color: #087a3a;
    transform: none;
}

.business-quick-link.is-active .business-quick-link-number {
    background: transparent;
}

.business-detail-hero-wrap {
    position: relative;
    padding: 38px 0 0;
}

.business-detail-hero {
    position: relative;
    min-height: 204px;
    overflow: hidden;
    border-radius: 24px;
    background-position: center 58%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 18px 45px rgba(15, 45, 84, .14);
}

.business-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 63, 116, .84) 0%, rgba(6, 82, 139, .68) 34%, rgba(7, 82, 138, .3) 56%, rgba(4, 42, 79, 0) 80%);
}

.business-detail-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 169px;
    max-width: 990px;
    flex-direction: column;
    justify-content: center;
    padding: 42px 46px;
    color: #fff;
}

.business-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 21px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
}

.business-detail-breadcrumb a {
    transition: color .2s ease;
}

.business-detail-breadcrumb a:hover,
.business-detail-breadcrumb strong {
    color: #fff;
}

.business-detail-hero-content h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.025em;
    text-shadow: 0 5px 22px rgba(0, 29, 61, .28);
    text-transform: uppercase;
}

.business-detail-hero-accent {
    display: block;
    width: 58px;
    height: 4px;
    margin-top: 24px;
    border-radius: 999px;
    background: #54d777;
    box-shadow: 0 0 18px rgba(84, 215, 119, .4);
}

@media (max-width: 720px) {
    .business-detail-hero-wrap {
        padding-top: 18px;
    }

    .business-detail-hero,
    .business-detail-hero-content {
        min-height: 235px;
    }

    .business-detail-hero {
        border-radius: 18px;
        background-position: 64% center;
    }

    .business-detail-hero-overlay {
        background: linear-gradient(90deg, rgba(5, 63, 116, .86) 0%, rgba(6, 82, 139, .7) 65%, rgba(4, 42, 79, .26) 100%);
    }

    .business-detail-hero-content {
        padding: 30px 24px;
    }

    .business-detail-breadcrumb {
        margin-bottom: 18px;
        font-size: 12px;
    }
}

.culture-overview-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, .95);
    border-radius: 1.75rem;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.culture-overview-copy {
    position: relative;
    padding: 34px 36px 32px;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 58%, rgba(18, 156, 78, .06) 100%);
}

.culture-overview-copy::after {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    content: "";
    border-radius: 999px;
    background: rgba(18, 156, 78, .08);
    pointer-events: none;
}

.culture-overview-copy h2 {
    position: relative;
    margin: 0;
    color: #24479a;
    font-family: Barlow, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    text-transform: uppercase;
}

.culture-overview-rule {
    display: block;
    width: 58px;
    height: 4px;
    margin-top: 16px;
    border-radius: 999px;
    background: #129c4e;
}

.culture-overview-copy p {
    position: relative;
    z-index: 1;
    margin: 20px 0 0;
    max-width: 45rem;
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.72;
}

.culture-overview-badges {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 11px;
    max-width: 400px;
}

.culture-overview-badge {
    display: flex;
    min-height: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #65bd64;
    border-radius: 999px;
    background: #24479a;
    color: #fff;
    padding: 14px;
    text-align: center;
    box-shadow: 0 16px 32px rgba(36, 71, 154, .22);
}

.culture-overview-badge strong {
    color: #65bd64;
    font-family: Barlow, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.culture-overview-badge span {
    display: block;
    max-width: 125px;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

.culture-overview-media {
    position: relative;
    display: flex;
    min-height: 100%;
    overflow: hidden;
    background: #fff;
}

.culture-overview-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1180px) {
    .culture-overview-card {
        grid-template-columns: 1fr;
    }

    .culture-overview-media {
        min-height: 0;
    }

    .culture-overview-media img {
        height: auto;
        object-fit: contain;
    }

}

@media (max-width: 640px) {
    .culture-overview-copy {
        padding: 26px 22px 24px;
    }

    .culture-overview-copy h2 {
        font-size: 1.65rem;
    }

    .culture-overview-copy p {
        font-size: 15px;
        line-height: 1.65;
    }

    .culture-overview-badges {
        grid-template-columns: repeat(2, minmax(0, 128px));
        gap: 12px;
    }

    .culture-overview-badge {
        min-height: 104px;
        padding: 12px;
    }

    .culture-overview-badge strong {
        font-size: 1.7rem;
    }

}
