/* Fonts */
@font-face {
    font-family: 'MonlamTBslim';
    src: local('MonlamTBslim'), 
         local('Monlam TB Slim'),
         url('../fonts/MonlamTBslim.woff2') format('woff2'),
         url('../fonts/MonlamTBslim.woff') format('woff'),
         url('../fonts/MonlamTBslim.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MonlamOuChan2';
    src: url('../fonts/MonlamUniOuChan2.eot');
    src: url('../fonts/MonlamUniOuChan2.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MonlamUniOuChan2.woff2') format('woff2'),
        url('../fonts/MonlamUniOuChan2.woff') format('woff'),
        url('../fonts/MonlamUniOuChan2.ttf') format('truetype'),
        url('../fonts/MonlamUniOuChan2.svg#MonlamUniOuChan2') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    line-height: 2;
}

* {
    box-sizing: border-box;
}

:root {
    --bg-color: #ffffff;
    --text-color: #1d1d1f;
    --nav-bg: rgba(0, 0, 0, 0.984);
    --nav-text: #f5f5f7;
    --accent-color: #0066cc;
    --card-bg: #fff;
}

body {
    font-family: 'MonlamTBslim', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    direction: ltr;
    unicode-bidi: embed;
    line-height: 2!important;
}

/* Page Transition Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateZ(10px); }
    to { opacity: 1; transform: translateZ(0); }
}

.page-transition {
    animation: fadeIn 0.6s ease-out forwards;
    margin: auto;
    background-color: #ffffff; 
}

/* Global line-height for Tibetan text */
/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'MonlamOuChan2', sans-serif;
    font-weight: normal !important;
    line-height: 2 !important;
}

body, p, span, button, input, textarea, a, li, label, div {
    line-height: 2 !important;
    font-family: 'MonlamTBslim', sans-serif;
}
/* Global link styles */
a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}


/* Navigation */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #d6d6d6;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
    line-height: normal !important; /* Override global line-height */
}

.nav-links a:hover {
    color: #fff;
}

/* Language Selector Styling */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px; /* spacing from other nav items */
}
.language-selector .language-icon {
    color: #d6d6d6;
    font-size: 14px;
    margin-right: 4px;
}
.language-select {
    appearance: none;
    background: transparent;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    padding: 2px 6px;
    color: #d6d6d6;
    font-size: 14px;
    font-family: MonlamTBslim;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.language-select:focus {
    outline: none;
    border-color: #fff;
    color: #fff;
}
.language-select:hover {
    border-color: #fff;
    color: #fff;
}
.language-select::-ms-expand { display: none; }
.language-select::after {
    content: '\\25BE';
    font-size: 10px;
    margin-left: 4px;
    color: #d6d6d6;
    position: relative;
    top: 1px;
}
.language-select option {
    color: #000;
    background: #fff;
}

/* Submenu styles - Apple-like mega menu */
.has-submenu {
    position: relative;
}

.submenu {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(29, 29, 31, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 50px 0 60px;
    list-style: none;
    margin: 0;
    /* border-radius: 0 0 18px 18px; */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.28, 0.11, 0.32, 1), 
                visibility 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    z-index: 1000;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.submenu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px 50px;
}

.submenu li {
    padding: 0;
    margin: 0;
}

.submenu a {
    padding: 10px 0;
    font-size: 16px;
    color: #f5f5f7;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    transition: color 0.2s ease;
    display: block;
}

.submenu a:hover {
    background-color: transparent;
    color: #2997ff;
}

/* Add arrow indicator for items with submenu */
.has-submenu > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
    opacity: 0.6;
}

.logo {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 24px;
    width: auto;
}

/* Main Hero Section - Apple Style */
.main-hero {
    background: linear-gradient(180deg, #000 0%, #1d1d1f 100%);
    color: #f5f5f7;
    text-align: center;
    padding: 60px 20px 80px;
    margin-bottom: 12px;
    min-height: 692px; /* Apple standard large hero height */
    display: flex;
    flex-direction: column;
    /* background-size: cover;  Removed as it's now on .hero-bg */
    /* background-position: center; Removed as it's now on .hero-bg */
    justify-content: flex-start;
    overflow: hidden; /* Ensure zoomed image stays within bounds */
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.26, 0.25, 0.24);
    z-index: 0;
}

.main-hero:hover .hero-bg {
    transform: scale(1.02);
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.1 !important; /* Tighter line height for large titles */
    margin: 0 0 6px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3 !important; /* Tighter line height for subtitles */
    color: #a1a1a6;
    margin: 0 0 20px;
}

.hero-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 16px;
}

.hero-link {
    color: #2997ff;
    text-decoration: none;
    font-size: 21px;
    line-height: 1.4 !important;
    font-weight: 400;
    transition: color 0.2s ease;
}

.hero-link:hover {
    text-decoration: underline;
}

/* Secondary Hero */
.secondary-hero {
    background: #fbfbfd;
    color: #1d1d1f;
    text-align: center;
    padding: 60px 20px 80px;
    margin-bottom: 12px;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    /* background-size: cover; */
    /* background-position: center; */
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}

.secondary-hero:hover .hero-bg {
    transform: scale(1.02);
}

.hero-title-small {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.1 !important;
    margin: 0 0 6px;
}

.hero-subtitle-small {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3 !important;
    color: #6e6e73;
    margin: 0 0 16px;
}

/* Product Grid - Apple Style */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto 12px;
    padding: 0 20px;
}

.product-card {
    background: #fbfbfd;
    border-radius: 18px;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    flex-direction: column; /* Enable vertical alignment control via justify-content */
    align-items: center; /* Center content horizontally by default */
    justify-content: flex-start; /* default alignment, can be overridden by inline style */
    padding: 60px 50px;
    text-align: center;
    position: relative;
    /* background-size: cover; */
    /* background-position: center; */
    max-height: 450px;
}

.product-card:hover .hero-bg {
    transform: scale(1.02);
}

/* Text Color Themes */
.text-light .hero-title,
.text-light .hero-subtitle,
.text-light .hero-title-small,
.text-light .hero-subtitle-small,
.text-light .product-title,
.text-light .product-subtitle {
    color: #f5f5f7;
}

.text-dark .hero-title,
.text-dark .hero-subtitle,
.text-dark .hero-title-small,
.text-dark .hero-subtitle-small,
.text-dark .product-title,
.text-dark .product-subtitle {
    color: #1d1d1f;
}

/* Specific overrides for subtitles if needed */
.text-light .hero-subtitle,
.text-light .hero-subtitle-small,
.text-light .product-subtitle {
    color: #a1a1a6;
}

.text-dark .hero-subtitle,
.text-dark .hero-subtitle-small,
.text-dark .product-subtitle {
    color: #6e6e73;
}


/* Overlay Styles */
.main-hero, .secondary-hero, .product-card {
    position: relative;
}

.overlay-dark::before,
.overlay-x-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
}

.overlay-dark::before {
    background: rgba(0, 0, 0, 0.3);
}

.overlay-x-dark::before {
    background: rgba(0, 0, 0, 0.6);
}

.hero-content, .product-content {
    position: relative;
    z-index: 2;
}

.product-card.large {
    grid-column: span 2;
    min-height: 550px;
}

.product-content {
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.1 !important;
    margin: 0 0 6px;
    color: #1d1d1f;
}

.product-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3 !important;
    color: #6e6e73;
    margin: 0 0 12px;
}

.product-link {
    color: #2997ff;
    text-decoration: none;
    font-size: 21px;
    line-height: 1.4 !important;
    font-weight: 400;
    display: inline-block;
    transition: color 0.2s ease;
}

.product-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 21px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.large {
        grid-column: span 1;
    }
    
    .product-title {
        font-size: 32px;
    }
    
    .product-subtitle {
        font-size: 19px;
    }
}

/* Footer */
footer {
    background-color: #f5f5f7;
    padding: 40px 20px;
    font-size: 13px;
    color: #86868b;
    border-top: 1px solid #eeeeee;
    /* margin-top: 50px; */
    line-height: 1.5 !important;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Search Icon */
.search-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.search-icon svg {
    color: #d6d6d6;
    transition: color 0.3s ease;
}

.search-icon a:hover svg {
    color: #fff;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #161617;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.28, 0.11, 0.32, 1),
                visibility 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    overflow-y: auto;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 100px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 40px;
}

.search-icon-input {
    color: #86868b;
    flex-shrink: 0;
    margin-right: 16px;
    width: 24px;
    height: 24px;
}

.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #f5f5f7;
    font-size: 28px;
    font-weight: 400;
    padding: 0;
    font-family: 'MonlamTBslim', -apple-system, BlinkMacSystemFont, sans-serif;
}

.search-bar input::placeholder {
    color: #86868b;
}

.search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #333336;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86868b;
    transition: all 0.2s ease;
}

.search-close:hover {
    background: #424245;
    color: #f5f5f7;
}

.search-quick-links {
    color: #f5f5f7;
}

.quick-links-title {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.search-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-quick-links li {
    margin-bottom: 0;
}

.search-quick-links a {
    color: #f5f5f7;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: color 0.2s ease;
    font-weight: 600;
}

.search-quick-links a::before {
    content: '→';
    margin-right: 10px;
    opacity: 1;
    transform: none;
    color: #86868b;
    font-size: 14px;
    font-weight: normal;
}

.search-quick-links a:hover {
    color: #2997ff;
}

.search-quick-links a:hover::before {
    color: #2997ff;
}

/* Newsroom Search Overlay (Light Theme) */
.search-overlay.light {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.search-overlay.light .search-bar input {
    color: #1d1d1f;
}

.search-overlay.light .search-bar input::placeholder {
    color: #86868b;
}

.search-overlay.light .search-icon-input {
    color: #86868b;
}

.search-overlay.light .search-close {
    background: #e8e8ed;
    color: #86868b;
}

.search-overlay.light .search-close:hover {
    background: #d2d2d7;
    color: #1d1d1f;
}

.search-overlay.light .quick-links-title {
    color: #86868b;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.search-overlay.light .search-quick-links a {
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
}

.search-overlay.light .search-quick-links a::before {
    color: #86868b;
}

.search-overlay.light .search-quick-links a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.search-overlay.light .search-quick-links a:hover::before {
    color: #0066cc;
}

/* Newsroom Local Nav Styles */
.ac-localnav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.16);
    height: 52px;
    transition: background-color 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.ac-localnav.ac-ln-sticking {
    background-color: #f5f5f7d1 !important;
}

.ac-ln-wrapper {
    background-color: #ffffff00 !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.ac-ln-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 980px;
    margin: auto;
}

.ac-ln-title a {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    letter-spacing: -0.011em;
}

.ac-ln-menu {
    display: flex;
    align-items: center;
}

.ac-ln-menu-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    margin-right: 24px;
}

.ac-ln-menu-link {
    font-size: 14px;
    color: #1d1d1f;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.ac-ln-menu-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.newsroom-search-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1d1d1f;
    opacity: 0.8;
    padding: 0;
    transition: opacity 0.3s ease;
}

.newsroom-search-trigger:hover {
    opacity: 1;
}

.newsroom-search-trigger i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .ac-ln-menu-items {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav-controls {
    display: none;
    align-items: center;
    gap: 20px;
}

.mobile-search-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-search-btn:hover {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #d6d6d6;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* Submenu Toggle Button */
.submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #d6d6d6;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.submenu-toggle.active {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .mobile-nav-controls {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }
    .mobile-menu-btn {
        padding-right: 10px;
        height: 14px;
    }

    .nav-links {
        position: fixed;
        top: 44px;
        left: 0;
        width: 100%;
        height: calc(100vh - 44px);
        background-color: rgba(29, 29, 31, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .nav-links a {
        font-size: 17px;
        padding: 16px 0;
        width: auto;
        flex-grow: 1;
        color: #f5f5f7;
    }

    /* Mobile Submenu */
    .submenu {
        position: static;
        width: 100%;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin: 0;
    }

    .submenu.active {
        display: block;
    }

    .submenu-container {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: none;
    }

    .submenu li {
        border-bottom: none;
    }

    .submenu a {
        font-size: 15px;
        padding: 12px 0;
        color: #a1a1a6;
        font-weight: 400;
    }

    .has-submenu:hover .submenu {
        display: none; /* Disable hover on mobile */
    }
    
    .has-submenu > a::after {
        display: none; /* Hide default arrow */
    }

    .search-icon {
        display: none; /* Hide search in menu */
    }
    
    /* Prevent body scroll when menu is open */
    body.no-scroll {
        overflow: hidden;
    }
}

/* Newsroom Styles */
.newsroom-container {
    background-color: #fff;
    min-height: 100vh;
}

/* Apple Local Nav */
.ac-localnav {
    position: sticky;
    top: 44px; /* Height of the global nav */
    width: 100%;
    height: 52px;
    z-index: 997;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: none;
    transition: background-color 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.ac-localnav.ac-ln-sticking {
    background-color: rgb(255 255 255 /35%);
}

.ac-ln-wrapper {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    padding: 0 22px;
    position: relative;
    z-index: 2;
}

.ac-ln-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 980px;
    margin: auto;
}

.ac-ln-title {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: .011em;
    line-height: 1.19048;
}

.ac-ln-title a {
    color: #1d1d1f;
    text-decoration: none;
    display: block;
}

.ac-ln-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ac-ln-menu-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.ac-ln-menu-link {
    font-size: 14px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: -.01em;
    color: #1d1d1f;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.ac-ln-menu-link:hover {
    opacity: 1;
    color: #0066cc;
}

.newsroom-search-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #e8e8ed;
    border: none;
    border-radius: 980px;
    padding: 6px 12px;
    font-size: 11px;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsroom-search-trigger:hover {
    background-color: #d2d2d7;
}

.newsroom-search-trigger i {
    font-size: 10px;
}

/* Content Layout */
.latest-news-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

.section-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0em;
    margin-bottom: 40px;
    color: #1d1d1f;
}

/* Featured Article */
.featured-article {
    margin-bottom: 40px;
}

.featured-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    max-height: 350px;
}

.featured-image-wrapper {
    flex: 1.6;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-link:hover .featured-image {
    transform: scale(1.03);
}

.featured-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.news-tag {
    font-size: 14px;
    line-height: 1.33337;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #6e6e73;
    margin-bottom: 12px;
}

.featured-title {
    font-size: 26px;
    line-height: 1.125;
    font-weight: 700;
    letter-spacing: .004em;
    margin: 0 0 20px;
    color: #1d1d1f;
}

.news-meta {
    margin-top: auto;
    font-size: 12px;
    color: #6e6e73;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card-inner {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    max-height: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.card-image-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f5f5f7;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-link:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding-top: 10px;
    padding-bottom: 12px;
    padding-left: 15px;
    padding-right: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 19px;
    line-height: 1.21053;
    font-weight: 600;
    letter-spacing: .012em;
    margin: 0 0 12px;
    color: #1d1d1f;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.news-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1068px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ac-ln-menu-items {
        display: none;
    }
    
    .featured-card {
        flex-direction: column;
        height: auto;
    }
    
    .featured-image-wrapper {
        aspect-ratio: 16/9;
        flex: none;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    background: #dbdbdc;
    color: #1d1d1f;
    padding: 8px 16px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background: #e8e8ed;
    color: #0066cc;
}

/* Apple Style Pagination */
.monlam-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: transparent !important;
    position: static;
    height: auto;
    width: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: auto;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.pagination-btn:hover:not(.disabled) {
    background: #e8e8ed;
    color: #0066cc;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: default;
    color: #86868b;
}

.pagination-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1d1d1f;
    font-weight: 600;
}

.current-page-box {
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    padding: 6px 14px;
    background: #fff;
}

/* News Search Page */
.search-results-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 15px 100px;
    background: #fff;
}

.search-filters {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #d2d2d745;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #6e6e73;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'MonlamTBslim', sans-serif;
    color: #1d1d1f;
    padding: 8px 24px 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.custom-select:hover {
    background: #f5f5f7;
}

.custom-select:focus {
    outline: none;
    background: #f5f5f7;
}

.select-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #6e6e73;
    pointer-events: none;
}

.results-count {
    font-size: 14px;
    color: #6e6e73;
    margin-bottom: 40px;
}

.results-count strong {
    color: #1d1d1f;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.search-result-item {
    padding-bottom: 40px;
    border-bottom: 1px solid #d2d2d745;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-link {
    display: flex;
    gap: 40px;
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.search-result-image-wrapper {
    width: 350px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.search-result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.search-result-link:hover .search-result-image {
    transform: scale(1.03);
}

.search-result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-result-title {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 700;
    letter-spacing: .009em;
    margin: 0 0 12px;
    color: #1d1d1f;
}

.no-results {
    text-align: center;
    padding: 60px 0;
    font-size: 19px;
    color: #6e6e73;
}

@media (max-width: 768px) {
    .search-result-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .search-result-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

/* Main Search Page */
.main-search-container {
    padding-top: 40px;
    min-height: 80vh;
    background: #fff;
    font-family: 'MonlamTBslim', sans-serif;
}

.search-header-wrapper {
    max-width: 680px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.main-search-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.main-search-input {
    width: 100%;
    height: 56px;
    padding: 0 50px;
    font-size: 24px;
    font-weight: 400;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: #1d1d1f;
    outline: none;
    box-shadow: 0 0 0 1px #86868b;
    font-family: 'MonlamTBslim', sans-serif;
}

.main-search-input:focus {
    box-shadow: 0 0 0 4px rgba(0,125,250,0.6);
}

.search-icon-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #86868b;
}

.search-clear-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #86868b;
    cursor: pointer;
}

.search-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 15px;
}

.search-tab {
    font-size: 14px;
    color: #6e6e73;
    text-decoration: none;
    padding-bottom: 15px;
    margin-bottom: -16px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    font-family: 'MonlamTBslim', sans-serif;
}

.search-tab.active {
    color: #1d1d1f;
    border-bottom-color: #1d1d1f;
}

.search-tab:hover {
    color: #1d1d1f;
}

.main-results-wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.results-count-text {
    font-size: 14px;
    color: #6e6e73;
    margin-bottom: 40px;
    font-family: 'MonlamTBslim', sans-serif;
}

.main-results-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.main-result-item {
    display: flex;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid #d2d2d752;
}

.main-result-image-col {
    width: 150px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
}

.main-result-image-col img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.main-result-item:hover .main-result-image-col img {
    transform: scale(1.02);
}

.main-result-content-col {
    flex: 1;
    padding-top: 10px;
}

.main-result-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px;
    font-family: 'MonlamTBslim', sans-serif;
    line-height: 1.3;
}

.main-result-title a {
    color: #1d1d1f;
    text-decoration: none;
}

.main-result-title a:hover {
    text-decoration: underline;
}

.main-result-desc {
    font-size: 14px;
    line-height: 2;
    color: #1d1d1f;
    margin-bottom: 15px;
    font-family: 'MonlamTBslim', sans-serif;
}
h3.main-result-title {
    font-size: 16px;
    font-weight: bold !important;
}

.main-result-links {
    display: flex;
    gap: 20px;
}

.main-result-links a {
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-result-links a:hover {
    text-decoration: underline;
}

.main-pagination-wrapper {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .main-result-item {
        flex-direction: column;
        gap: 20px;
        border-bottom: 1px solid #d2d2d7;
    }
    
    .main-result-image-col {
        width: 100px;
    }
}

/* News Detail Page */
.news-article {
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 22px 100px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.article-tag {
    color: #1d1d1f;
    text-transform: uppercase;
}

.article-date {
    color: #6e6e73;
}

.article-title {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 700;
    letter-spacing: -0.003em;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.article-subtitle {
    font-size: 24px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: 0.009em;
    color: #6e6e73;
}

.article-hero {
    margin-bottom: 60px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.article-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 2!important;
    font-weight: 400;
    letter-spacing: 0.012em;
    color: #1d1d1f;
}

.article-body p {
    margin-bottom: 1.5em;
}

.article-body h2 {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 700;
    letter-spacing: 0.004em;
    margin-top: 2em;
    margin-bottom: 0.8em;
}

.article-body h3 {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5em;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 0.5em;
}

.article-footer {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #d2d2d74f;
}

.share-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
}

.share-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    transition: all 0.2s ease;
}

.share-icon:hover {
    background: #e8e8ed;
    color: #0066cc;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }
    
    .article-subtitle {
        font-size: 21px;
    }
    
    .article-body {
        font-size: 17px;
    }
}

/* Leadership Page */
.leadership-page {
    padding: 10px 0 100px;
    background: #fff;
}

.leadership-page .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 22px;
}

.leadership-header {
    margin-bottom: 60px;
}

.leadership-header h4 {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0px;
}

.section-divider {
    height: 1px;
    background-color: #d2d2d740;
    width: 100%;
}

.leadership-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 40px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 10px;
    justify-items: center;
}

.leader-card {
    display: flex;
    flex-direction: column;
}

.leader-image {
    border-radius: 50%!important;
    width: 200px !important;
    height: 250px !important;
    aspect-ratio: 1/1;
    margin-bottom: 20px;
    background-color: #f5f5f7;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    max-height: 185px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.leader-name {
    font-size: 17px;
    font-weight: 600;
    color: #06c;
    margin: 0;
    line-height: 1.2;
}

.leader-name span {
    display: block;
}

.leader-title {
    font-size: 14px;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 10px;

    }
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 10px;
    }
    
    .leadership-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

/* Leadership Detail Page */
.leadership-detail-page {
    background: #fff;
}

.leadership-hero {
    background-color: #f5f5f7;
    padding-top: 0px;
    overflow: hidden;
}

.leadership-hero .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    max-height: 500px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column;
}
.leadership-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-direction: row;
    align-items: flex-end;
}

.hero-text {
    flex: 1;
    padding-bottom: 60px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-title {
    /* font-size: 24px; */
    color: #1d1d1f;
    font-weight: 400;
}

.leadership-hero-title {
    font-size: 24px;
    color: #1d1d1f;
    font-weight: 400;
}
.leadership-bio-content{
    -webkit-column-count: 2; /* Safari and Chrome */
       -moz-column-count: 2; /* Firefox */
            column-count: 2; 

}

.hero-image {
    width: 480px;
    flex-shrink: 0;
    margin-bottom: -5px; /* Align bottom perfectly */
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.leadership-bio-section {
    padding: 80px 0 100px;
}

.leadership-bio-section .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.bio-text p {
    margin: 0;
    padding: 0;
    font-size: 19px;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 20px;
    line-height: 2!important;
}

.leader-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.leader-card-link:hover .leader-name {
    text-decoration: underline;
}

/* Responsive Detail Page */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        padding-bottom: 40px;
    }
    
    .hero-image {
        width: 280px;
        margin-bottom: 20px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 21px;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
    }
}

/* English Font Overrides */
html[lang="en"] body {
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
}

html[lang="en"] h1, 
html[lang="en"] h2, 
html[lang="en"] h3, 
html[lang="en"] h4, 
html[lang="en"] h5, 
html[lang="en"] h6,
html[lang="en"] p, 
html[lang="en"] span, 
html[lang="en"] button, 
html[lang="en"] input, 
html[lang="en"] textarea,
html[lang="en"] a, 
html[lang="en"] li, 
html[lang="en"] label {
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    line-height: 1.5 !important;
}
