/* Poppins – local font files (all weights) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-Thin.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 100;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-ThinItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-ExtraLight.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 200;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-ExtraLightItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-LightItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-Regular.ttf') format('truetype');
}


@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-Italic.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-MediumItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-SemiBoldItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-BoldItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-ExtraBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 800;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-Black.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: url('/Style Library/OLL/webfonts/Poppins-BlackItalic.ttf') format('truetype');
}

:root {
    --clr-bg: #ffffff;
    --clr-text: #27201F;
    --clr-accent: #DA291C;
    --clr-muted: #666666;
    --clr-border: #e2e2e2;
    --radius: 6px;
    --transition: 160ms ease;
    --max-width: 1180px;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

#s4-ribbonrow,
#s4-ribbonrow * {
    box-sizing: content-box; /* 或 SharePoint 原值 */
}

body {
    overflow: auto !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Microsoft YaHei', '微软雅黑', sans-serif !important;
    margin: 0;
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.5;
}

img, svg {
    max-width: 100%;
    height: auto;
}

#s4-ribbonrow img,
#s4-ribbonrow svg {
    max-width: none;
    height: auto; /* 或具体值 */
}

main {
    width: 100%;
}

.section {
    position: relative;
}

    .section [role="heading"][aria-level="2"] {
        font-weight: 700;
        font-style: Bold;
        font-size: 40px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        color: #27201F !important;
    }

.section__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-all {
    font-size: .875rem;
    text-decoration: none;
    color: var(--clr-accent);
}

/* Remove default underline from links globally, keep visible focus/hover for accessibility */
a {
    text-decoration: none;
    color: inherit;
}

    a:hover, a:focus {
        text-decoration: none;
    }
    /* Ensure keyboard users still see focus — use outline only on keyboard focus */
    a:focus-visible {
        outline: 3px solid rgba(218,41,28,0.15);
        outline-offset: 3px;
    }

/* Utility */
.max {
    max-width: 1220px;
    margin-inline: auto;
}

.btn {
    background: var(--clr-accent);
    color: #fff;
    border: none;
    padding: .75rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

    .btn:hover, .btn:focus {
        background: #a80000;
    }

.btn--sm {
    padding: .5rem .85rem;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}



.text-accent {
    color: var(--clr-accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.form-msg {
    font-size: .75rem;
    min-height: 1em;
    margin-top: .5rem;
}

/* Tracking form message when an error occurs */
/* Moved to homepage_banner.css */


/* Per-field error message shown under inputs/selects when validation fails */
.format-error, .field-error {
    color: #DA291C;
    font-size: 14px;
    margin-top: 6px;
}

/* Header/Hero */
/* Moved to homepage_banner.css */






.tracking {
    /* Moved to homepage_banner.css */
}

/* Moved to homepage_banner.css */




/* Solutions */
/* Moved to solution.css */

/* Carousel and Cards - Moved to solution.css */

/* Journey Section */
/* Moved to journey.css */

/* Modal: dialog styles moved to homepage_contactus.css */

/* Network Styles - Moved to network.css */

/* Insights moved to insight.css */



/* News moved to news.css */











@media (max-width:1279px) {
    /* News adjustments moved to news.css */

    /* Footer: reduce horizontal gap for mid/large screens */
    .footer__cols {
        gap: 1.5rem 160px;
    }
}



/* Contact styles moved to homepage_contactus.css */

/* Contact media queries moved to homepage_contactus.css */

/* (footer and insights rules consolidated earlier) */

/* Responsive */
/* Language switch global helpers (mirrors inline rules in homepage_static.html) */
.lang-switch {
    position: relative;
    display: inline-block;
    min-width: 5.5rem;
}

.lang-list li {
    white-space: nowrap;
}

@media (max-width:1023px) {
    /* Network Tablet Styles Moved */
    /* Contact tablet styles moved to homepage_contactus.css */

    /* Appended from other duplicate @media (max-width:1023px) blocks */
    /* Network tablet rules moved to network.css */

    .hero__content {
        margin: 320px 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .tracking--panel {
        max-width: 100%;
    }

    /* Mobile Pagination Active - Moved to solution.css */
}

@media (prefers-reduced-motion:reduce) {
    * {
        /* animation: none !important; */
        /* transition: none !important; */
    }
}
/* Large screen design adjustments for hero (1920px reference) */
/* Moved to homepage_banner.css */

/* Medium-large screens: 1280px ~ 1897px */
/* Moved to homepage_banner.css */

/* 1024px-1279px Solutions - Moved to solution.css */



/* @media (min-width:1024px) and (max-width:1160px) - Moved to solution.css */
/* Responsive adjustments for solutions navigation on small screens */
@media (max-width: 767px) {
    /* Solutions Mobile - Moved to solution.css */
}

/* Responsive Adjustments based on provided breakpoints */

/* lg: 1279px ~ 1024px */
@media (max-width: 1279px) {
    /* Hide carousel arrows on large tablet / small desktop per request */
    .carousel__arrow {
        display: none !important;
    }

    /* Set heading styles for this breakpoint */
    .section [role="heading"][aria-level="2"],
    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        font-style: Bold;
        font-size: 28px;
        line-height: 100%;
        letter-spacing: 0%;
    }
}

/* Journey Specific Fix - Moved to journey.css */


/* Mobile Small: 530px and below */
@media (max-width: 530px) {
    .mobile-submenu--mega.is-open {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 1.5rem;
    }
}

/* md: 1023px ~ 768px */

/* For solutions carousel at 1023px - 768px: display 2 slides */
@media (max-width: 1023px) and (min-width: 768px) {
    /* Solutions Tablet - Moved to solution.css */

    /* Journey Section - Carousel Layout */
    /* Moved to journey.css */
}

/* Wrapper for composite fields to allow error message to sit outside the overflow:hidden box */
.composite-field-wrapper {
    flex: 1;
}
/* Ensure hidden attribute works for field-error */
.field-error[hidden] {
    display: none;
}


/* Journey Base and 1400px Styles - Moved to journey.css */





/* Journey Line Break Fix - Moved to journey.css */
/* Journey Tablet Expand Fix - Moved to journey.css */


/* Journey 1024-1279px - Moved to journey.css */

/* Mobile Nav Scroll - Moved to solution.css */





/* Styles moved from homepage_static.html */
body.loading-fragments .fragment-check {
    display: none
}

/* Lang switch dropdown - minimal, non-invasive */
.lang-switch {
    position: relative;
    display: inline-block;
    min-width: 5.5rem
}

.lang-toggle {
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem
}

    .lang-toggle:focus {
        outline: 2px solid;
        outline-offset: 2px
    }

.lang-list {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    color: #333;
    border: 2px solid #ff000000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: .5rem 0;
    display: none;
    z-index: 9999;
    list-style: none;
    margin: 0;
    border-radius: 8px;
    box-sizing: border-box;
}

    .lang-list li {
        padding: .6rem 1.2rem;
        cursor: pointer;
        white-space: nowrap;
        font-size: 14px;
        transition: background .2s;
    }

        .lang-list li[aria-selected="true"] {
            font-weight: 600;
            background: #f9f9f9;
            color: #d40000;
        }

        .lang-list li:hover {
            background: #f0f0f0;
        }

    .lang-list.show {
        display: block !important;
        animation: fadeInUp .2s ease-out;
        opacity: 1;
        visibility: visible;
    }

.lang-switch .lang-toggle[aria-expanded="true"] {
    background: rgba(255,255,255,0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:640px) {
    .lang-list {
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%
    }
}

/* Tablet Tabs Gap - Moved to solution.css */

/* Contact 1024-1279px adjustments moved to homepage_contactus.css */

/* Journey 1024-1219px Text Fix - Moved to journey.css */


/* Desktop Tabs Align - Moved to solution.css */

/* Mobile styles for Solutions section (360px - 767px) */
@media (min-width: 360px) and (max-width: 767px) {
    .hero__title {
        font-weight: 700;
        font-style: Bold;
        font-size: 40px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .subtitle {
        font-weight: 600;
        font-style: SemiBold;
        font-size: 24px;
        line-height: 24px;
        letter-spacing: 0%;
    }

    /* Mobile Solutions Header - Moved to solution.css */

    .network__map {
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .network__summary {
        margin-bottom: 0 !important;
    }

    /* Mobile Nav Arrow - Moved to solution.css */

    /* Mobile Solutions - Moved to solution.css */

    /* Footer adjustments for mobile - moved to footer.css */

    /* Tracking form adjustments for mobile */
    /* Moved to homepage_banner.css */

    /* Journey Mobile Adjustments - Moved to journey.css */

    /* Network Mobile Styles Moved */



    .section [role="heading"][aria-level="2"],
    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        font-style: Bold;
        font-size: 28px;
        line-height: 100%;
        letter-spacing: 0%;
    }
}




/* Small screen adjustments so popup doesn't overflow */
@media (max-width:480px) {
    .contact-right img {
        max-width: none !important;
    }
}

@media (min-width: 1921px) {
    .contact-container.max {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__content {
        margin-left: calc((100% - var(--max-width)) / 2);
    }
}


/* Mobile Tabs Underline Remove - Moved to solution.css */

@media (max-width: 700px) {
    .mobile-menu-overlay {
        background: transparent;
    }

    .mobile-menu-drawer {
        width: 100%;
        border-radius: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

.fa-times:before {
    content: "\f00d"
}

/* Shared card hover effect — reusable across the site */
.card-hover .card__image img,
.card-hover .card-image img,
.card-hover .thumb img {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-hover:hover .card__image img,
.card-hover:hover .card-image img,
.card-hover:hover .thumb img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* Shared: fill-from-corner hover effect
   White circle fills from bottom-right on hover.
   Uses isolation:isolate so ::before/::after sit between
   the (transparent) background and the text content.
   Override --btn-fill-bg / --btn-fill-sweep / --btn-fill-text per context. */
.btn-fill-hover {
    --btn-fill-bg: #27201F;
    --btn-fill-sweep: #fff;
    --btn-fill-text: #000;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: transparent !important;
}

    .btn-fill-hover::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        background: var(--btn-fill-bg);
        border-radius: 0;
    }

    .btn-fill-hover::before {
        content: "";
        position: absolute;
        z-index: -1;
        background: var(--btn-fill-sweep);
        width: max(300px, calc(100% + 160px));
        height: max(300px, calc(100% + 160px));
        border-radius: 50%;
        top: calc(100% + 4px);
        left: calc(100% + 4px);
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .btn-fill-hover:hover::before {
        top: -80px;
        left: -80px;
    }

    .btn-fill-hover:hover {
        color: var(--btn-fill-text) !important;
    }

/* Shared: input/select border hover & focus effect
   Apply to a bordered wrapper (uses :focus-within) or directly to an input/select. */
.input-hover-border {
    -webkit-transition: border-color 0.3s ease;
    -moz-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
}

    .input-hover-border:hover {
        border-color: #27201F;
    }

    .input-hover-border:focus,
    .input-hover-border:focus-within {
        border-color: #27201F;
        outline: none;
    }

/* Shared: Floating label pattern
   Wrap an input/select/textarea + label.floating-placeholder inside a .floating-wrap div.
   On focus or when the field has a value (.filled), the label animates to sit on the top border. */
.floating-wrap {
    position: relative;
}

    .floating-wrap input,
    .floating-wrap textarea,
    .floating-wrap select {
        background: transparent;
        padding: 0 16px;
        height: 48px;
        line-height: 48px;
        font-size: 16px;
    }

    .floating-wrap textarea {
        padding: 22px 16px 12px;
        height: 120px;
        line-height: 1.4;
    }

.floating-placeholder {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    pointer-events: none;
    transition: all .16s ease;
    display: inline-block;
}

.floating-wrap input:focus + .floating-placeholder,
.floating-wrap textarea:focus + .floating-placeholder,
.floating-wrap select:focus + .floating-placeholder,
.floating-wrap input.filled + .floating-placeholder,
.floating-wrap textarea.filled + .floating-placeholder,
.floating-wrap select.filled + .floating-placeholder,
.floating-wrap.filled .floating-placeholder {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: #27201F;
    background: #fff;
    padding: 0 4px;
}

/* Textarea: default placeholder position */
.floating-wrap textarea + .floating-placeholder {
    top: 22px;
    left: 16px;
    transform: translateY(0) scale(1);
    font-size: 16px;
    color: #999999;
    z-index: 3;
    padding: 0 4px;
}

.floating-wrap textarea:focus + .floating-placeholder,
.floating-wrap textarea.filled + .floating-placeholder {
    top: 0;
    left: 16px;
    transform: translateY(-50%);
    font-size: 12px;
    color: #27201F;
    background: #fff;
    z-index: 3;
    padding: 0 4px;
}

/* ── Shared sliding tab indicator ──
   Use with tab-indicator.js.
   Container (.xxx__nav) must be position: relative.
   Override --tab-indicator-color for custom colours.
   ──────────────────────────────────────────────── */
.sliding-tab-indicator {
    position: absolute;
    bottom: 0;
    height: 4px;
    background: var(--tab-indicator-color, #DA291C);
    pointer-events: none;
    z-index: 2;
}

/* Required field star */
.star {
    color: #F05A24;
    margin-left: 4px;
}

/* ── Shared table styles (Bootstrap-compatible .table class) ── */
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

    .table > thead > tr > th,
    .table > tbody > tr > th,
    .table > thead > tr > td,
    .table > tbody > tr > td {
        padding: 8px;
        line-height: 1.42857;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }

    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
        border-top: 0;
    }

.table-annotation {
    font-weight: 700;
}

.page-content {
    margin-bottom: 80px;
    min-height: 300px;
}
.image-right {
    float: right;
    margin: 20px 0 20px 20px;
}
.image-left {
    float: left;
    margin: 20px 20px 20px 0;
}
.container-2-cols {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左右不等宽（常见portal layout） */
    gap: 20px;
}
.container-2-cols .left,
.container-2-cols .right {
    min-width: 0; /* 防止内容撑破 */
}

@media screen and (max-width: 767px) {
    .container-2-cols {
        grid-template-columns: 1fr; /* 单列 */
    }
}
/*.page-container *, .article-content *, .career-rich-content * {
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}*/
.page-container, .article-content, .career-rich-content {
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.page-container strong, .article-content strong, .career-rich-content strong,
.page-container b, .article-content b, .career-rich-content b
{
    font-weight: 700;
}

.page-container h2, .article-content h2, .career-rich-content h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 36px auto;
}
.page-container p, .article-content p, .career-rich-content p {
    margin: 0 auto;
}
.page-content a, .article-content a, .career-rich-content a {
    text-decoration: underline;
    color: #157eff;
}
.ms-rtestate-field h1, h1.ms-rteElement-H1, .ms-rtestate-field h2, h2.ms-rteElement-H2 {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}
.ms-rteFontSize-1 {
    font-size: 9px;
}

.ms-rteFontSize-2 {
    font-size: 11px;
}

.ms-rteFontSize-3 {
    font-size: 13px;
}

.ms-rteFontSize-4 {
    font-size: 18px;
}

.ms-rteFontSize-5 {
    font-size: 24px;
}

.ms-rteFontSize-6 {
    font-size: 36px;
}

.ms-rteFontSize-7 {
    font-size: 48px;
}

.ms-rteFontSize-8 {
    font-size: 72px;
}
/* ========================================
   Table Wrapper
   ======================================== */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ========================================
   Table
   ======================================== */

.content-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    table-layout: auto;
}

.content-table th,
.content-table td {
    width: auto;
}

/* ========================================
Header
======================================== */

.content-table thead th {
    padding-top: 5px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 3px solid #000;
    height: 48px;
    vertical-align: top;
}

/* ========================================
Body
======================================== */

.content-table tbody td {
    padding: 20px 20px 20px 0;
    vertical-align: top;
    font-size: 16px;
    color: #6C6C6C;
    border-bottom: 1px solid #CCCED2;
    word-break: normal;
    overflow-wrap: break-word;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {

    .content-table {
        min-width: 650px;
    }
}

@media (max-width: 768px) {

    .content-table {
        min-width: 700px;
    }
}

/* ========================================
   Scrollbar
   ======================================== */

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #F5F5F5;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #CCCED2;
    border-radius: 3px;
}
.news-tags {
    display: flex;
    flex-wrap: wrap;
}
.news-tag {
    display: inline-block;
    padding: 0 12px;
    background: #ffe7e3;
    border-radius: 12px;
    font-size: 14px;
    color: #DA291C;
    line-height: 24px;
    vertical-align: middle;
    font-weight: 500;
    margin-bottom: 2px;
}

.news-tag:not(:last-child) {
    margin-right: 10px;
}