/*
Theme Name: MTN Clone
Theme URI: https://www.mtn.com/
Description: A WordPress theme replicating the look and feel of the MTN Group corporate website (mtn.com). Built for educational/demo purposes.
Author: OpenCode
Author URI: https://opencode.ai
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mtn-clone
Tags: custom-menu, custom-logo, featured-images, footer-widgets, theme-options, threaded-comments
*/

:root {
    --mtn-yellow: #F97E0F;
    --mtn-yellow-dark: #E06700;
    --mtn-black: #000000;
    --mtn-ink: #1a1a1a;
    --mtn-gray: #5b5b5b;
    --mtn-light: #f5f5f5;
    --mtn-line: #e3e3e3;
    --mtn-green: #2e8b57;
    --container: 1280px;

}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
    color: var(--mtn-ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 .5em;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--mtn-black);
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    border: 2px solid var(--mtn-black);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 14px;
}

.btn:hover {
    background: var(--mtn-yellow);
    color: var(--mtn-black);
}

.btn--yellow {
    background: var(--mtn-yellow);
    color: var(--mtn-black);
    border-color: var(--mtn-yellow);
}

.btn--yellow:hover {
    background: var(--mtn-black);
    color: #fff;
}

.btn .arrow {
    width: 14px;
    height: 14px;
}

/* ---------------- Header (MTN.com style) ---------------- */
.header-container {
    width: 100%;
    background: #fff;
    position: relative;
}

.block-mega.top-ticker {
    width: 100%;
}

.gray-underline {
    height: 1px;
    background: #e8e8e8;
    margin: 0 40px;
}

#primary-header.header {
    width: 100%;
}

#primary-header .inner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
    position: relative;
}

#primary-header .logo.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 40px;
}

#primary-header .logo.header-logo img,
#primary-header .logo.header-logo .custom-logo {
    height: 38px;
    width: auto;
}

#primary-header .custom-logo-link {
    display: flex;
    align-items: center;
}

/* Menu items list */
#primary-header ul.menu-items {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    gap: 0;
    flex: 1;
}

#primary-header ul.menu-items > li {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

#primary-header ul.menu-items > li > a.menu-item {
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 100%;
    font-family: 'WorkSans-Regular', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #202020;
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}

#primary-header ul.menu-items > li > a.menu-item:hover {
    color: var(--mtn-yellow);
}

/* Dropdown parent items */
#primary-header ul.menu-items > li.dropdown {
    position: relative;
}

#primary-header ul.menu-items > li.dropdown > a.parent-dropdown {
    cursor: pointer;
}

/* Dropdown menu (mega menu) */
#primary-header ul.dropdown-menu.expandable {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    box-shadow: 0 12px 48px rgba(0,0,0,.12);
    border-top: 3px solid var(--mtn-yellow);
    padding: 20px 0;
    display: none;
    z-index: 300;
    list-style: none;
    margin: 0;
}

#primary-header ul.dropdown-menu.expandable.show,
#primary-header ul.menu-right.expandable.show {
    display: block;
}

/* Desktop: open mega menu on hover, like mtn.com */
@media (min-width: 861px) {
    #primary-header ul.menu-items > li.dropdown:hover > ul.dropdown-menu.expandable {
        display: block;
    }
    #primary-header li.dropdown.dropdown-right:hover > ul.menu-right.expandable {
        display: block;
    }
}

#primary-header ul.dropdown-menu.expandable > li {
    display: block;
}

#primary-header ul.dropdown-menu.expandable > li > a.menu-item,
#primary-header ul.menu-right.expandable > li > a.menu-item {
    display: block;
    padding: 10px 28px;
    font-family: 'WorkSans-Regular', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #404040;
    text-decoration: none;
    transition: background .2s, color .2s;
}

#primary-header ul.dropdown-menu.expandable > li > a.menu-item:hover,
#primary-header ul.menu-right.expandable > li > a.menu-item:hover {
    background: #f8f8f8;
    color: #202020;
}

/* Nested submenu (dropdown-right) */
#primary-header li.dropdown.dropdown-right {
    position: relative;
}

#primary-header li.dropdown.dropdown-right > a.inner-parent::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
}

#primary-header ul.menu-right.expandable {
    position: absolute;
    left: 100%;
    top: -20px;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 12px 48px rgba(0,0,0,.12);
    padding: 20px 0;
    display: none;
    z-index: 301;
    list-style: none;
    margin: 0;
}

/* Campaign links in dropdown */
#primary-header li.campaign-links {
    border-top: 1px solid #e8e8e8;
    margin-top: 12px;
    padding-top: 12px;
}

#primary-header li.campaign-links a {
    display: flex !important;
    align-items: center;
    gap: 16px;
    padding: 12px 28px !important;
}

#primary-header li.campaign-links .caption-bg-container {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

#primary-header li.campaign-links .caption-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

#primary-header li.campaign-links .caption-text p {
    margin: 0;
    font-family: 'WorkSans-Regular', sans-serif;
    font-size: 14px;
    color: #202020;
}

/* Mega close button */
#primary-header .mega-close-button {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

/* Search field */
#primary-header li.search-field {
    margin-left: auto;
}

#primary-header .search-icon {
    width: 22px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202020;
    position: relative;
}

#primary-header .search-icon::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23202020' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Location / Regions dropdown */
#primary-header li.location-dropdown {
    margin-left: 4px;
}

#primary-header li.location-dropdown > a.parent-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
}

#primary-header li.location-dropdown .location-word {
    width: 22px;
    height: 22px;
    color: #202020;
}

#primary-header li.location-dropdown .header-chevron {
    width: 10px;
    height: 10px;
    color: #202020;
    transition: transform .2s;
}

#primary-header li.location-dropdown:hover .header-chevron {
    transform: rotate(180deg);
}

/* Regions mega menu */
#primary-header .mega-menu.locations-menu {
    left: auto;
    right: 0;
    min-width: 360px;
    padding: 28px;
}

#primary-header .locations-list .regions-for-mobile {
    display: none;
}

#primary-header .locations-list .country-heading {
    font-family: 'WorkSans-Bold', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    margin-bottom: 16px;
}

#primary-header .country-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

#primary-header .country-list li {
    margin: 0;
}

#primary-header .country-list a.each-country {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    font-size: 14px;
    color: #404040;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s;
}

#primary-header .country-list a.each-country:hover {
    background: #f5f5f5;
    color: #202020;
}

#primary-header .country-list img.country-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

#primary-header .country-list .country-name {
    font-family: 'WorkSans-Regular', sans-serif;
    font-size: 14px;
}

/* Mobile-only elements */
#primary-header .mobile-only {
    display: none;
}

#primary-header .mobile-dropdowns {
    display: none;
}

#primary-header .bottom-mobile-menu {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #202020;
    transition: transform .3s, opacity .3s;
}

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 500;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 140px;
}

.search-overlay.open {
    display: flex;
}

.search-overlay form {
    width: 100%;
    max-width: 720px;
    padding: 0 24px;
}

.search-overlay input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 32px;
    padding: 14px 0;
    outline: none;
    font-family: 'WorkSans-Regular', sans-serif;
}

.search-overlay input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.search-close {
    position: absolute;
    top: 32px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 44px;
    cursor: pointer;
    line-height: 1;
    opacity: .7;
    transition: opacity .2s;
}

.search-close:hover {
    opacity: 1;
}

/* Desktop responsive */
@media (max-width: 1024px) {
    .gray-underline {
        margin: 0 20px;
    }

    #primary-header .inner-header {
        padding: 0 20px;
    }

    #primary-header ul.menu-items > li > a.menu-item {
        padding: 0 12px;
        font-size: 14px;
    }
}

@media (max-width: 860px) {
    .gray-underline {
        margin: 0 16px;
    }

    #primary-header .inner-header {
        padding: 0 16px;
        height: 64px;
    }

    #primary-header .logo.header-logo {
        margin-right: 0;
    }

    #primary-header .logo.header-logo img,
    #primary-header .logo.header-logo .custom-logo {
        height: 32px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 10;
    }

    #primary-header ul.menu-items {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        overflow-y: auto;
        z-index: 400;
        transform: translateX(-100%);
        transition: transform .3s ease;
        display: flex !important;
    }

    #primary-header ul.menu-items.open {
        transform: translateX(0);
    }

    #primary-header ul.menu-items > li {
        width: 100%;
        height: auto;
        flex-direction: column;
        border-bottom: 1px solid #e8e8e8;
    }

    #primary-header ul.menu-items > li > a.menu-item {
        padding: 16px 0;
        font-size: 16px;
        font-weight: 600;
        height: auto;
    }

    #primary-header ul.menu-items .mobile-only {
        display: block;
    }

    #primary-header .mobile-dropdowns {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 16px;
        flex: 1;
    }

    #primary-header .mobile-dropdowns.show {
        display: flex;
    }

    #primary-header .mobile-dropdowns .back-button {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px 4px;
        color: #202020;
    }

    #primary-header .mobile-dropdowns.show .back-button {
        display: flex;
    }

    #primary-header .mobile-dropdowns .dropdowns-labels {
        font-family: 'WorkSans-Bold', sans-serif;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: #999;
    }

    /* Dropdowns become full-screen on mobile */
    #primary-header ul.dropdown-menu.expandable {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 401;
        background: #fff;
        overflow-y: auto;
        padding: 80px 24px 24px;
        border-top: none;
        box-shadow: none;
        display: none;
    }

    #primary-header ul.dropdown-menu.expandable.show {
        display: block;
    }

    #primary-header ul.menu-right.expandable {
        position: relative;
        left: 0;
        top: 0;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: none;
    }

    #primary-header ul.menu-right.expandable.show {
        display: block;
    }

    #primary-header li.dropdown.dropdown-right > a.inner-parent::after {
        display: none;
    }

    #primary-header ul.dropdown-menu.expandable > li > a.menu-item,
    #primary-header ul.menu-right.expandable > li > a.menu-item {
        padding: 14px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    #primary-header li.campaign-links {
        display: none;
    }

    #primary-header .mega-close-button {
        display: block;
    }

    /* Mobile regions menu */
    #primary-header .mega-menu.locations-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
        z-index: 401;
        padding: 80px 24px 24px;
        overflow-y: auto;
    }

    #primary-header .locations-list .regions-for-mobile {
        display: block;
        font-family: 'WorkSans-Bold', sans-serif;
        font-size: 20px;
        margin-bottom: 24px;
        color: #202020;
    }

    #primary-header .country-list {
        grid-template-columns: 1fr;
    }

    #primary-header .bottom-mobile-menu {
        display: block;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e8e8e8;
    }

    #primary-header .bottom-mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #primary-header .bottom-mobile-menu ul li a {
        display: block;
        padding: 12px 0;
        font-family: 'WorkSans-Regular', sans-serif;
        font-size: 15px;
        color: #999;
        text-decoration: none;
    }

    #primary-header li.search-field {
        margin-left: 0;
        order: -1;
    }

    #primary-header .search-icon {
        padding: 16px 0;
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid #e8e8e8;
    }

    #primary-header li.location-dropdown {
        margin-left: 0;
    }

    #primary-header li.location-dropdown > a.parent-item {
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    #primary-header .inner-header {
        padding: 0 12px;
    }
}

/* ---------------- Hero carousel ---------------- */
.hero {
    position: relative;
    background: var(--mtn-black);
    color: #fff;
    overflow: hidden;
}

.hero-slides {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .15) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--mtn-yellow);
    color: var(--mtn-black);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 7px 14px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(34px, 5vw, 60px);
    max-width: 760px;
    color: #fff;
}

.hero-text {
    font-size: 18px;
    max-width: 560px;
    margin: 18px 0 30px;
    color: rgba(255, 255, 255, .9);
}

.hero-controls {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
    z-index: 5;
}

.hero-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    padding: 0;
}

.hero-dots button.active {
    background: var(--mtn-yellow);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
}

.hero-nav:hover {
    background: var(--mtn-yellow);
    color: var(--mtn-black);
}

.hero-nav.prev { left: 24px; }
.hero-nav.next { right: 24px; }

/* ---------------- Quick links ---------------- */
.quick-links {
    background: var(--mtn-black);
}

.quick-links .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.quick-link {
    background: #111;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 3px solid transparent;
    transition: background .2s, border-color .2s;
}

.quick-link:hover {
    background: #1c1c1c;
    border-top-color: var(--mtn-yellow);
}

.quick-link img {
    width: 42px;
    height: 42px;
}

.quick-link span {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.quick-link .small {
    color: var(--mtn-yellow);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ---------------- Section base ---------------- */
.section {
    padding: 80px 0;
}

.section--light {
    background: var(--mtn-light);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(28px, 3.5vw, 40px);
}

.section-head .eyebrow {
    color: var(--mtn-yellow-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 13px;
    margin-bottom: 8px;
}

/* ---------------- Growth platforms ---------------- */
.platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.platform-card {
    background: #fff;
    border: 1px solid var(--mtn-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .14);
}

.platform-card .pf-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f4f5f7;
    overflow: hidden;
}

.platform-card .pf-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.platform-card:hover .pf-image {
    transform: scale(1.06);
}

.platform-card .pf-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.platform-card h3 {
    font-size: 21px;
    margin: 0;
}

.platform-card p {
    color: var(--mtn-gray);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.platform-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-weight: 700;
    font-size: 13px;
    color: var(--mtn-yellow-dark);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.platform-card .learn-more .arrow {
    width: 16px;
    height: 16px;
    transition: transform .3s ease;
}

.platform-card:hover .learn-more .arrow {
    transform: translateX(4px);
}

/* ---------------- CEO message ---------------- */
.ceo {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 60px;
    align-items: center;
}

.ceo blockquote {
    margin: 0;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--mtn-ink);
}

.ceo .ceo-meta {
    margin-top: 24px;
    font-size: 15px;
    color: var(--mtn-gray);
}

.ceo .ceo-meta strong {
    display: block;
    color: var(--mtn-black);
    font-size: 17px;
}

.ceo img {
    width: 100%;
    border-radius: 8px;
}

/* ---------------- Stats ---------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat .num {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 14px;
}

.stat h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}

.stat p {
    color: var(--mtn-gray);
    margin: 0;
    font-size: 14px;
}

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

.news-card {
    background: #fff;
    border: 1px solid var(--mtn-line);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}

.news-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
}

.news-card .thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--mtn-light);
}

.news-card .body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.news-card .tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--mtn-yellow-dark);
}

.news-card .date {
    color: var(--mtn-gray);
    font-size: 13px;
}

.news-card h3 {
    font-size: 19px;
    margin: 0;
    flex: 1;
}

.news-card .more {
    font-weight: 700;
    font-size: 14px;
    color: var(--mtn-black);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ---------------- Vodcast ---------------- */
.vodcast {
    background: var(--mtn-black);
    color: #fff;
}

.vodcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vodcast-card {
    background: #141414;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.vodcast-card .thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vodcast-card .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--mtn-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vodcast-card .play svg {
    width: 22px;
    height: 22px;
    fill: var(--mtn-black);
    margin-left: 3px;
}

.vodcast-card .body {
    padding: 22px;
}

.vodcast-card .tag {
    color: var(--mtn-yellow);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.vodcast-card h3 {
    font-size: 18px;
    margin: 10px 0 0;
    color: #fff;
}

/* ---------------- Banner strip ---------------- */
.banner-strip {
    background: var(--mtn-yellow);
    color: var(--mtn-black);
}

.banner-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 44px 24px;
}

.banner-strip h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 0;
}

/* ---------------- Investors ---------------- */
.investors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.investor-event {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--mtn-line);
}

.investor-event .ev-date {
    flex: 0 0 70px;
    text-align: center;
    background: var(--mtn-black);
    color: #fff;
    border-radius: 6px;
    padding: 12px 0;
}

.investor-event .ev-date .m {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--mtn-yellow);
    font-weight: 800;
}

.investor-event .ev-date .d {
    font-size: 24px;
    font-weight: 900;
}

.investor-event h4 {
    margin: 0 0 4px;
    font-size: 17px;
}

.investor-event p {
    margin: 0;
    color: var(--mtn-gray);
    font-size: 14px;
}

/* ---------------- Footer ---------------- */
.site-footer {
    background: var(--mtn-black);
    color: #fff;
    padding: 70px 0 30px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.footer-cols h4 {
    color: var(--mtn-yellow);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

.footer-cols ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-cols li {
    margin-bottom: 10px;
}

.footer-cols a {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

.footer-cols a:hover {
    color: var(--mtn-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 50px;
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom img {
    height: 32px;
}

.footer-bottom .copy {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-social a:hover {
    background: var(--mtn-yellow);
    color: var(--mtn-black);
    border-color: var(--mtn-yellow);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ---------------- Inner pages ---------------- */
.page-hero {
    background: var(--mtn-black);
    color: #fff;
    padding: 70px 0;
}

.page-hero h1 {
    font-size: clamp(32px, 4vw, 50px);
    color: #fff;
}

.page-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
}

.breadcrumb {
    font-size: 13px;
    color: var(--mtn-yellow);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.entry-content {
    font-size: 17px;
    color: var(--mtn-ink);
}

.entry-content p {
    margin: 0 0 1.2em;
}

.entry-meta {
    color: var(--mtn-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.post-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--mtn-line);
}

.post-item h2 {
    font-size: 24px;
    margin: 0 0 8px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
    .quick-links .container { grid-template-columns: repeat(3, 1fr); }
    .platforms { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .news-grid, .vodcast-grid { grid-template-columns: 1fr 1fr; }
    .ceo { grid-template-columns: 1fr; }
    .investors { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    .hero-slide { min-height: 460px; }
}

@media (max-width: 600px) {
    .quick-links .container { grid-template-columns: 1fr 1fr; }
    .news-grid, .vodcast-grid, .stats { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .section { padding: 54px 0; }
}


