/* =============================================
   CUSTOM FONTS
   ============================================= */
@font-face {
    font-family: 'Neue Montreal';
    src: url('../Font/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../Font/NeueMontreal-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../Font/NeueMontreal-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../Font/NeueMontreal-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../Font/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../Font/NeueMontreal-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../Font/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../Font/NeueMontreal-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* =============================================
   GLOBAL STYLES
   ============================================= */
body {
    /* background-color: #FBF8F2; */
    font-family: 'Neue Montreal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4E381E;
    margin: 0;
}

/* =============================================
   HEADER
   ============================================= */
.main-header {
    background-color: #FDFDFD;
    padding: 15px 0 0;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 6px 18px rgba(122, 86, 51, 0.08);
}

.header-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.header-brand {
    position: relative;
    z-index: 2;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    background-color: #FDFDFD;
    position: absolute;
    top: 0px;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
    z-index: 1;
}

.header-nav-shell {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    padding-bottom: 12px;
}

.navigation-links {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
}

.navigation-links .nav-link {
    color: #616161 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navigation-links .nav-link:hover {
    color: #A58059 !important;
}

.navigation-links .nav-link.active {
    color: #A37948 !important;
    font-weight: 400;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #eadfce;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(122, 86, 51, 0.12);
    z-index: 30;
}

.nav-dropdown-item {
    display: block;
    padding: 10px 14px;
    color: #616161;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-dropdown-item:hover {
    color: #A58059;
    background-color: #f9f3ea;
}

.nav-dropdown-item.active {
    color: #A37948;
    font-weight: 600;
    background-color: #f9f3ea;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.register-btn-wrap {
    flex: 0 0 auto;
}

.register-btn {
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #3D2D1B;
    border: none;
    padding: 8px 28px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.register-btn:hover {
    opacity: 0.88;
    color: #3D2D1B;
}

.header-line {
    height: 2px;
    background-color: #A58059;
    width: 100%;
    margin-top: 0;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid #d9c3aa;
    border-radius: 10px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: #8f6438;
    box-shadow: 0 10px 24px rgba(122, 86, 51, 0.08);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HOME HERO
   ============================================= */
.home-hero {
    background: #f8f5ef url('../img/home1.png') no-repeat center center;
    background-size: cover;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 100px 0 72px;
    position: relative;
}

.home-hero-inner {
    /* max-width: 510px; */
    position: relative;
    z-index: 1;
}

.home-logo-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c9a86c;
    border-radius: 4px;
    padding: 6px 10px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.65);
}

.home-badge-img {
    height: 42px;
    width: auto;
    display: block;
}

.home-hero-quote {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    color: #A37948;
    margin: 0 0 18px;
    max-width: 588px;
}

.home-hero-attr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
}

.home-hero-attr-text {
    color: #9a7a59;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.home-hero-attr-arrow {
    display: inline-block;
    flex: 0 0 52px;
    width: 52px;
    height: 8px;
    background:
        radial-gradient(circle at calc(100% - 10px) 50%, #a07850 3px, transparent 3.5px),
        linear-gradient(#c4a07a, #c4a07a) 0 50% / calc(100% - 12px) 1px no-repeat;
}

.home-hero-desc {
    color: #7a6a58;
    /* font-size: 13px; */
    line-height: 1.75;
    max-width: 580px;
    margin: 0 0 34px;
}

.home-hero-ctas {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.home-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #3D2D1B;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.home-hero-btn:hover {
    opacity: 0.88;
    color: #3D2D1B;
}

.home-hero-nominate {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #5a4a38;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-hero-nominate:hover {
    color: #A37948;
}

.home-hero-nominate-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid #c4a060;
    display: inline-flex;
    align-items: center;
    background:#fff;
    justify-content: center;
    color: #c4a060;
    font-size: 14px;
    flex-shrink: 0;
}

/* =============================================
   HOME MISSION SECTION
   ============================================= */
.home-mission {
    background: #fff;
    overflow: hidden;
    padding:50px;
}

.home-mission-grid {
    display: grid;
    grid-template-columns: 296px minmax(460px, 1fr) 330px;
    align-items: center;
    width: 100%;
    min-height: 470px;
    gap: 10px;
}

/* --- Collage shared --- */
.hm-collage {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.hm-side-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile slider: hidden on desktop, shown on mobile via media query */
.hm-mobile-slider {
    display: none !important;
    padding: 0 16px 32px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hm-mobile-slider {
        display: none !important;
    }
    
}

.hm-collage-left {
    position: relative;
    left: -54px;
}

.hm-collage-right {
    position: relative;
    right: -54px;
}

.hm-mobile-slider .swiper-slide {
    width: 200px;
}

.hm-mobile-slider .swiper-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    display: block;
}

.hm-mobile-slider .swiper-pagination {
    position: static;
    margin-top: 14px;
}

.hm-mobile-slider .swiper-pagination-bullet-active {
    background: #A37948;
}

/* --- Center text --- */
.hm-text {
    text-align: center;
    padding: 48px 24px;
    max-width: 610px;
    justify-self: center;
}

.hm-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #9a7a59;
    font-size: 12px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.hm-label-line {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #c4a07a;
    flex-shrink: 0;
    position: relative;
}

.hm-label-line::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c4a07a;
    top: 50%;
    transform: translateY(-50%);
}

.hm-label-line:first-child::before {
    left: -3px;
}

.hm-label-line:last-child::before {
    right: -3px;
    left: auto;
}

.hm-title {
    font-size: 34px;
    font-weight: 700;
    color: #A37948;
    line-height: 1.18;
    margin: 0 0 20px;
}

.hm-body {
    color: #A37948;
    line-height: 1.78;
    margin: 0 0 14px;
}

.hm-body:last-child {
    margin-bottom: 0;
}

.hm-body strong {
    color: #A37948;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .home-mission-grid {
        grid-template-columns: 200px minmax(0, 1fr) 220px;
    }
    .hm-title { font-size: 28px; }
    .hm-text { padding: 36px 20px; }
}

@media (max-width: 767px) {
    .home-mission-grid {
        grid-template-columns: 1fr;
    }
    .hm-collage {
        display: none;
    }
    .hm-mobile-slider {
        display: block !important;
    }
    .hm-text {
        padding: 36px 24px 24px;
    }
    .hm-title { font-size: 28px; }
}

/* Home hero responsive */
@media (max-width: 991px) {
    .home-hero {
        min-height: 480px;
        padding: 52px 0 60px;
        background-position: right center;
    }
    .home-hero-quote {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .home-hero {
        min-height: 0;
        padding: 44px 0 52px;
        background-position: right;
        background-size: cover;
    }
    .home-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(255, 250, 242, 0.72) 100%,
            rgba(255, 250, 242, 0.38) 60%,
            rgba(255, 250, 242, 0.15) 100%
        );
        z-index: 0;
        pointer-events: none;
    }
    .home-hero-inner {
        max-width: 100%;
        position: relative;
        z-index: 1;
    }
    .home-hero-quote {
        font-size: 28px;
        max-width: 100%;
    }
    .home-hero-desc {
        max-width: 100%;
    }
    .home-hero-ctas {
        gap: 18px;
    }
}

@media (max-width: 576px) {
    .home-hero {
        padding: 36px 0 44px;
    }
    .home-hero-quote {
        font-size: 24px;
    }
    .home-logo-badge {
        margin-bottom: 20px;
    }
    .home-mission {
        padding: 0 !important;;
    }
}

/* =============================================
   GALLERY HERO / BREADCRUMB
   ============================================= */
.gallery-hero {
    background-color: #FBF8F2;
    background-image: url('../img/breadcrumb-gallery.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0 90px;
    text-align: center;
    position: relative;
}

.contact-hero {
    background-image: url('../img/breadcrumb-contact.png');
}

.about-hero {
    padding: 150px 0 90px;
    background-image: url('../img/breadcrumb-gallery.png');
}

.nomination-hero {
    background-image: url('../img/breadcrumb-gallery.png');
    padding: 100px 0 80px;
    text-align: center;
}

.nomination-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.nomination-hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    background: linear-gradient(90deg, #A37948 0%, #3D2D1B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nomination-hero-btn {
    display: inline-block;
    padding: 11px 40px;
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #3D2D1B;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nomination-hero-btn:hover {
    opacity: 0.88;
    color: #3D2D1B;
    transform: translateY(-1px);
}

/* =============================================
   NOMINATION REGISTER PAGE
   ============================================= */
.nomination-register-section {
    background: #fff;
    padding: 62px 0 110px;
}

.nomination-register-card {
    background: #f8f5ef;
    border-radius: 6px;
    text-align: center;
    padding: 62px 20px 56px;
    max-width: 1060px;
    margin: 0 auto;
}

.nomination-register-label {
    margin: 0 0 10px;
    color: #b58a62;
    font-size: 24px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
}

.nomination-register-label::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 180px;
    height: 1px;
    background: #a37948;
    transform: translateX(-50%);
}

.nomination-register-label::after {
    content: "";
    position: absolute;
    left: calc(50% - 90px);
    bottom: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a37948;
    box-shadow: 180px 0 0 #a37948;
}

.nomination-register-title {
    margin: 0;
    color: #8f6438;
    font-size: 51px;
    line-height: 1.18;
}

.about-hero .gallery-title {
    color: #A37948;
    font-size: 48px;
    font-weight: 600;
    font-style: normal;
    margin: 0;
    position: relative;
    z-index: 1;
}

.news-hero {
    background-image: url('../img/breadcrumb-news.png');
}

.gallery-title {
    color: #A37948;
    font-size: 48px;
    font-weight: 600;
    font-style: normal;
    margin: 0;
    position: relative;
    z-index: 1;
}

.gallery-title-divider {
    display: none;
}

/* =============================================
   JURY PAGE
   ============================================= */
.jury-hero .gallery-title {
    margin-bottom: 0;
}

.jury-message-section {
    padding: 28px 0 56px;
    background: #fff;
}

.jury-video-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.jury-video-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.jury-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.jury-play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #ffffff;
    margin-left: 4px;
}

.jury-message-copy {
    padding: 22px 12px 0;
    max-width: 1180px;
}

.jury-message-label {
    margin: 0 0 8px;
    color: #b58a62;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.jury-message-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a37948;
    position: absolute;
    left: 0;
    bottom: 0;
}

.jury-message-label::after {
    content: "";
    width: 210px;
    height: 1px;
    background: #a37948;
    position: absolute;
    left: 0;
    bottom: 3px;
}

.jury-message-title {
    margin: 0 0 20px;
    color: #8f6438;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 600;
}

.jury-message-copy p {
    margin: 0 0 18px;
    color: #6d5a45;
    font-size: 18px;
    line-height: 1.52;
}

.jury-message-copy p:last-child {
    margin-bottom: 0;
}

.jury-statutes-section {
    background: #f7f3ee;
    padding: 44px 0 58px;
}

.jury-statutes-card {
    max-width: 100%;
    margin: 0;
}

.jury-statutes-label {
    margin: 0 0 12px;
    color: #b58a62;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.jury-statutes-line {
    display: inline-block;
    width: 42px;
    height: 1px;
    background: #a37948;
    position: relative;
}

.jury-statutes-line-left::after {
    content: "";
    position: absolute;
    left: -1px;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #a37948;
}

.jury-statutes-line-right::before {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #a37948;
}

.jury-statutes-title {
    margin: 0 0 20px;
    text-align: center;
    color: #8f6438;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 600;
}

.jury-statutes-list {
    margin: 0;
    padding-left: 26px;
    color: #7b664f;
    font-size: 18px;
    line-height: 1.5;
}

.jury-statutes-list li {
    margin-bottom: 10px;
}

.jury-statutes-list li:last-child {
    margin-bottom: 0;
}

.jury-page .about-cta-section {
    padding-top: 36px;
}

/* =============================================
   YBS 2025 LAUREATES
   ============================================= */
.ybs-2025-hero .gallery-title {
    margin-bottom: 6px;
}

.ybs-2025-hero-subtitle {
    margin: 0;
    color: #3f2f1f;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.ybs-2025-intro-section {
    padding: 58px 0 72px;
    background: #fff;
}

.ybs-2025-intro-content {
    max-width: 560px;
}

.ybs-2025-intro-label {
    margin: 0 0 16px;
    color: #b58a62;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ybs-2025-intro-label::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #a37948;
    margin-left: 2px;
    order: 2;
}

.ybs-2025-intro-label::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a37948;
    margin-left: -6px;
    display: inline-block;
    flex: 0 0 7px;
    order: 3;
}

.ybs-2025-intro-title {
    margin: 0 0 10px;
    color: #8f6438;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 500;
}

.ybs-2025-intro-title span {
    display: block;
    margin-top: 4px;
    color: #7a5633;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 400;
}

.ybs-2025-intro-text {
    margin: 0 0 24px;
    color: #8b7b69;
    font-size: 15px;
    line-height: 1.5;
    max-width: 520px;
}

.ybs-2025-read-more-btn {
    display: inline-block;
    min-width: 136px;
    text-align: center;
    padding: 9px 28px;
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #3D2D1B;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 4px;
}

.ybs-2025-read-more-btn:hover {
    opacity: 0.88;
    color: #3D2D1B;
}

.ybs-2025-intro-media {
    border-radius: 8px;
    overflow: hidden;
}

.ybs-2025-intro-media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
}

.ybs-2024-page .ybs-2025-intro-media img {
    filter: none;
}

.ybs-2023-page .ybs-2025-intro-media img {
    filter: none;
}

.ybs-2025-story-section {
    background: #fff;
}

.ybs-2025-story-block {
    padding: 56px 0 62px;
}

.ybs-2025-story-block-cream {
    background: #f7f3ee;
}

.ybs-2025-story-block-white {
    background: #fff;
}

.ybs-2025-story-media {
    border-radius: 8px;
    overflow: hidden;
}

.ybs-2025-story-media img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.ybs-2025-story-content {
    max-width: 560px;
}

.ybs-2025-story-label {
    margin: 0 0 10px;
    color: #b58a62;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ybs-2025-story-label::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #a37948;
    margin-left: 2px;
    order: 2;
}

.ybs-2025-story-label::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a37948;
    margin-left: -6px;
    display: inline-block;
    flex: 0 0 7px;
    order: 3;
}

.ybs-2025-story-title {
    margin: 0 0 4px;
    color: #8f6438;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 500;
}

.ybs-2025-story-subtitle {
    margin: 0 0 14px;
    color: #7a5633;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 400;
}

.ybs-2024-page .ybs-2025-story-subtitle {
    font-weight: 400;
}

.ybs-2023-page .ybs-2025-story-subtitle {
    font-weight: 400;
}

.ybs-2024-page .ybs-2025-story-title {
    font-size: 44px;
    line-height: 1.15;
}

.ybs-2023-page .ybs-2025-story-title {
    font-size: 44px;
    line-height: 1.15;
}

.ybs-2025-story-subtitle-secondary {
    margin-top: 4px;
}

.ybs-2025-story-text {
    margin: 0 0 22px;
    color: #8b7b69;
    font-size: 15px;
    line-height: 1.5;
    max-width: 530px;
}

/* =============================================
   YBS LAUREATES PAGE
   ============================================= */
.ybs-laureates-page {
    background: #fff;
}

.ybs-laureates-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 274px;
    background-color: #faf6f2;
    background-image: url('../img/ybs-laureates-hero-bg-2.png');
    background-repeat: no-repeat;
    background-position: center -86px;
    background-size: 100% auto;
    padding: 58px 0 44px;
    overflow: hidden;
    isolation: isolate;
}

.ybs-laureates-hero::before,
.ybs-laureates-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ybs-laureates-hero::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 246, 242, 0.54) 0%, rgba(250, 246, 242, 0.68) 100%);
}

.ybs-laureates-hero::after {
    inset: auto 0 0;
    height: 58px;
    background: linear-gradient(180deg, rgba(250, 246, 242, 0) 0%, rgba(250, 246, 242, 0.92) 100%);
}

.ybs-laureates-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.ybs-laureates-hero .gallery-title {
    margin-bottom: 6px;
    font-family: 'Neue Montreal', 'Segoe UI', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.35px;
    background: linear-gradient(154deg, #a37948 7.08%, #3d2d1b 135.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ybs-laureates-hero-subtitle {
    margin: 0;
    color: #382f25;
    font-size: 18px;
    line-height: 1.2;
}

.ybs-laureates-sections {
    background: #fff;
}

.ybs-laureates-block {
    padding: 58px 0 60px;
    border-top: 1px solid rgba(163, 121, 72, 0.06);
}

.ybs-laureates-block-muted {
    background: #f8f7f2;
}

.ybs-laureates-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 545px;
    align-items: center;
    gap: 29px;
    max-width: 1118px;
    margin: 0 auto;
}

.ybs-laureates-block-reverse .ybs-laureates-layout {
    grid-template-columns: 545px minmax(0, 1fr);
    gap: 40px;
}

.ybs-laureates-copy {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ybs-laureates-copy-inner {
    width: 100%;
    max-width: 540px;
}

.ybs-laureates-label {
    margin: 0 0 12px;
    color: #a58059;
    font-size: 12px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ybs-laureates-label::after {
    content: "";
    width: 30px;
    height: 1px;
    background: #a58059;
    clip-path: polygon(0 47%, 84% 47%, 84% 0, 100% 50%, 84% 100%, 84% 53%, 0 53%);
}

.ybs-laureates-title {
    margin: 0;
    color: #a37948;
    font-size: 28px;
    line-height: 1.06;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.25px;
}

.ybs-laureates-subtitle {
    margin: 2px 0 12px;
    color: #4c3923;
    font-size: 18px;
    line-height: 1.24;
    font-weight: 500;
    max-width: 500px;
}

.ybs-laureates-description {
    margin: 0 0 16px;
    color: rgba(107, 77, 42, 0.72);
    font-size: 13px;
    line-height: 1.52;
    letter-spacing: 0;
    max-width: 470px;
}

.ybs-laureates-body {
    margin: 0 0 18px;
    color: rgba(94, 73, 52, 0.75);
    font-size: 12px;
    line-height: 1.5;
    max-width: 470px;
}

.ybs-laureates-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 30px;
    padding: 0 14px;
    border-radius: 2px;
    text-decoration: none;
    color: #4e381e;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(158deg, #f9c07d 16.72%, #93714a 170.9%);
    border: 1px solid rgba(255, 157, 87, 0.13);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ybs-laureates-btn:hover {
    color: #4e381e;
    opacity: 0.9;
    transform: translateY(-1px);
}

.ybs-laureates-media {
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    justify-self: end;
    width: 100%;
}

.ybs-laureates-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ybs-laureates-media-first {
    height: 354px;
}

.ybs-laureates-media-first img {
    object-position: center 50%;
    filter: grayscale(100%);
}

.ybs-laureates-media-second {
    height: 416px;
}

.ybs-laureates-media-second img {
    object-position: center 44%;
}

.ybs-laureates-media-third {
    height: 416px;
}

.ybs-laureates-media-third img {
    object-position: center 10%;
}

.ybs-laureates-block-reverse .ybs-laureates-copy {
    justify-content: flex-start;
}

.ybs-laureates-block-reverse .ybs-laureates-copy-inner {
    max-width: 540px;
}

.ybs-laureates-block-one .ybs-laureates-copy-inner {
    max-width: 548px;
}

.ybs-laureates-block-three .ybs-laureates-copy-inner {
    max-width: 548px;
}

/* =============================================
   INNOVATORS IN HEALTH
   ============================================= */
.innovators-intro-section {
    padding: 58px 0 72px;
    background: #fff;
}

.innovators-intro-content {
    max-width: 560px;
}

.innovators-intro-label {
    margin: 0 0 16px;
    color: #c39b72;
    font-size: 20px;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.innovators-intro-label::before {
    content: "";
    width: 52px;
    height: 1px;
    background: #a37948;
    order: 2;
}

.innovators-intro-label::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a37948;
    margin-left: -6px;
    display: inline-block;
    flex: 0 0 7px;
    order: 3;
}

.innovators-intro-title {
    margin: 0 0 18px;
    color: #8f6133;
    font-size: 54px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.innovators-intro-text {
    margin: 0;
    color: #6a5b4a;
    font-size: 19px;
    line-height: 1.5;
    max-width: 540px;
}

.innovators-intro-media {
    border-radius: 8px;
    overflow: hidden;
}

.innovators-intro-media img {
    width: 100%;
    height: 345px;
    object-fit: cover;
    display: block;
}

.innovators-story-section {
    padding: 0;
    background: transparent;
}

.innovators-story-block {
    padding: 58px 0 72px;
}

.innovators-story-block-cream {
    background: #f8f3ed;
}

.innovators-story-block-white {
    background: #fff;
}

.innovators-story-row + .innovators-story-row {
    margin-top: 56px;
}

.innovators-story-copy {
    max-width: 540px;
}

.innovators-story-copy p {
    margin: 0;
    color: #7e6a54;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;
}

.innovators-story-copy p + p {
    margin-top: 24px;
}

.innovators-story-media {
    border-radius: 8px;
    overflow: hidden;
}

.innovators-story-media img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

.innovators-gallery-section {
    padding: 22px 0 0;
    background: #f8f3ed;
    overflow-x: hidden;
}

.innovators-gallery-shell {
    padding: 18px 22px;
    background: #f3eee7;
    border-radius: 4px;
}

.innovators-gallery-shell .news-slider-track {
    gap: 12px;
}

.innovators-gallery-card {
    flex: 0 0 calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
    border: 1px solid #d9cec0;
    border-radius: 8px;
    background: transparent;
}

.innovators-gallery-media {
    padding: 0;
}

.innovators-gallery-zoom-btn {
    width: 100%;
    border: none;
    padding: 0;
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: zoom-in;
}

.innovators-gallery-media .news-card-image {
    height: 196px;
    border-radius: 6px;
    object-fit: contain;
    background: transparent;
    transition: transform 0.35s ease;
}

.innovators-gallery-zoom-btn:hover .news-card-image,
.innovators-gallery-zoom-btn:focus-visible .news-card-image {
    transform: scale(1.06);
}

.innovators-gallery-shell .innovators-gallery-arrow {
    width: 40px;
    height: 40px;
    padding: 0;
    background: #cfb89b;
    color: #fff;
    box-shadow: none;
    font-size: 26px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: calc(50% - 2px);
    transform: translateY(-50%);
}

.innovators-gallery-shell .innovators-gallery-arrow i {
    line-height: 1;
}

.innovators-gallery-shell .innovators-gallery-arrow:hover {
    background: #c2a27f;
}

.innovators-gallery-shell .news-slider-prev {
    left: -10px;
}

.innovators-gallery-shell .news-slider-next {
    right: -10px;
}

.innovators-summary-section {
    background: #fff;
    padding: 0 0 130px;
}

.innovators-gallery-summary {
    margin-top: 14px;
    padding: 24px 24px 34px;
    background: #fff;
    border-radius: 0;
}

.innovators-gallery-summary-line {
    height: 1px;
    background: #d8c7b4;
    margin-bottom: 20px;
}

.innovators-gallery-summary-title {
    margin: 0;
    color: #8f6438;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 500;
}

.innovators-gallery-summary-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-left: auto;
}

.innovators-gallery-summary-links a {
    color: #9a6d3b;
    text-decoration: none;
    font-size: 19px;
    font-weight: 400;
    min-width: 310px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: right;
}

.innovators-gallery-summary-links a:hover {
    color: #7a5633;
}


.innovators-link-arrow {
    flex: 0 0 auto;
    font-size: 15px;
    line-height: 1;
}

.news-gallery-zoom-content {
    background: #f8f4ee;
    border: 1px solid #e6dacd;
    border-radius: 14px;
    padding: 22px 26px;
}

.news-gallery-zoom-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.news-gallery-zoom-stage img {
    width: min(100%, 900px);
    max-height: 76vh;
    object-fit: contain;
    border-radius: 12px;
}

.news-gallery-zoom-nav {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #cfb89b;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.news-gallery-zoom-nav span {
    transform: translateY(-1px);
}

.news-gallery-zoom-close {
    position: absolute;
    top: 8px;
    right: 14px;
    border: none;
    background: transparent;
    color: #9a6d3b;
    font-size: 36px;
    line-height: 1;
}

@media (max-width: 991px) {
    .nomination-register-section {
        padding: 48px 0 86px;
    }

    .nomination-register-card {
        padding: 48px 18px 44px;
    }

    .nomination-register-title {
        font-size: 38px;
    }

    .jury-video-image {
        height: 420px;
    }

    .jury-message-title {
        font-size: 38px;
    }

    .jury-message-copy p {
        font-size: 16px;
    }

    .jury-statutes-title {
        font-size: 38px;
    }

    .jury-statutes-list {
        font-size: 15px;
    }

    .ybs-2025-hero-subtitle {
        font-size: 20px;
    }

    .ybs-2025-intro-section {
        padding: 48px 0 56px;
    }

    .ybs-2025-intro-title {
        font-size: 34px;
    }

    .ybs-2025-intro-title span {
        font-size: 22px;
    }

    .ybs-2025-intro-media img {
        height: 300px;
    }

    .ybs-2025-story-block {
        padding: 46px 0 50px;
    }

    .ybs-2025-story-media img {
        height: 340px;
    }

    .ybs-2025-story-title {
        font-size: 34px;
    }

    .ybs-2024-page .ybs-2025-story-title {
        font-size: 34px;
    }

    .ybs-2023-page .ybs-2025-story-title {
        font-size: 34px;
    }

    .ybs-2025-story-subtitle {
        font-size: 20px;
    }

    .innovators-intro-section {
        padding: 48px 0 56px;
    }

    .innovators-intro-title {
        font-size: 42px;
    }

    .innovators-intro-text {
        font-size: 17px;
    }

    .innovators-story-section {
        padding: 0;
    }

    .innovators-story-block {
        padding: 48px 0 56px;
    }

    .innovators-story-row + .innovators-story-row {
        margin-top: 40px;
    }

    .innovators-story-copy p {
        font-size: 17px;
    }

    .innovators-story-media img {
        height: 330px;
    }

    .innovators-gallery-card {
        flex: 0 0 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
    }

    .innovators-gallery-summary-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .nomination-register-section {
        padding: 36px 0 66px;
    }

    .nomination-register-card {
        padding: 34px 14px 32px;
    }

    .nomination-register-label {
        font-size: 14px;
    }

    .nomination-register-title {
        font-size: 28px;
    }

    .jury-message-section {
        padding: 20px 0 42px;
    }

    .jury-video-image {
        height: 280px;
    }

    .jury-play-btn {
        width: 68px;
        height: 68px;
    }

    .jury-play-icon {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 15px;
    }

    .jury-message-copy {
        padding: 16px 0 0;
    }

    .jury-message-label {
        font-size: 13px;
    }

    .jury-message-title {
        font-size: 30px;
    }

    .jury-message-copy p {
        font-size: 15px;
        line-height: 1.5;
    }

    .jury-statutes-section {
        padding: 34px 0 42px;
    }

    .jury-statutes-label {
        font-size: 13px;
    }

    .jury-statutes-line {
        width: 30px;
    }

    .jury-statutes-title {
        font-size: 30px;
    }

    .jury-statutes-list {
        padding-left: 20px;
        font-size: 14px;
    }

    .ybs-2025-hero-subtitle {
        font-size: 18px;
    }

    .ybs-2025-intro-title {
        font-size: 30px;
    }

    .ybs-2025-intro-title span {
        font-size: 20px;
    }

    .ybs-2025-intro-label {
        font-size: 13px;
    }

    .ybs-2025-intro-text {
        font-size: 14px;
    }

    .ybs-2025-read-more-btn {
        min-width: 122px;
        font-size: 15px;
        padding: 8px 16px;
    }

    .ybs-2025-intro-media img {
        height: auto;
        max-height: 320px;
    }

    .ybs-2025-story-block {
        padding: 36px 0 40px;
    }

    .ybs-2025-story-media img {
        height: auto;
        max-height: 320px;
    }

    .ybs-2025-story-title {
        font-size: 30px;
    }

    .ybs-2024-page .ybs-2025-story-title {
        font-size: 30px;
    }

    .ybs-2023-page .ybs-2025-story-title {
        font-size: 30px;
    }

    .ybs-2025-story-subtitle {
        font-size: 18px;
    }

    .ybs-2025-story-text {
        font-size: 15px;
    }

    .innovators-intro-title {
        font-size: 34px;
    }

    .innovators-intro-label {
        font-size: 17px;
    }

    .innovators-intro-media img {
        height: auto;
        max-height: 320px;
    }

    .innovators-story-copy p {
        font-size: 17px;
    }

    .innovators-story-media img {
        height: auto;
        max-height: 320px;
    }

    .innovators-gallery-section {
        padding: 14px 0 0;
    }

    .innovators-gallery-shell {
        padding: 14px 12px;
    }

    .innovators-gallery-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .innovators-gallery-shell .news-slider-prev {
        left: -4px;
    }

    .innovators-gallery-shell .news-slider-next {
        right: -4px;
    }

    .innovators-summary-section {
        padding: 0 0 96px;
    }

    .innovators-gallery-summary {
        margin-top: 12px;
        padding: 18px 14px 22px;
    }

    .innovators-gallery-summary-title {
        font-size: 22px;
    }

    .innovators-gallery-summary-links a {
        font-size: 17px;
        min-width: 0;
        width: 100%;
    }
}

/* =============================================
   GALLERY CARDS
   ============================================= */
.gallery-cards {
    padding: 50px 0 60px;
    background-color: #Fff;
}

/* =============================================
   CATEGORIES ONE
   ============================================= */
.categories-one-page {
    background:
        radial-gradient(circle at top left, rgba(232, 219, 203, 0.7), transparent 34%),
        linear-gradient(180deg, #fcfaf6 0%, #f5efe6 100%);
}

.categories-one-page .container {
    position: relative;
}

.categories-one-hero {
    padding: 72px 0 56px;
}

.categories-one-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 44px;
    align-items: center;
}

.categories-one-eyebrow,
.categories-one-section-label,
.categories-one-sidebar-label,
.categories-one-story-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #b48655;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.categories-one-eyebrow::before,
.categories-one-section-label::before,
.categories-one-sidebar-label::before,
.categories-one-story-tag::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #b48655;
}

.categories-one-title {
    margin: 0;
    max-width: 720px;
    color: #5d3d1d;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.categories-one-intro,
.categories-one-section-text,
.categories-one-feature-text,
.categories-one-story-body p,
.categories-one-mini-card p,
.categories-one-focus-list li {
    color: #866648;
    font-size: 18px;
    line-height: 1.7;
}

.categories-one-intro {
    max-width: 620px;
    margin: 22px 0 0;
}

.categories-one-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.categories-one-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.categories-one-btn:hover {
    transform: translateY(-2px);
}

.categories-one-btn-primary {
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(133, 95, 57, 0.2);
}

.categories-one-btn-primary:hover {
    color: #fff;
}

.categories-one-btn-secondary {
    border: 1px solid #d9c3aa;
    background: rgba(255, 255, 255, 0.7);
    color: #805935;
}

.categories-one-btn-secondary:hover {
    color: #805935;
    background: #fff;
}

.categories-one-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.categories-one-metrics li {
    padding: 18px 20px;
    border: 1px solid rgba(184, 142, 99, 0.22);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
}

.categories-one-metrics strong {
    display: block;
    margin-bottom: 6px;
    color: #5d3d1d;
    font-size: 24px;
    font-weight: 600;
}

.categories-one-metrics span {
    color: #8e7051;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.categories-one-collage {
    position: relative;
    min-height: 540px;
}

.categories-one-collage-main,
.categories-one-collage-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(188, 155, 118, 0.22);
    background: #fff;
    box-shadow: 0 24px 60px rgba(109, 75, 42, 0.14);
}

.categories-one-collage-main {
    width: min(100%, 430px);
    border-radius: 34px;
}

.categories-one-collage-main img,
.categories-one-collage-card img,
.categories-one-story-media img,
.categories-one-mini-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-one-collage-main img {
    aspect-ratio: 4 / 5;
}

.categories-one-collage-card {
    position: absolute;
    width: 210px;
    border-radius: 24px;
}

.categories-one-collage-card img {
    aspect-ratio: 4 / 3;
}

.categories-one-collage-card-top {
    top: 28px;
    right: 0;
}

.categories-one-collage-card-bottom {
    right: 42px;
    bottom: 24px;
}

.categories-one-showcase,
.categories-one-editorial {
    padding: 24px 0 72px;
}

.categories-one-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: end;
    margin-bottom: 34px;
}

.categories-one-section-title,
.categories-one-feature-title {
    margin: 0;
    color: #5f411f;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.14;
    font-weight: 500;
}

.categories-one-section-text {
    margin: 0;
}

.categories-one-card-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 24px;
}

.categories-one-story-card,
.categories-one-feature-panel,
.categories-one-sidebar-card {
    border: 1px solid rgba(188, 155, 118, 0.2);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(120, 86, 52, 0.08);
}

.categories-one-story-card-featured {
    grid-row: span 2;
}

.categories-one-story-card-accent {
    background: linear-gradient(180deg, #fff 0%, #f6ede3 100%);
}

.categories-one-story-media {
    padding: 14px;
}

.categories-one-story-media img {
    border-radius: 20px;
    aspect-ratio: 1.12 / 1;
}

.categories-one-story-card-featured .categories-one-story-media img {
    aspect-ratio: 0.92 / 1;
}

.categories-one-story-body {
    padding: 8px 24px 26px;
}

.categories-one-story-tag {
    margin-bottom: 16px;
    font-size: 12px;
}

.categories-one-story-body h3,
.categories-one-mini-card h3,
.categories-one-sidebar-cta h3 {
    margin: 0;
    color: #5d3d1d;
    font-size: 29px;
    line-height: 1.16;
    font-weight: 500;
}

.categories-one-story-body p {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.7;
}

.categories-one-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #a37242;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.categories-one-inline-link::after {
    content: "\2192";
    transition: transform 0.2s ease;
}

.categories-one-inline-link:hover {
    color: #805935;
}

.categories-one-inline-link:hover::after {
    transform: translateX(3px);
}

.categories-one-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
    gap: 24px;
    align-items: start;
}

.categories-one-feature-panel {
    padding: 34px;
}

.categories-one-feature-copy {
    max-width: 760px;
}

.categories-one-feature-text {
    margin: 18px 0 0;
}

.categories-one-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.categories-one-mini-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border-radius: 22px;
    background: #fbf7f1;
}

.categories-one-mini-card img {
    border-radius: 16px;
    aspect-ratio: 1 / 1;
}

.categories-one-mini-card p {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.6;
}

.categories-one-sidebar {
    display: grid;
    gap: 20px;
}

.categories-one-sidebar-card {
    padding: 28px;
}

.categories-one-focus-list {
    margin: 0;
    padding-left: 18px;
}

.categories-one-focus-list li + li {
    margin-top: 12px;
}

.categories-one-sidebar-cta {
    background: linear-gradient(180deg, #fff 0%, #f2e5d6 100%);
}

.categories-one-sidebar-cta h3 {
    margin-bottom: 20px;
    font-size: 30px;
}

/* =============================================
   ETHICAL GOVERNANCE PAGE
   ============================================= */
.ethical-governance-page {
    background: #ffffff;
}

.ethical-governance-hero {
    position: relative;
    min-height: 245px;
    padding: 44px 0 50px;
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.92) 0%, rgba(255, 252, 248, 0.9) 100%),
        url('../img/ybs-laureates-hero-bg-2.png') center center / cover no-repeat;
    border-top: 1px solid rgba(170, 129, 87, 0.18);
    border-bottom: 1px solid rgba(170, 129, 87, 0.12);
    overflow: hidden;
}

.ethical-governance-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 252, 248, 0.78) 0%, rgba(255, 252, 248, 0.44) 22%, rgba(255, 252, 248, 0.44) 78%, rgba(255, 252, 248, 0.78) 100%);
    pointer-events: none;
}

.ethical-governance-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 62%);
    pointer-events: none;
}

.ethical-governance-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.ethical-governance-title {
    margin: 22px 0 14px;
    color: #9b6d3d;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.ethical-governance-quote,
.ethical-governance-author {
    margin: 0;
    color: #332f2a;
    font-size: clamp(18px, 2vw, 19px);
    line-height: 1.28;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.ethical-governance-author {
    margin-top: 4px;
}

.ethical-governance-about {
    padding: 76px 0 54px;
    background: #fff;
}

.ethical-governance-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 485px);
    gap: 66px;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

.ethical-governance-label {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 16px;
    color: #b38454;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

.ethical-governance-label::after {
    content: "";
    width: 122px;
    height: 8px;
    background:
        radial-gradient(circle at calc(100% - 3.5px) 50%, #a77a46 3.5px, transparent 4px),
        linear-gradient(#d3b18b, #d3b18b) 0 50% / calc(100% - 10px) 1px no-repeat;
}

.ethical-governance-heading {
    margin: 0 0 16px;
    color: #9f7140;
    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.ethical-governance-text {
    max-width: 610px;
    margin: 0;
    color: #987a59;
    font-size: 22px;
    line-height: 1.48;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.ethical-governance-media-card {
    position: relative;
    /* min-height: 286px; */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(111, 83, 51, 0.12);
}

.ethical-governance-media-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.ethical-governance-badge {
    position: absolute;
    right: 18px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 249, 242, 0.96);
    color: #b07c45;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    box-shadow: 0 10px 24px rgba(92, 66, 38, 0.12);
    z-index: 2;
}

.ethical-governance-pillars {
    padding: 68px 0 80px;
    background: #fff;
}

.ethical-governance-pillars-shell {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    align-items: center;
    gap: 26px;
    max-width: 1220px;
    margin: 0 auto;
}

.ethical-governance-pillars-arrow {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #cbb194;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(117, 88, 58, 0.12);
}

.ethical-governance-pillars-viewport {
    overflow: hidden;
}

.ethical-governance-pillars-track {
    display: flex;
    gap: 22px;
    will-change: transform;
}

.ethical-governance-pillar {
    position: relative;
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 0;
    padding: 0 26px;
    text-align: center;
}

.ethical-governance-pillar::after {
    content: "";
    position: absolute;
    top: 92px;
    height: 74px;
    width: 1px;
    background: #efe1d1;
}

.ethical-governance-pillar::after {
    right: 0;
}

.ethical-governance-pillar:last-child::after {
    display: none;
}

.ethical-governance-pillar-title {
    margin: 0;
    color: #b18453;
    font-size: clamp(28px, 2.8vw, 35px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.ethical-governance-pillar-divider {
    display: block;
    width: 100%;
    max-width: 272px;
    height: 10px;
    margin: 16px auto 16px;
    background:
        radial-gradient(circle at calc(100% - 4px) 50%, #b18453 3.5px, transparent 4px),
        radial-gradient(circle at 4px 50%, #b18453 3.5px, transparent 4px),
        linear-gradient(#d4b18b, #d4b18b) center 50% / calc(100% - 18px) 1px no-repeat;
}

.ethical-governance-pillar-text {
    margin: 0 auto;
    max-width: 320px;
    color: #a28565;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.ethical-governance-quote-section {
    padding: 16px 0 78px;
    background: #fff;
}

.ethical-governance-quote-heading {
    /* max-width: 1030px; */
    margin: 0 0 38px;
    color: #9c6e3d;
    font-size: clamp(36px, 4vw, 45px);
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.ethical-governance-quote-card {
    position: relative;
    padding: 56px 46px 42px;
    border: 1px solid #dcc7ab;
    border-radius: 26px;
    background: linear-gradient(180deg, #fefdf9 0%, #faf6ef 100%);
    overflow: hidden;
}

.ethical-governance-quote-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 252, 248, 0.1) 0%, rgba(255, 252, 248, 0.1) 44%, rgba(255, 252, 248, 0.1) 100%),
        url('../img/right-arrow.png') right -18px bottom -14px / 520px auto no-repeat;
    opacity: 0.34;
    pointer-events: none;
}

.ethical-governance-quote-copy,
.ethical-governance-quote-credit {
    position: relative;
    z-index: 1;
}

.ethical-governance-quote-copy {
    /* max-width: 1020px; */
    margin: 0 auto;
    color: #76532d;
    font-size: clamp(25px, 2.35vw, 25px);
    line-height: 1.45;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.04em;
}

.ethical-governance-quote-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 28px 0 0;
    color: #b38454;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

.ethical-governance-quote-credit::before,
.ethical-governance-quote-credit::after {
    content: "";
    width: 142px;
    height: 10px;
}

.ethical-governance-quote-credit::before {
    background:
        radial-gradient(circle at 4px 50%, #a87a47 3.5px, transparent 4px),
        linear-gradient(#d2b08c, #d2b08c) 100% 50% / calc(100% - 10px) 1px no-repeat;
}

.ethical-governance-quote-credit::after {
    background:
        radial-gradient(circle at calc(100% - 4px) 50%, #a87a47 3.5px, transparent 4px),
        linear-gradient(#d2b08c, #d2b08c) 0 50% / calc(100% - 10px) 1px no-repeat;
}

.ethical-governance-reflection-section {
    padding: 0 0 86px;
    background: #fff;
}

.ethical-governance-reflection-copy {
    margin-bottom: 42px;
}

.ethical-governance-reflection-copy p {
    margin: 0 0 6px;
    color: #a08261;
    font-size: 24px;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.ethical-governance-reflection-copy p:last-child {
    margin-bottom: 0;
}

.ethical-governance-slider-section {
    padding: 92px 0;
    background: #f7f2ea;
}

.ethical-governance-slider-shell {
    position: relative;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 44px;
}

.healthcare-story-viewport {
    overflow: hidden;
}

.healthcare-story-track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.healthcare-story-slide {
    flex: 0 0 100%;
}

.healthcare-story-quote {
    font-style: italic;
}

.ethical-governance-slider-card {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 450px);
    gap: 36px;
    align-items: center;
    padding: 16px 32px 18px;
    border: 1px solid #dcc7ac;
    border-radius: 26px;
    background: #fffdfa;
}

.ethical-governance-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #ccb092;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
}

.ethical-governance-slider-arrow-left {
    left: 0;
}

.ethical-governance-slider-arrow-right {
    right: 0;
}

.ethical-governance-slider-copy {
    padding: 12px 0 8px;
}

.ethical-governance-slider-label {
    display: inline-block;
    margin: 0 0 16px;
    padding-bottom: 10px;
    color: #8f6841;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 400;
    border-bottom: 2px solid #dbc6ad;
}

.ethical-governance-slider-label::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background: #af7c49;
    vertical-align: middle;
}

.ethical-governance-slider-title {
    margin: 0 0 18px;
    color: #9c6f3d;
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.ethical-governance-slider-text {
    max-width: 620px;
    margin: 0 0 28px;
    color: #9b8061;
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.ethical-governance-slider-quote {
    margin: 0 0 10px;
    color: #b09a82;
    font-size: 18px;
    line-height: 1.45;
    font-style: italic;
}

.ethical-governance-slider-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #b18453;
    font-size: 12px;
    line-height: 1;
}

.ethical-governance-slider-credit::after {
    content: "";
    width: 72px;
    height: 8px;
    background:
        radial-gradient(circle at calc(100% - 3.5px) 50%, #a87a47 3px, transparent 3.5px),
        linear-gradient(#d2b08c, #d2b08c) 0 50% / calc(100% - 10px) 1px no-repeat;
}

.ethical-governance-slider-media {
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.ethical-governance-slider-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transforming-fields-section {
    padding: 0 0 86px;
    background: #fff;
}

.transforming-fields-section .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.transforming-fields-shell {
    overflow: hidden;
    padding: 28px 32px 34px;
    background:
        linear-gradient(180deg, rgba(63, 44, 19, 0.28) 0%, rgba(63, 44, 19, 0.42) 100%),
        url("../img/preferces-bg.png") center center / cover no-repeat;
}

.transforming-fields-slider {
    position: relative;
    min-height: 236px;
}

.transforming-fields-viewport {
    width: min(73%, 1180px);
    margin-left: auto;
    overflow: hidden;
}

.transforming-fields-track {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    will-change: transform;
}

.transforming-field-card {
    flex: 0 0 calc((100% - 24px) / 3);
    min-height: 220px;
    padding: 18px 22px 18px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(48, 31, 14, 0.08);
}

.transforming-field-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #b88a55;
    color: #fff;
    font-size: 18px;
}

.transforming-field-title {
    margin: 14px 0 8px;
    color: #7d5630;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.transforming-field-list {
    margin: 0;
    padding-left: 18px;
    color: #9b7e61;
    font-size: 14px;
    line-height: 1.45;
}

.transforming-field-list li + li {
    margin-top: 2px;
}

.transforming-fields-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 42px;
}

.transforming-fields-heading {
    /* max-width: 760px; */
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 45px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.transforming-fields-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    padding: 16px 20px;
    border-radius: 4px;
    background: #fff;
    color: #b07c47;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.transforming-fields-button:hover {
    background: #f7efe4;
    color: #9a6a39;
}

.transforming-why-section {
    padding: 48px 0 86px;
    background: #fff;
}

.transforming-why-heading {
    /* max-width: 860px; */
    margin: 0 0 22px;
    color: #9c6f3d;
    font-size: clamp(34px, 3.4vw, 40px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.05em;
}



.transforming-why-copy p {
    margin: 0 0 22px;
    color: #a08261;
    font-size: 19px;
    line-height: 1.52;
    letter-spacing: -0.02em;
}

.transforming-why-copy p:last-child {
    margin-bottom: 0;
}

.healthcare-preference-section .transforming-fields-shell {
    background:
        linear-gradient(180deg, rgba(63, 44, 19, 0.28) 0%, rgba(63, 44, 19, 0.42) 100%),
        url("../img/bg-health.png") center center / cover no-repeat;
}

.healthcare-why-section {
    padding: 44px 0 72px;
    background: #fff;
}

.healthcare-why-section .container {
    max-width: 1240px;
}

.healthcare-why-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 508px);
    gap: 42px;
    align-items: start;
    margin-bottom: 34px;
}

.healthcare-why-intro {
    max-width: 560px;
}

.healthcare-why-heading {
    max-width: 520px;
    margin: 0 0 16px;
    color: #9c6f3d;
    font-size: clamp(30px, 2.9vw, 38px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.healthcare-why-intro-copy,
.healthcare-why-copy p {
    max-width: 560px;
    margin: 0 0 18px;
    color: #a08261;
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.healthcare-why-intro-copy {
    margin-bottom: 0;
}

.healthcare-why-copy {
    max-width: 1120px;
}

.healthcare-why-copy p {
    max-width: none;
}

.healthcare-why-copy p:last-child {
    margin-bottom: 0;
}

.healthcare-why-media {
    position: sticky;
    top: 18px;
}

.healthcare-why-image {
    display: block;
    width: 100%;
    border-radius: 4px;
    max-width: 508px;
    margin-left: auto;
    object-fit: cover;
}

.healthcare-cost-section {
    padding: 20px 0 86px;
    background: #fff;
}

.healthcare-cost-label {
    margin: 0 0 6px;
    color: #b18453;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.healthcare-cost-heading {
    margin: 0 0 18px;
    color: #9c6f3d;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.healthcare-cost-copy {
    max-width: 1040px;
}

.healthcare-cost-copy p {
    margin: 0 0 18px;
    color: #a08261;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.healthcare-cost-quote-card {
    margin: 10px 0 18px;
    padding: 28px 30px;
    border: 1px solid #dcc7ab;
    border-radius: 20px;
    background: linear-gradient(180deg, #fefdf9 0%, #faf6ef 100%);
}

.healthcare-cost-quote {
    margin: 0 0 10px;
    color: #7f5b34;
    font-size: 23px;
    line-height: 1.5;
    font-style: italic;
    letter-spacing: -0.02em;
}

.healthcare-cost-attribution {
    margin: 0;
    color: #b18453;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.healthcare-cost-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.healthcare-cost-card {
    display: block;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.healthcare-cost-copy-block {
    padding: 0;
}



/* =============================================
   NEWS & EVENTS
   ============================================= */
.news-press-section {
    padding: 56px 0 72px;
    background: #fff;
    overflow: hidden;
}

.news-press-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.news-press-copy {
    max-width: 520px;
}

.news-press-label {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0 0 18px;
    color: #d1ac86;
    font-size: 24px;
    font-weight: 300;
}

.news-press-label::before {
    content: "";
    width: 52px;
    height: 1px;
    background: #a37948;
    margin-left: 10px;
    order: 2;
}

.news-press-label::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a37948;
    margin-left: -6px;
    display: inline-block;
    flex: 0 0 7px;
    order: 3;
}

.news-press-title {
    margin: 0;
    color: #9a6d3b;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.news-search-form {
    width: min(100%, 375px);
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #c7a27a;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.news-search-input {
    flex: 1;
    border: none;
    background: transparent;
    color: #9a6d3b;
    font-size: 22px;
    padding: 0;
    outline: none;
}

.news-search-input::placeholder {
    color: #b58a5f;
}

.news-search-button {
    border: none;
    background: transparent;
    color: #b58a5f;
    padding: 0;
    font-size: 18px;
}

.news-slider-shell {
    position: relative;
}

.news-slider-viewport {
    overflow: hidden;
    scrollbar-width: none;
}

.news-slider-viewport::-webkit-scrollbar {
    display: none;
}

.news-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.news-card {
    flex: 0 0 calc((100% - 20px) / 2.7);
    border: 1px solid #e9ddd0;
    border-radius: 10px;
    background: #F8F7F2;
    overflow: hidden;
}

.news-card-media {
    position: relative;
    padding: 14px 14px 0;
}

.news-card-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.news-card-date {
    position: absolute;
    left: 22px;
    top: 30px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 18px;
    border-radius: 999px;
    background: #fff;
    color: #b07d4b;
    font-size: 18px;
    font-weight: 400;
}

.news-card-body {
    padding: 12px 18px 24px;
    min-height: 150px;
}

.news-card-title {
    margin: 0;
    color: #7a5633;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 400;
}

.news-card-footer {
    padding: 14px 20px;
    text-align: center;
    background: #f4eee6;
}

.news-card-link {
    color: #9a6d3b;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.news-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(154, 109, 59, 0.92);
    color: #fff;
    box-shadow: 0 10px 22px rgba(122, 86, 51, 0.18);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.news-slider-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: #7a5633;
}

.news-slider-prev {
    left: -22px;
}

.news-slider-next {
    right: -22px;
}

.related-news-section {
    padding: 10px 0 72px;
    background: #fff;
    overflow: hidden;
}

.related-news-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 30px;
}

.related-news-heading-group {
    display: flex;
    align-items: center;
    gap: 26px;
    flex: 1;
    min-width: 0;
}

.related-news-title {
    margin: 0;
    color: #8f6438;
    font-size: 38px;
    font-weight: 500;
    white-space: nowrap;
}

.related-news-line {
    flex: 1;
    height: 1px;
    background: #dcc5ac;
    margin-top: 4px;
}

.related-news-arrows {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.related-news-arrow {
    position: static;
    transform: none;
    width: 48px;
    height: 48px;
    background: #eadfce;
    color: #fff;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.related-news-arrow:hover {
    transform: scale(1.05);
    background: #d9c3aa;
}

.related-news-arrow-active {
    background: #c5a37a;
}

.related-news-slider .news-slider-track {
    gap: 18px;
}

.related-news-card {
    flex: 0 0 calc((100% - 36px) / 3.5);
    background: #faf6f0;
    border-color: #eadfd1;
    min-height: 300px;
}

.related-news-card-inner {
    padding: 28px 28px 32px;
}

.related-news-date {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #c9a47d;
    color: #b58452;
    font-size: 16px;
    line-height: 1.2;
}

.related-news-card-title {
    margin: 0 0 16px;
    color: #7a5633;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 400;
}

.related-news-card-text {
    margin: 0;
    color: #9f7e5d;
    font-size: 18px;
    line-height: 1.45;
}

/* =============================================
   NEWS DETAIL
   ============================================= */
.news-detail-section {
    padding: 48px 0 24px;
    background: #fff;
}

.news-detail-article {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    background: #f6f1e8;
}

.news-detail-image {
    display: block;
    width: 100%;
    height: auto;
}

.news-detail-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #fff;
    color: #b07d4b;
    font-size: 12px;
    line-height: 1;
}

.news-detail-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 44px 18px 18px;
    background: linear-gradient(180deg, rgba(18, 10, 0, 0) 0%, rgba(18, 10, 0, 0.78) 100%);
}

.news-detail-hero-title {
    margin: 0;
    max-width: 560px;
    color: #fff;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 500;
}

.news-detail-body {
    color: #9a7a59;
    font-size: 20px;
    line-height: 1.65;
    text-align: justify;
}

.news-detail-body p {
    margin: 0 0 14px;
}

.news-detail-profile {
    margin-top: 26px;
}

.news-detail-profile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.news-detail-profile-title {
    margin: 0;
    color: #9a6d3b;
    font-size: 18px;
    font-weight: 500;
}

.news-detail-profile-link {
    color: #c6a078;
    text-decoration: none;
    font-size: 12px;
}

.news-detail-profile-list {
    border-top: 1px solid #efe2d4;
}

.news-detail-profile-card {
    border-bottom: 1px solid #efe2d4;
}

.news-detail-profile-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border: 0;
    background: transparent;
    color: #8a6440;
    text-align: left;
    font-size: 20px;
    cursor: pointer;
}

.news-detail-profile-item i {
    width: 25px;
    height: 25px;
    border: 1px solid #ead7c4;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #c39a72;
    transition: transform 0.3s ease;
}

.news-detail-profile-panel {
    display: none;
    padding: 0 0 18px;
}

.news-detail-profile-panel-inner {
    max-width: 980px;
    color: #9a7a59;
    font-size: 16px;
    line-height: 1.7;
}

.news-detail-profile-panel-inner p {
    margin: 0 0 10px;
}

.news-detail-profile-card.is-open .news-detail-profile-panel {
    display: block;
}

.news-detail-profile-card.is-open .news-detail-profile-item i {
    transform: rotate(180deg);
}

.news-detail-gallery {
    margin-top: 28px;
    overflow: visible;
}

.news-detail-gallery-card {
    margin: 0;
    position: relative;
    height: 100%;
    padding: 12px 12px 18px;
    background: #fcfaf7;
}

.news-detail-gallery-media {
    position: relative;
}

.news-detail-gallery-image {
    display: block;
    width: 100%;
    height: 248px;
    object-fit: cover;
    border-radius: 8px;
}

.news-detail-gallery-card figcaption {
    margin-top: 10px;
    padding-right: 50px;
    color: #7a5633;
    font-size: 18px;
    line-height: 1.45;
}

.news-detail-gallery-slide {
    background: #fcfaf7;
}

.news-detail-gallery-slider {
    padding: 0 28px;
}

.news-detail-gallery-track {
    gap: 14px;
}

.news-detail-gallery-arrow {
    width: 46px;
    height: 46px;
    background: #d6b590;
    color: #fff;
}

.news-detail-gallery-arrow:hover {
    background: #9a6d3b;
}

.news-detail-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
    padding-top: 14px;
    border-top: 1px solid #efe2d4;
    color: #c6a078;
    font-size: 11px;
}

.news-detail-nav-link,
.news-detail-nav-current {
    color: #c6a078;
    text-decoration: none;
    font-size: 16px;
}

.news-detail-page .related-news-section {
    padding-top: 22px;
}

.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.gallery-card-footer {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.gallery-card-title {
    background: linear-gradient(90deg, #A37948 0%, #3D2D1B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    font-family: 'Neue Montreal', sans-serif;
}

.view-all-link {
    color: #A37948;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #A58059;
}

/* =============================================
   GALLERY DETAIL GRID
   ============================================= */
.gallery-detail-section {
    padding: 56px 0 72px;
    background-color: #fff;
}

.gallery-detail-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: #1f1710;
    box-shadow: 0 12px 32px rgba(42, 28, 12, 0.12);
    height: 100%;
}

.gallery-detail-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-detail-card:hover .gallery-detail-img {
    transform: scale(1.03);
}

.gallery-zoom-btn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(61, 45, 27, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-zoom-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 24px rgba(61, 45, 27, 0.4);
}

.gallery-zoom-btn i {
    font-size: 13px;
}

.gallery-zoom-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-zoom-stage {
    width: 100%;
    max-width: 960px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 70px;
    position: relative;
}

.gallery-zoom-preview {
    width: auto;
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 16px;
}

.gallery-zoom-close {
    position: absolute;
    top: 44px;
    right: 90px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 121, 72, 0.88);
    color: #fff;
    z-index: 2;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #fff;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-nav-btn:hover {
    opacity: 0.85;
    transform: translateY(-50%) scale(1.06);
}

.gallery-nav-prev {
    left: 12px;
}

.gallery-nav-next {
    right: 12px;
}

.gallery-zoom-modal .modal-dialog {
    max-width: 1180px;
    padding: 12px;
}

.gallery-zoom-modal {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.gallery-zoom-modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story-section {
    padding: 48px 0 40px;
    background: #fff;
}

.about-hero-card {
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 36px;
    background: url('../img/about-cards.png') no-repeat right center;
    background-size: cover;
    position: relative;
    min-height: 280px;
    box-shadow: 0 4px 24px rgba(163, 121, 72, 0.10);
}

.about-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right,
        rgba(252, 247, 238, 1.0) 0%,
        rgba(252, 247, 238, 0.96) 35%,
        rgba(252, 247, 238, 0.55) 62%,
        rgba(252, 247, 238, 0.0) 100%); */
    pointer-events: none;
    z-index: 0;
}

.about-hero-inner {
    display: flex;
    align-items: stretch;
    min-height: 280px;
    position: relative;
    z-index: 1;
}

.about-hero-text {
    flex: 1;
    padding: 85px 48px 70px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-quote {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 18px;
    background: linear-gradient(90deg, #A37948 0%, #3D2D1B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-attr {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9a7a59;
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 12px;
}

.about-hero-attr span {
    white-space: nowrap;
}

/* .about-hero-attr::after {
    content: '→';
    font-size: 14px;
    color: #9a7a59;
    display: inline-block;
    padding-left: 4px;
} */

.about-hero-attr-line {
    display: inline-block;
    flex: 0 0 48px;
    width: 48px;
    height: 8px;
    background:
        radial-gradient(circle at calc(100% - 10px) 50%, #a07850 3px, transparent 3.5px),
        linear-gradient(#c4a07a, #c4a07a) 0 50% / calc(100% - 12px) 1px no-repeat;
}

.about-hero-sub {
    color: #8d6d4c;
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
    max-width: 400px;
}


.about-copy {
    max-width: 100%;
}

.about-copy p {
    margin: 0 0 14px;
    color: #7a5c3e;
    font-size: 22px;
    line-height: 1.75;
}

.about-copy p strong {
    color: #5a3d1e;
    font-weight: 600;
}

.about-quote-card {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 40px 0 32px;
    padding: 36px 32px 36px 44px;
    border-radius: 16px;
    background: #fdf8f0;
    border: 1px solid #e8d8bf;
    box-shadow: 0 2px 18px rgba(163, 121, 72, 0.08);
    overflow: visible;
    position: relative;
    margin-bottom: 88px;
}

/* .about-quote-card::after {
    content: '\201C';
    position: absolute;
    right: 260px;
    top: -10px;
    font-size: 240px;
    color: rgba(196, 165, 120, 0.10);
    font-family: Georgia, serif;
    line-height: 0.85;
    pointer-events: none;
    z-index: 0;
    user-select: none;
} */

.about-quote-copy {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.about-quote-text {
    margin: 0 0 14px;
    color: #7a5430;
    font-size: 35px;
    line-height: 1.45;
    font-weight: 600;
    font-style: normal;
}

.about-quote-author {
    display: block;
    color: #9a7856;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 6px;
}

.about-quote-author-line {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin-top: 8px;
}

.about-quote-author-line::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a07850;
    flex-shrink: 0;
}

.about-quote-author-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #c4a07a;
    margin-left: 0;
}

.about-quote-visual {
    flex: 0 0 260px;
    width: 260px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: -120px;
    padding-right: 8px;
    margin-right: 130px;
}

.about-quote-visual::before {
    content: '';
    position: absolute;
    top: 44%;
    left: -131px;
    transform: translateY(-50%);
    width: 536px;
    height: 247px;
    background: url(../img/right-arrow.png) no-repeat center center;
    background-size: contain;
    z-index: -1;
    opacity: 1;
    pointer-events: none;
}

/* .about-quote-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    transform: rotate(3deg);
    transform-origin: bottom center;
    box-shadow: 0 14px 40px rgba(61, 45, 27, 0.20);
    border: 8px solid #fff;
    position: relative;
    z-index: 1;
} */

.about-copy-end p {
    margin-bottom: 0;
}

.about-categories-section {
    padding: 85px 0 85px;
    background: #fff;
}

.page-home .about-categories-section {
    position: relative;
    background-image: url('../img/bg-categories.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    isolation: isolate;
}

.page-home .about-categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(251, 247, 241, 0.4);
    z-index: 0;
    pointer-events: none;
}

.page-home .about-categories-section .container {
    position: relative;
    z-index: 1;
}

.about-categories-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #b08a5e;
    font-size: 13px;
    letter-spacing: 0.08em;
    margin: 0 0 14px;
}

.about-categories-label::before {
    content: '';
    flex-shrink: 0;
    width: 64px;
    height: 8px;
    background:
        radial-gradient(circle at 10.5px 50%, #a07850 3.5px, transparent 4px),
        linear-gradient(#c4a07a, #c4a07a) 14px 50% / calc(100% - 14px) 1px no-repeat;
}

.about-categories-label::after {
    content: '';
    flex-shrink: 0;
    width: 64px;
    height: 8px;
    background:
        radial-gradient(circle at calc(100% - 10.5px) 50%, #a07850 3.5px, transparent 4px),
        linear-gradient(#c4a07a, #c4a07a) 0 50% / calc(100% - 14px) 1px no-repeat;
}

.about-categories-title {
    text-align: center;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    max-width: 560px;
    margin: 0 auto 32px;
    background: linear-gradient(90deg, #A37948 0%, #3D2D1B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-category-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    padding: 8px;
    min-height: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 24px rgba(42, 27, 17, 0.14);
}

.about-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(42, 27, 17, 0.22);
}

.about-category-card:hover .about-category-img {
    transform: scale(1.04);
}

.about-category-img {
    width: 100%;
    height: 364px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 8px;
    transition: transform 0.35s ease;
}

.about-category-card::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(12, 8, 2, 0.0) 35%, rgba(12, 8, 2, 0.75) 100%);
    pointer-events: none;
    z-index: 0;
}

.about-category-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
}

.about-category-overlay span {
    display: block;
    color: rgba(255, 255, 255, 0.80);
    font-size: 11px;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    font-weight: 400;
}

.about-category-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

/* =============================================
   CEREMONY SECTION (nomination-process.php)
   ============================================= */
.ceremony-section {
    padding: 64px 0 0;
    background: #fff;
}

.ceremony-heading {
    text-align: center;
    margin-bottom: 40px;
}

.ceremony-sub {
    color: #9a8878;
    font-size: 12px;
    letter-spacing: 0.02em;
    margin: 0 0 14px;
}

.ceremony-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    background: linear-gradient(90deg, #A37948 0%, #3D2D1B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceremony-card {
    display: flex;
    min-height: 400px;
    overflow: hidden;
    height: 100%;
}

.ceremony-card-left {
    flex: 0 0 56%;
    background: #ede8db;
    padding: 28px 20px 26px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ceremony-card-right {
    flex: 0 0 44%;
    background: #8aada5;
    position: relative;
    overflow: hidden;
}

.ceremony-card-right img {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ceremony-card-desc {
    color: #8a8070;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

.ceremony-card-bottom {
    margin-top: auto;
    padding-top: 20px;
}

.ceremony-card-title {
    font-size: 30px;
    font-weight: 400;
    color: #a07848;
    margin: 0 0 10px;
    line-height: 1.15;
}

.ceremony-card-line {
    display: block;
    width: 56px;
    height: 8px;
    background:
        radial-gradient(circle at calc(100% - 3.5px) 50%, #a07850 3.5px, transparent 4px),
        linear-gradient(#c4a07a, #c4a07a) 0 50% / calc(100% - 10px) 1px no-repeat;
}

/* Home page 2-col ceremony heading */
.home-ceremony-heading {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-bottom: 48px;
}

.home-ceremony-left {
    flex: 0 0 46%;
}

.home-ceremony-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.home-ceremony-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b58a62;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.home-ceremony-label-line {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: #b58a62;
    position: relative;
    flex-shrink: 0;
}

.home-ceremony-label-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b58a62;
}

.home-ceremony-heading .ceremony-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.18;
    color: #8f6438;
    background: none;
    -webkit-text-fill-color: initial;
    margin: 0;
}

.home-ceremony-right .ceremony-sub {
    color: #9a8878;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
    text-align: left;
}

@media (max-width: 991px) {
    .home-ceremony-heading .ceremony-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .home-ceremony-heading {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 28px;
    }
    .home-ceremony-left,
    .home-ceremony-right {
        flex: none;
        width: 100%;
    }
    .home-ceremony-heading .ceremony-title {
        font-size: 28px;
    }
}

/* Responsive - Ceremony */
@media (max-width: 768px) {
    .ceremony-title {
        font-size: 26px;
    }
    .ceremony-card {
        min-height: 280px;
    }
    .ceremony-card-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .ceremony-section {
        padding: 40px 0 0;
    }
    .ceremony-title {
        font-size: 22px;
    }
    .ceremony-card {
        min-height: 220px;
    }
    .ceremony-card-left {
        padding: 18px 14px 18px 18px;
    }
    .ceremony-card-desc {
        font-size: 12px;
    }
    .ceremony-card-title {
        font-size: 16px;
    }
}

/* =============================================
   CRITERIA LIST SECTION (nomination-process.php)
   ============================================= */
.criteria-list-section {
    padding: 60px 0 50px;
    background: #fff;
    border-bottom: 1px solid #e8dece;
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.criteria-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 16px;
    font-size: 20px;
    color: #5a4a3a;
    line-height: 1.75;
}

.criteria-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c4a060;
}

.criteria-note {
    font-size: 20px;
    color: #5a4a3a;
    line-height: 1.75;
    margin: 0;
}

.criteria-note strong {
    color: #3D2D1B;
}

/* =============================================
   ELIGIBILITY SECTION (nomination-process.php)
   ============================================= */
.eligibility-section {
    padding: 80px 0;
    background: #F8F7F2;
    margin-top:80px;
}

.eligibility-intro {
    color: #A58059;
    line-height: 1.55;
    margin: 0 0 18px;
}

.eligibility-intro-arrow {
    color: #a07848;
    font-size: 14px;
    margin-left: 2px;
}

.eligibility-heading {
    font-size: 34px;
    font-weight: 700;
    color: #A58059;
    margin: 0 0 22px;
    line-height: 1.15;
}

.eligibility-text {
    color: #A58059;
    line-height: 1.75;
    margin: 0 0 14px;
}

.eligibility-text:last-child {
    margin-bottom: 0;
}

.eligibility-card {
    background: #ede8db;
    border-radius: 12px;
    padding: 28px 22px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.eligibility-card-icon {
    width: 46px;
    height: 46px;
    background: #c8bfaa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.eligibility-card-icon i {
    font-size: 18px;
    color: #7a5a30;
}

.eligibility-card-title {
    font-size: 26px;
    font-weight: 400;
    color: #3D2D1B;
    margin: 0 0 10px;
    line-height: 1.2;
}

.eligibility-card-desc {
    color: #8a7a6a;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .eligibility-section {
        padding: 60px 0;
    }
    .eligibility-heading {
        font-size: 26px;
    }
    .eligibility-card-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .eligibility-section {
        padding: 40px 0;
    }
    .eligibility-heading {
        font-size: 22px;
    }
    .eligibility-card {
        padding: 20px 16px 18px;
    }
    .eligibility-card-title {
        font-size: 18px;
    }
}

.about-cta-section {
    padding: 0 0 60px;
    background: #fff;
}

.about-cta-card {
    text-align: center;
    border-radius: 14px;
    padding: 48px 24px 40px;
    background: url('../img/contact-bg-cta.png') no-repeat center center;
    background-size: cover;
    border: 1px solid #ecddc8;
    box-shadow: 0 4px 24px rgba(163, 121, 72, 0.08);
    margin-bottom: 80px;
    /* margin-top: 50px; */
}

.about-cta-small {
    margin: 0 0 10px;
    color: #c5a27a;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.about-cta-card h2 {
    margin: 0 0 20px;
    color: #7a5633;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 6px;
    padding: 0 28px;
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #3D2D1B;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.25s ease, transform 0.2s ease;
}

.about-cta-btn:hover {
    opacity: 0.88;
    color: #3D2D1B;
    transform: translateY(-1px);
}

/* =============================================
   CONTACT SUBSCRIBE CARD
   ============================================= */
.contact-subscribe-section {
    padding: 44px 0 165px;
    background: #fff;
}

.contact-subscribe-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0px 50px;
    border-radius: 24px;
    background: #F8F7F2;
    overflow: visible;
}

.contact-subscribe-card::before {
    content: "";
    position: absolute;
    right: 83px;
    bottom: 0;
    width: 620px;
    height: 263px;
    background: url(../img/message-icon.png) no-repeat center;
    background-size: contain;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.contact-subscribe-card::after {
    content: none;
}

.contact-subscribe-copy,
.contact-subscribe-visual {
    position: relative;
    z-index: 1;
}

.contact-subscribe-visual {
    z-index: 2;
}

.contact-subscribe-copy {
    width: min(100%, 520px);
}

.contact-subscribe-title {
    margin: 0 0 18px;
    color: #7a5633;
    font-size: 35px;
    line-height: 1.18;
    font-weight: 500;
}

.contact-subscribe-text {
    margin: 0 0 26px;
    max-width: 420px;
    color: #9f7d5b;
    font-size: 16px;
    line-height: 1.6;
}

.contact-subscribe-form {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 430px;
    border-bottom: 1px solid #b48a62;
    padding-bottom: 8px;
}

.contact-subscribe-input {
    flex: 1;
    border: none;
    background: transparent;
    color: #8a6440;
    font-size: 16px;
    padding: 0;
    outline: none;
}

.contact-subscribe-input::placeholder {
    color: #b18861;
}

.contact-subscribe-button {
    border: none;
    background: transparent;
    color: #8a6440;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    white-space: nowrap;
}

.contact-subscribe-visual {
    width: 290px;
    flex: 0 0 290px;
    margin-right: 24px;
}

.contact-subscribe-photo-frame {
    position: relative;
    padding: 12px;
    border-radius: 16px;
    transform: rotate(-2deg);
}

.contact-subscribe-photo {
    display: block;
    /* width: 150%; */
    height: auto;
    border-radius: 12px;
    position: relative;
    right: 125px;
    bottom: -50px;
}

/* =============================================
   CONTACT / MAP + FORM SECTION
   ============================================= */
.contact-section {
    padding: 60px 0;
    padding-bottom: 130px;
    background-color: #fff;
}

.contact-page .contact-section {
    padding-bottom: 60px;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    height: 100%;
    min-height: 400px;
    display: block;
}

.contact-form-wrapper {
    padding: 0 0 0 40px;
    background: none;
    box-shadow: none;
}

.contact-form-label {
    color: #A37948;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

/* .contact-form-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #4E381E;
} */

.contact-form-title {
    background: linear-gradient(90deg, #A37948 0%, #3D2D1B 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.4;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #4E381E;
    border-radius: 0;
    padding: 10px 0;
    font-size: 16px;
    background: transparent;
    box-shadow: none;
    transition: border-color 0.3s ease;
    color: #4E381E;
}

.contact-form .form-control:focus {
    border-bottom-color: #A58059;
    box-shadow: none;
    outline: none;
    background: transparent;
}

.contact-form .form-control::placeholder {
    color: #4E381E;
    font-size: 16px;
}

.submit-btn {
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #3D2D1B;
    border: none;
    padding: 12px 48px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 6px;
}

.submit-btn:hover {
    opacity: 0.88;
}

/* =============================================
   FOOTER
   ============================================= */
.main-footer {
    position: relative;
    background: #fbf8f2;
    padding: 28px 0 0;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    overflow: visible;
    margin-top: 0;
}

.main-footer::before {
    content: "";
    position: absolute;
    left: -6px;
    bottom: -2px;
    width: 560px;
    height: 203px;
    background: url('../img/YBS-EmailSign 1.png') no-repeat left bottom;
    background-size: 100% 100%;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    position: relative;
    min-height: 114px;
    padding: 0 32px;
    padding-bottom: 0;
}

.footer-logo {
    position: absolute;
    left: 32px;
    top: -56px;
    width: 112px;
    margin: 0;
    /* padding: 12px 12px 10px; */
    /* border: 1px solid #c99b6a; */
    background: #fffdfa;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-nav {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 4px;
    padding-left: 176px;
}

.footer-link {
    color: #4e381e;
    text-decoration: none;
    font-family: 'Neue Haas Display', 'Neue Montreal', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #a58059;
}

.footer-social-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding: 0 32px 0 0;
}

.social-text {
    margin-right: 12px;
    color: #4e381e;
    font-family: 'Neue Haas Display', 'Neue Montreal', sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    white-space: nowrap;
}

.social-icon {
    width: 31px;
    height: 31px;
    border: 1px solid #a58059;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a58059;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease;
    font-size: 14px;
}

.social-icon:hover {
    background-color: #a58059;
    color: #fff;
}

.footer-copyright {
    margin-top: 16px;
    padding: 11px 0 14px;
    border-top: 1px solid rgba(78, 56, 30, 0.18);
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: #4e381e;
    font-family: 'Neue Haas Display', 'Neue Montreal', sans-serif;
    font-size: 14px;
    line-height: 18px;
}

.footer-copyright strong {
    font-weight: 400;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .navigation-links {
        gap: 18px;
    }
    .navigation-links .nav-link {
        font-size: 13px;
    }
    .register-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    .main-footer {
        padding: 34px 0 26px;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }
    .main-footer::before {
        width: 420px;
        height: 152px;
        left: -18px;
        bottom: -4px;
    }
    .footer-main {
        min-height: 0;
        padding: 0;
    }
    .footer-logo {
        position: static;
        width: 108px;
        margin: 0 auto 24px;
        padding: 12px 12px 10px;
    }
    .footer-logo img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .footer-nav {
        padding-left: 0;
        gap: 14px 20px;
        padding-top: 0;
        justify-content: center;
    }
    .footer-social-row {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 24px;
        padding: 0;
        padding-right: 0;
    }
    .social-text {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    .contact-subscribe-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
        gap: 24px;
    }
    .contact-subscribe-card::after {
        right: 20px;
        width: 180px;
        height: 110px;
    }
    .contact-subscribe-visual {
        width: min(100%, 290px);
        flex-basis: auto;
        margin-right: 0;
        align-self: center;
    }
    .news-press-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .news-search-form {
        width: min(100%, 460px);
    }
    .news-card {
        flex-basis: calc((100% - 20px) / 2);
    }
    .news-card-title {
        font-size: 24px;
    }
    .news-slider-prev {
        left: -10px;
    }
    .news-slider-next {
        right: -10px;
    }
    .related-news-card {
        flex-basis: calc((100% - 18px) / 2);
    }
    .related-news-card-title {
        font-size: 28px;
    }
    .news-detail-article {
        max-width: 100%;
    }
    .about-categories-title {
        font-size: 25px;
    }
    .about-category-overlay h3 {
        font-size: 14px;
    }
    .about-cta-card h2 {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding-top: 10px;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 12px rgba(122, 86, 51, 0.10);
    }
    .header-top-row {
        align-items: center;
        min-height: 64px;
    }
    .logo-container {
        position: static;
        top: auto;
    }
    .logo-img {
        height: 64px;
    }
    .menu-toggle {
        display: inline-flex;
    }
    .header-nav-shell {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-top: 12px;
        padding: 18px 16px 20px;
        border: 1px solid #eadfce;
        border-radius: 16px;
        background: #fffaf3;
        box-shadow: 0 18px 40px rgba(122, 86, 51, 0.08);
    }
    .main-header.is-menu-open .header-nav-shell {
        display: flex;
    }
    .navigation-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 0;
    }
    .navigation-links .nav-link {
        font-size: 15px;
    }
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown-menu {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        min-width: 0;
        margin-top: 8px;
        box-shadow: none;
    }
    .nav-dropdown-item {
        font-size: 14px;
    }
    .register-btn-wrap {
        width: 100%;
    }
    .register-btn {
        width: 100%;
    }
    .gallery-title {
        font-size: 32px;
    }
    .ethical-governance-hero {
        min-height: 220px;
        padding: 34px 0 40px;
    }
    .ethical-governance-title {
        margin-top: 12px;
        font-size: 38px;
    }
    .ethical-governance-quote,
    .ethical-governance-author {
        font-size: 18px;
    }
    .ethical-governance-about {
        padding: 52px 0 34px;
    }
    .ethical-governance-about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .ethical-governance-heading {
        font-size: 42px;
    }
    .ethical-governance-text {
        max-width: none;
        font-size: 18px;
    }
    .ethical-governance-media-card {
        max-width: 620px;
        min-height: 300px;
    }
    .ethical-governance-pillars {
        padding: 52px 0 62px;
    }
    .ethical-governance-pillars-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .ethical-governance-pillars-arrow {
        display: none;
    }
    .ethical-governance-pillars-viewport {
        overflow: visible;
    }
    .ethical-governance-pillars-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 26px;
        transform: none !important;
    }
    .ethical-governance-pillars {
        display: none;
    }
    .ethical-governance-pillar {
        flex: 1 1 auto;
        padding: 0;
    }
    .ethical-governance-pillar::after {
        display: none;
    }
    .ethical-governance-pillar-title {
        font-size: 34px;
    }
    .ethical-governance-pillar-text {
        max-width: 520px;
        font-size: 17px;
    }
    .ethical-governance-quote-section {
        padding: 6px 0 56px;
    }
    .ethical-governance-quote-heading {
        margin-bottom: 26px;
        font-size: 40px;
    }
    .ethical-governance-quote-card {
        padding: 40px 28px 30px;
        border-radius: 22px;
    }
    .ethical-governance-quote-bg {
        background-position: 78% center;
        opacity: 0.46;
    }
    .ethical-governance-quote-copy {
        font-size: 22px;
    }
    .ethical-governance-quote-credit {
        gap: 14px;
        font-size: 16px;
    }
    .ethical-governance-quote-credit::before,
    .ethical-governance-quote-credit::after {
        width: 92px;
    }
    .ethical-governance-reflection-section {
        padding: 0 0 62px;
    }
    .ethical-governance-reflection-copy {
        margin-bottom: 28px;
    }
    .ethical-governance-reflection-copy p {
        font-size: 19px;
        line-height: 1.6;
    }
    .ethical-governance-slider-section {
        padding: 0 0 64px;
    }
    .ethical-governance-slider-shell {
        padding: 0 44px;
    }
    .ethical-governance-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    .ethical-governance-slider-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 20px;
    }
    .ethical-governance-slider-title {
        font-size: 36px;
    }
    .ethical-governance-slider-text {
        max-width: none;
        font-size: 17px;
    }
    .ethical-governance-slider-media {
        min-height: 320px;
    }
    .transforming-fields-section {
        padding: 0 0 64px;
    }
    .transforming-fields-shell {
        padding: 22px 20px 24px;
    }
    .transforming-fields-slider {
        min-height: 0;
    }
    .transforming-fields-viewport {
        width: 100%;
        overflow: visible;
    }
    .transforming-fields-track {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        transform: none !important;
    }
    .transforming-field-card {
        flex: 1 1 auto;
        min-height: 0;
    }
    .transforming-fields-footer {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 28px;
    }
    .transforming-fields-heading {
        max-width: none;
        font-size: 34px;
    }
    .transforming-why-section {
        padding: 36px 0 62px;
    }
    .transforming-why-heading {
        font-size: 38px;
        margin-bottom: 18px;
    }
    .transforming-why-copy p {
        font-size: 17px;
        line-height: 1.6;
    }
    .healthcare-why-section {
        padding: 36px 0 62px;
    }
    .healthcare-why-top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }
    .healthcare-why-heading {
        max-width: none;
        font-size: 36px;
        margin-bottom: 16px;
    }
    .healthcare-why-copy p {
        font-size: 17px;
        line-height: 1.62;
    }
    .healthcare-why-media {
        position: static;
        max-width: 520px;
    }
    .gallery-card-title {
        font-size: 16px;
    }
    .contact-subscribe-section {
        padding: 32px 0 8px;
    }
    .contact-subscribe-card {
        border-radius: 20px;
    }
    .contact-subscribe-card::before {
        width: 160px;
    }
    .contact-subscribe-card::after {
        display: none;
    }
    .contact-subscribe-title {
        font-size: 24px;
    }
    .contact-subscribe-text {
        font-size: 15px;
    }
    .contact-subscribe-form {
        gap: 12px;
    }
    .contact-subscribe-button,
    .contact-subscribe-input {
        font-size: 14px;
    }
    .news-press-section {
        padding: 40px 0 56px;
    }
    .news-press-head {
        margin-bottom: 28px;
    }
    .news-press-label {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .news-press-title {
        font-size: 38px;
    }
    .news-search-input {
        font-size: 18px;
    }
    .news-card {
        flex-basis: 100%;
    }
    .news-card-image {
        height: 210px;
    }
    .news-card-date {
        font-size: 16px;
    }
    .news-card-title {
        font-size: 22px;
    }
    .news-card-link {
        font-size: 16px;
    }
    .news-slider-arrow {
        width: 38px;
        height: 38px;
        top: auto;
        bottom: -52px;
        transform: none;
    }
    .news-slider-arrow:hover {
        transform: scale(1.04);
    }
    .news-slider-prev {
        left: calc(50% - 46px);
    }
    .news-slider-next {
        right: calc(50% - 46px);
    }
    .related-news-section {
        padding: 0 0 70px;
    }
    .related-news-head {
        flex-wrap: wrap;
        gap: 18px;
    }
    .related-news-heading-group {
        flex-basis: 100%;
    }
    .related-news-title {
        font-size: 30px;
    }
    .related-news-line {
        margin-top: 0;
    }
    .related-news-arrows {
        position: static;
        margin-left: auto;
    }
    .related-news-card {
        flex-basis: 100%;
        min-height: auto;
    }
    .related-news-card-title {
        font-size: 24px;
    }
    .related-news-card-text {
        font-size: 16px;
    }
    .news-detail-section {
        padding: 34px 0 16px;
    }
    .news-detail-hero-title {
        font-size: 22px;
    }
    .news-detail-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-subscribe-photo {
        width: 100%;
        right: 0;
        bottom: 0;
    }
    .contact-form-wrapper {
        padding: 30px 0 0;
    }
    .gallery-detail-img {
        height: 280px;
    }
    .gallery-zoom-modal .modal-dialog {
        max-width: 100%;
        margin: 0;
        padding: 18px;
    }
    .gallery-zoom-modal .modal-content {
        min-height: 100vh;
    }
    .gallery-zoom-stage {
        max-width: 100%;
        padding: 22px 56px;
    }
    .gallery-zoom-preview {
        max-height: 72vh;
        border-radius: 12px;
    }
    .gallery-zoom-close {
        top: 34px;
        right: 70px;
        width: 36px;
        height: 36px;
    }
    .gallery-nav-btn {
        width: 42px;
        height: 42px;
    }
    .gallery-nav-prev {
        left: 6px;
    }
    .gallery-nav-next {
        right: 6px;
    }
    .contact-form-title {
        font-size: 26px;
    }
    .about-hero {
        padding: 88px 0 48px;
    }
    .about-hero .gallery-title {
        font-size: 30px;
    }
    .about-hero-inner {
        flex-direction: column;
    }
    .about-hero-photo {
        flex: 0 0 220px;
        width: 100%;
        height: 220px;
    }
    .about-hero-text {
        padding: 32px 28px;
    }
    .about-hero-quote {
        font-size: 22px;
    }
    .about-copy p {
        font-size: 13px;
    }
    .about-quote-card {
        flex-direction: row;
        align-items: center;
        margin-bottom: 40px;
    }
    .about-quote-text {
        font-size: 22px;
    }
    .about-quote-visual {
        flex: 0 0 180px;
        width: 180px;
        margin-right: 20px;
        margin-bottom: -50px;
        margin-top: 0;
    }
    .about-quote-visual::before {
        width: 300px;
        height: 160px;
        left: -80px;
    }
    .about-category-card {
        min-height: 300px;
        padding: 6px;
    }
    .about-category-img {
        height: 288px;
    }
    .about-categories-section {
        padding: 18px 0 30px;
    }
    .about-categories-title {
        font-size: 23px;
    }
    .about-cta-section {
        padding-bottom: 42px;
    }
    .about-cta-card {
        padding: 22px 16px 18px;
    }
    .about-cta-card h2 {
        font-size: 22px;
    }
    .footer-logo {
        position: static;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .footer-logo img {
        width: 100%;
        height: auto;
    }
    .footer-nav {
        gap: 14px;
        justify-content: center;
    }
    .footer-social-row {
        justify-content: center;
    }
    .ybs-laureates-hero {
        min-height: 230px;
        padding: 52px 0 40px;
        background-position: center -30px;
        background-size: 140% auto;
    }
    .ybs-laureates-hero .gallery-title {
        font-size: 36px;
    }
    .ybs-laureates-hero-subtitle {
        font-size: 17px;
    }
    .ybs-laureates-block {
        padding: 42px 0 44px;
    }
    .ybs-laureates-layout,
    .ybs-laureates-block-reverse .ybs-laureates-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ybs-laureates-copy-inner {
        max-width: 100%;
    }
    .ybs-laureates-title {
        font-size: 24px;
    }
    .ybs-laureates-subtitle {
        font-size: 17px;
    }
    .ybs-laureates-description {
        font-size: 13px;
        max-width: 100%;
    }
    .ybs-laureates-subtitle,
    .ybs-laureates-body {
        max-width: 100%;
    }
    .ybs-laureates-media-first,
    .ybs-laureates-media-second,
    .ybs-laureates-media-third {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 52px;
    }
    .header-nav-shell {
        padding: 16px 14px 18px;
    }
    .gallery-title {
        font-size: 26px;
    }
    .contact-subscribe-card {
        padding: 24px 18px;
    }
    .contact-subscribe-form {
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .contact-subscribe-button {
        width: 100%;
        text-align: left;
    }
    .news-press-title {
        font-size: 32px;
    }
    .news-search-form {
        gap: 10px;
    }
    .news-search-input {
        font-size: 16px;
    }
    .news-card-body {
        min-height: auto;
        padding: 12px 16px 20px;
    }
    .news-card-title {
        font-size: 20px;
    }
    .related-news-title {
        font-size: 26px;
    }
    .related-news-heading-group {
        gap: 14px;
    }
    .related-news-card-inner {
        padding: 22px 20px 24px;
    }
    .related-news-date {
        font-size: 14px;
    }
    .related-news-card-title {
        font-size: 22px;
    }
    .related-news-arrow {
        width: 40px;
        height: 40px;
    }
    .news-detail-overlay {
        padding: 34px 14px 14px;
    }
    .news-detail-hero-title {
        font-size: 18px;
    }
    .news-detail-body {
        font-size: 13px;
    }
    .news-detail-gallery-image {
        height: 170px;
    }
    .news-detail-gallery-card {
        padding: 10px 10px 16px;
    }
    .news-detail-gallery-card figcaption {
        font-size: 14px;
        padding-right: 42px;
    }
    .news-detail-gallery-slider {
        padding: 0 10px;
    }
    .news-detail-gallery-arrow {
        width: 40px;
        height: 40px;
    }
    .news-detail-profile-item {
        font-size: 13px;
    }
    .news-detail-profile-panel-inner {
        font-size: 13px;
    }
    .contact-subscribe-visual {
        width: 100%;
        max-width: 260px;
    }
    .contact-subscribe-photo {
        border-radius: 10px;
    }
    .gallery-detail-section {
        padding: 32px 0 46px;
    }
    .gallery-detail-img {
        height: 220px;
    }
    .gallery-zoom-stage {
        padding: 18px 18px 24px;
    }
    .gallery-zoom-close {
        top: 28px;
        right: 28px;
        width: 34px;
        height: 34px;
    }
    .gallery-nav-btn {
        width: 38px;
        height: 38px;
        top: auto;
        bottom: -8px;
        transform: none;
    }
    .gallery-nav-btn:hover {
        transform: scale(1.04);
    }
    .gallery-nav-prev {
        left: calc(50% - 48px);
    }
    .gallery-nav-next {
        right: calc(50% - 48px);
    }
    .gallery-zoom-preview {
        max-height: 68vh;
        width: 100%;
    }
    .gallery-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .contact-form-title {
        font-size: 22px;
    }
    .about-hero {
        padding: 74px 0 40px;
    }
    .about-story-section {
        padding-top: 18px;
    }
    .about-hero-inner {
        flex-direction: column;
    }
    .about-hero-card::before {
        background: linear-gradient(to bottom,
            rgba(252, 247, 238, 0.92) 0%,
            rgba(252, 247, 238, 0.88) 60%,
            rgba(252, 247, 238, 0.70) 100%);
    }
    .about-hero-text {
        padding: 24px 20px;
    }
    .about-hero-quote {
        font-size: 18px;
    }
    .about-hero-photo {
        height: 200px;
    }
    .about-copy p {
        font-size: 12px;
        line-height: 1.55;
    }
    .about-quote-card {
        flex-direction: column;
        align-items: center;
        padding: 20px 18px 20px;
        gap: 12px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    .about-quote-copy {
        width: 100%;
    }
    .about-quote-visual {
        flex: 0 0 auto;
        width: 300px;
        margin: 0 auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        margin-top: 0;
        align-self: center;
        padding-right: 0;
    }
    .about-quote-visual::before {
        display: none;
    }
    .about-quote-text {
        font-size: 16px;
        line-height: 1.5;
    }
    .about-hero-text {
        padding: 22px 18px;
    }
    .about-hero-card {
        margin: 0 0 20px;
    }
    .about-categories-section {
        padding: 32px 0 40px;
    }
    .about-categories-title {
        font-size: 21px;
    }
    .about-category-card {
        min-height: 220px;
        padding: 6px;
    }
    .about-category-img {
        height: 208px;
    }
    .about-category-overlay h3 {
        font-size: 14px;
    }
    .about-cta-card {
        padding: 36px 18px 28px;
    }
    .about-cta-card h2 {
        font-size: 19px;
    }
    .about-cta-btn {
        font-size: 12px;
        padding: 0 22px;
    }
    .footer-nav {
        gap: 10px 14px;
        padding-top: 18px;
        justify-content: center;
    }
    .ybs-laureates-hero {
        min-height: 190px;
        padding: 44px 0 28px;
        background-position: center -8px;
        background-size: 190% auto;
    }
    .ybs-laureates-hero .gallery-title {
        font-size: 30px;
    }
    .ybs-laureates-hero-subtitle {
        font-size: 16px;
    }
    .ybs-laureates-block {
        padding: 30px 0 32px;
    }
    .ybs-laureates-label {
        font-size: 11px;
    }
    .ybs-laureates-title {
        font-size: 22px;
    }
    .ybs-laureates-subtitle {
        font-size: 16px;
    }
    .ybs-laureates-description,
    .ybs-laureates-body {
        font-size: 12px;
        line-height: 1.55;
    }
    .ybs-laureates-label::after {
        width: 28px;
    }
    .ybs-laureates-media-first,
    .ybs-laureates-media-second,
    .ybs-laureates-media-third {
        height: 240px;
    }
    .ybs-laureates-btn {
        min-width: 88px;
        height: 30px;
        font-size: 11px;
        border-width: 1px;
    }
    .contact-page .contact-section {
        padding-bottom: 60px;
    }
}

@media (max-width: 420px) {
    .gallery-detail-img {
        height: 200px;
    }
    .gallery-zoom-modal .modal-dialog {
        padding: 12px;
    }
    .gallery-zoom-stage {
        padding: 14px 14px 22px;
    }
    .gallery-zoom-close {
        top: 22px;
        right: 22px;
        width: 32px;
        height: 32px;
    }
    .gallery-nav-btn {
        width: 34px;
        height: 34px;
        bottom: -4px;
    }
    .gallery-nav-prev {
        left: calc(50% - 42px);
    }
    .gallery-nav-next {
        right: calc(50% - 42px);
    }
}

/* =============================================
   PILLARS MOBILE SLIDER
   ============================================= */
.pillars-mobile-section {
    display: none;
    background: #fff;
    padding: 40px 0 50px;
}

.pillars-mobile-swiper {
    overflow: hidden;
    padding-bottom: 36px !important;
}

.pillars-mobile-card {
    text-align: center;
    padding: 0 24px;
}

.pillars-mobile-pagination {
    text-align: center;
}

.pillars-mobile-pagination .swiper-pagination-bullet-active {
    background: #A37948;
}

@media (max-width: 768px) {
    .pillars-mobile-section {
        display: block;
    }
}

/* =============================================
   EVALUATION PROCESS SECTION
   ============================================= */
.eval-section {
    position: relative;
    background: url('../img/evaluation-process.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    isolation: isolate;
}

.eval-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 12, 6, 0.6);
    z-index: 0;
    pointer-events: none;
}

/* --- Hero --- */
.eval-hero {
    position: relative;
    z-index: 1;
    padding: 58px 0 44px;
}

.eval-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 300px;
    align-items: center;
}

.eval-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.eval-label-line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.38);
    position: relative;
    flex-shrink: 0;
    vertical-align: middle;
}

.eval-label-line::before {
    content: none;
}

.eval-label-line::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    top: 50%;
    right: -3px;
    transform: translateY(-50%);
}

.eval-label-arrow {
    color: rgba(255, 255, 255, 0.45);
}

.eval-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 28px;
}

.eval-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.eval-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border: 1.5px solid rgba(196, 160, 122, 0.75);
    border-radius: 4px;
    color: #4e381e;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    transition: background 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.eval-btn:hover {
    background: #f5ede0;
    color: #4e381e;
    opacity: 0.95;
}

.eval-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.eval-link:hover {
    color: #fff;
}

.eval-link i {
    font-size: 12px;
    color: #c4a07a;
}

.eval-desc {
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.78;
    margin: 0;
}

/* --- Auto-scroll cards --- */
.eval-slider-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 6px 0;
}

.eval-autoplay-slider {
    width: 100%;
    overflow: visible;
}

.eval-autoplay-slider .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.eval-slide {
    display: flex !important;
    align-items: center;
    width: auto !important;
    flex-shrink: 0;
    padding: 0 8px;
}

.eval-card {
    min-height: 100px;
    padding: 15px 16px 15px 14px;
    border-radius: 8px;
    border: 1px solid rgba(188, 151, 113, 0.38);
    background: rgba(255, 255, 255, 0.98);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 26px rgba(52, 35, 19, 0.12);
    min-width: 370px;
    margin: 16px 0;
}

.eval-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #c4a07a;
    color: #a07040;
    font-size: 18px;
    flex-shrink: 0;
}

.eval-card-title {
    font-size: 30px;
    font-weight: 500;
    color: #3D2D1B;
    line-height: 1.2;
}

.eval-card-num {
    font-size: 95px;
    font-weight: 500;
    color: rgba(163, 121, 72, 0.40);
    line-height: 1;
    padding-left: 6px;
    user-select: none;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .eval-hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .eval-title {
        font-size: 28px;
    }
    .eval-hero {
        padding: 40px 0 28px;
    }
    .eval-card {
        min-width: 170px;
        padding: 12px 14px;
        gap: 10px;
    }
    .eval-card-num {
        font-size: 20px;
    }
}

/* =============================================
   HOME QUOTE SECTION
   ============================================= */
.home-quote-section {
    padding: 0;
    background: #fff;
    margin-top:100px;
}

.home-about-quote-card {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 40px 0 88px;
    padding: 36px 32px 36px 44px;
    border-radius: 16px;
    background: #fdf8f0;
    border: 1px solid #e8d8bf;
    box-shadow: 0 2px 18px rgba(163, 121, 72, 0.08);
    overflow: visible;
    position: relative;
}

.home-about-quote-copy {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.home-about-quote-text {
    margin: 0 0 14px;
    color: #7a5430;
    font-size: 35px;
    line-height: 1.45;
    font-weight: 600;
    font-style: normal;
}

.home-about-quote-author {
    display: block;
    color: #9a7856;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 6px;
}

.home-about-quote-author-line {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin-top: 8px;
}

.home-about-quote-author-line::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a07850;
    flex-shrink: 0;
}

.home-about-quote-author-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #c4a07a;
    margin-left: 0;
}

.home-about-quote-visual {
    flex: 0 0 250px;
    width: 260px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: -120px;
    padding-right: 8px;
    margin-right: 130px;
}

.home-about-quote-visual::before {
    content: '';
    position: absolute;
    top: 52%;
    left: -231px;
    transform: translateY(-50%);
    width: 536px;
    height: 247px;
    background: url(../img/right-arrow.png) no-repeat center center;
    background-size: contain;
    z-index: -1;
    opacity: 1;
    pointer-events: none;
}

.home-about-quote-visual img {
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .home-about-quote-card {
        flex-direction: row;
        align-items: center;
        margin-bottom: 40px;
    }

    .home-about-quote-text {
        font-size: 22px;
    }

    .home-about-quote-visual {
        flex: 0 0 180px;
        width: 180px;
        margin-right: 20px;
        margin-bottom: -50px;
        margin-top: 0;
    }

    .home-about-quote-visual::before {
        width: 300px;
        height: 160px;
        left: -80px;
    }
}

@media (max-width: 767.98px) {
    .home-quote-section {
        padding: 0;
    }

    .home-about-quote-card {
        flex-direction: column;
        align-items: center;
        padding: 20px 18px 20px;
        gap: 12px;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .home-about-quote-copy {
        width: 100%;
    }

    .home-about-quote-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .home-about-quote-visual {
        flex: 0 0 auto;
        width: 300px;
        margin: 0 auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        margin-top: 0;
        align-self: center;
        padding-right: 0;
    }

    .home-about-quote-visual::before {
        display: none;
    }
}

/* =============================================
   BOARD MEMBER PAGE
   ============================================= */
.board-section {
    padding: 64px 0 80px;
    background: #fff;
}

.board-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #a07848;
    margin: 0 0 48px;
    line-height: 1.2;
}

.board-member-card {
    display: flex;
    align-items: center;
    gap: 100px;
    border: 1px solid rgba(190, 155, 110, 0.28);
    border-radius: 14px;
    padding: 44px 48px;
    background: #fff;
    margin-bottom: 32px;
}

.board-member-content {
    flex: 1;
    min-width: 0;
}

.board-member-name {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #A37948 0%, #3D2D1B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 6px;
    line-height: 1.2;
}

.board-member-role {
    letter-spacing: 0.1em;
    color: #88663F;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.board-member-bio {
    /* font-size: 15px; */
    line-height: 1.75;
    color: #a07848;
    text-align: justify;
    margin: 0 0 28px;
}

.board-member-bio strong {
    font-weight: 500;
    color: #a07848;
}

.board-member-btn {
    display: inline-block;
    padding: 10px 32px;
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.board-member-btn:hover {
    opacity: 0.88;
    color: #fff;
}

.board-member-media {
    flex: 0 0 320px;
    width: 320px;
}

.board-member-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 6px;
}

.board-member-card-reverse {
    background: #fdf8f2;
}

.board-section-advisory {
    padding-top: 0px;
}

@media (max-width: 991px) {
    .board-member-card {
        gap: 32px;
        padding: 36px 32px;
    }
    .board-member-media {
        flex: 0 0 260px;
        width: 260px;
    }
    .board-member-img {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .board-section {
        padding: 40px 0 56px;
    }
    .board-section-title {
        font-size: 26px;
        margin-bottom: 32px;
    }
    .board-member-card {
        flex-direction: column;
        padding: 28px 22px;
        gap: 24px;
    }
    .board-member-media {
        flex: none;
        width: 100%;
    }
    .board-member-img {
        height: 330px;
    }
    .board-member-name {
        font-size: 22px;
    }
}

/* =============================================
   BOARD MEMBER MODAL
   ============================================= */
.board-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.board-modal-overlay.is-open {
    display: flex;
}

.board-modal-box {
    background: #fff;
    border-radius: 14px;
    max-width: 860px;
    width: 100%;
    height: 88vh;
    max-height: 88vh;
    overflow: hidden;
    position: relative;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.board-modal-close {
    position: absolute;
    top: 5px;
    right: 18px;
    background: none;
    border: none;
    font-size: 32px;
    color: #a07848;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.board-modal-close:hover {
    color: #7a5830;
}

.board-modal-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.board-modal-media {
    flex: 0 0 240px;
    position: sticky;
    top: 0;
    align-self: flex-start;
}

.board-modal-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    display: block;
}

.board-modal-body {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    height: 100%;
    padding-right: 10px;
}

.board-modal-body::-webkit-scrollbar {
    width: 5px;
}

.board-modal-body::-webkit-scrollbar-track {
    background: #f3ece2;
    border-radius: 10px;
}

.board-modal-body::-webkit-scrollbar-thumb {
    background: #c4a07a;
    border-radius: 10px;
}

.board-modal-body::-webkit-scrollbar-thumb:hover {
    background: #a07848;
}

.board-modal-name {
    font-size: 26px;
    font-weight: 700;
    color: #a07848;
    margin: 0 0 6px;
    line-height: 1.2;
}

.board-modal-role {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #88663f;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.board-modal-bio {
    color: #a07848;
    font-size: 15px;
    line-height: 1.75;
    text-align: justify;
}

.board-modal-bio p {
    margin: 0 0 14px;
}

.board-modal-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .board-modal-box {
        padding: 32px 20px;
    }
    .board-modal-inner {
        flex-direction: column;
        gap: 22px;
    }
    .board-modal-media {
        flex: none;
        width: 100%;
    }
    .board-modal-img {
        height: 340px;
    }
    .board-modal-name {
        font-size: 20px;
    }
}

/* =============================================
   BE PART SECTION
   ============================================= */
.be-part-section {
    padding: 80px 0;
}

.be-part-card {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    background: #faf5ee url('../img/be-part-bg.png') center center / cover no-repeat;
    min-height: 200px;
    padding: 48px 56px;
}

.be-part-content {
    position: relative;
    z-index: 1;
    max-width: 360px;
}

.be-part-title {
    background: linear-gradient(90deg, #A37948 0%, #3D2D1B 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.be-part-divider {
    position: relative;
    width: 310px;
    height: 1px;
    background: #a37948;
    margin: 10px 0 18px 6px;
}

.be-part-divider::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a37948;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
}

.be-part-text {
    font-size: 14px;
    color: #6b5540;
    line-height: 1.65;
    margin: 0 0 24px;
}

.be-part-btn {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(90deg, #F9C07D 0%, #93714A 100%);
    color: #3D2D1B;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.be-part-btn:hover {
    opacity: 0.88;
    color: #3D2D1B;
}

.be-part-visual {
    flex: 1;
}

@media (max-width: 767px) {
    .be-part-card {
        padding: 36px 28px;
        background-position: right center;
        position: relative;
    }
    .be-part-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(250, 245, 238, 0.78);
        border-radius: 20px;
        z-index: 0;
        pointer-events: none;
    }
    .be-part-content {
        position: relative;
        z-index: 1;
    }
    .be-part-title {
        font-size: 22px;
    }
}
