
        .wn-push-control {
            position: fixed;
            right: 88px;
            bottom: 24px;
            z-index: 89;
            display: none;
            align-items: center;
            gap: 9px;
            min-height: 48px;
            padding: 10px 16px;
            border: 1px solid rgba(240, 79, 69, .35);
            border-radius: 999px;
            background:
                linear-gradient(
                    135deg,
                    #17213b,
                    #243c78
                );
            color: #fff;
            font: inherit;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .01em;
            box-shadow:
                0 18px 40px rgba(23, 33, 59, .24);
            cursor: pointer;
            transition:
                transform .2s ease,
                box-shadow .2s ease,
                opacity .2s ease;
        }

        .wn-push-control.is-ready {
            display: inline-flex;
        }

        .wn-push-control:hover,
        .wn-push-control:focus-visible {
            transform: translateY(-2px);
            box-shadow:
                0 22px 44px rgba(23, 33, 59, .3);
        }

        .wn-push-control[disabled] {
            cursor: not-allowed;
            opacity: .65;
            transform: none;
        }

        .wn-push-control.is-active {
            border-color: rgba(42, 189, 117, .5);
            background:
                linear-gradient(
                    135deg,
                    #0f6543,
                    #178554
                );
        }

        .wn-push-control__icon {
            display: grid;
            width: 26px;
            height: 26px;
            place-items: center;
            flex: 0 0 auto;
            border-radius: 50%;
            background: rgba(255, 255, 255, .14);
        }

        .wn-push-control__icon svg {
            width: 15px;
            height: 15px;
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 2;
        }

        @media (max-width: 720px) {
            .wn-push-control {
                right: 76px;
                bottom: 18px;
                max-width: calc(100vw - 100px);
                min-height: 44px;
                padding: 8px 13px;
                font-size: 11px;
            }
        }
    
        /*
        |--------------------------------------------------------------------------
        | Global Premium Shell v2026.07.25.1
        |--------------------------------------------------------------------------
        */

        :root {
            --wn-coral: #f04f45;
            --wn-coral-dark: #c93438;
            --wn-orange: #ff8b46;
            --wn-gold: #e8b86c;
            --wn-navy: #26345f;
            --wn-navy-strong: #1d2b50;
            --wn-navy-dark: #111a31;
            --wn-ink: #17213b;
            --wn-charcoal: #222a39;
            --wn-text: #344054;
            --wn-muted: #778096;
            --wn-line: #e8ebf1;
            --wn-soft: #f5f7fb;
            --wn-white: #ffffff;
            --wn-ivory: #fffaf6;
            --wn-page: #f4f6fa;
            --wn-container: min(1360px, calc(100% - 48px));
            --wn-shadow-soft: 0 14px 38px rgba(17, 26, 49, .08);
            --wn-shadow: 0 28px 70px rgba(17, 26, 49, .14);
            --wn-radius-sm: 13px;
            --wn-radius-md: 20px;
            --wn-radius-lg: 30px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background:
                radial-gradient(
                    circle at 4% 2%,
                    rgba(240, 79, 69, .06),
                    transparent 24%
                ),
                linear-gradient(
                    180deg,
                    #fbfcfe 0%,
                    #f3f5f9 48%,
                    #f7f8fb 100%
                );
            color: var(--wn-text);
            font-family: "Poppins", Arial, Helvetica, sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body.wn-lock {
            overflow: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font: inherit;
        }

        button {
            cursor: pointer;
        }

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

        .wn-container {
            width: var(--wn-container);
            margin-inline: auto;
        }

        .wn-skip-link {
            position: fixed;
            z-index: 9999;
            top: 12px;
            left: 12px;
            padding: 11px 16px;
            border-radius: 999px;
            background: var(--wn-white);
            color: var(--wn-ink);
            box-shadow: var(--wn-shadow);
            font-size: 13px;
            font-weight: 800;
            transform: translateY(-180%);
            transition: transform .2s ease;
        }

        .wn-skip-link:focus {
            transform: translateY(0);
        }

        /*
        |--------------------------------------------------------------------------
        | Utility Bar
        |--------------------------------------------------------------------------
        */

        .wn-utility {
            position: relative;
            z-index: 90;
            background:
                linear-gradient(
                    100deg,
                    var(--wn-navy-dark) 0%,
                    var(--wn-navy-strong) 66%,
                    #2e3f73 100%
                );
            color: rgba(255, 255, 255, .84);
        }

        .wn-utility::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -2px;
            left: 0;
            height: 2px;
            background:
                linear-gradient(
                    90deg,
                    var(--wn-coral),
                    var(--wn-orange),
                    transparent 74%
                );
        }

        .wn-utility-inner {
            min-height: 38px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            font-size: 11px;
            font-weight: 600;
        }

        .wn-utility-left,
        .wn-utility-right,
        .wn-utility-links,
        .wn-socials {
            display: flex;
            align-items: center;
        }

        .wn-utility-left {
            min-width: 0;
            gap: 16px;
        }

        .wn-utility-right {
            justify-content: flex-end;
            gap: 15px;
            white-space: nowrap;
        }

        .wn-utility-label {
            color: #ffffff;
            font-weight: 800;
            letter-spacing: .01em;
        }

        .wn-live-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: #ffffff;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .08em;
        }

        .wn-live-link.is-active {
            color: #dfffee;
        }

        .wn-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #ff675e;
            box-shadow: 0 0 0 5px rgba(255, 103, 94, .12);
            animation: wn-live-pulse 1.8s ease-in-out infinite;
        }


        .wn-live-link.is-active .wn-live-dot {
            background: #39dc91;
            box-shadow: 0 0 0 5px rgba(57, 220, 145, .16);
        }

        @keyframes wn-live-pulse {
            50% {
                box-shadow: 0 0 0 8px rgba(255, 103, 94, 0);
            }
        }

        .wn-socials {
            gap: 7px;
        }

        .wn-social-item {
            width: 24px;
            height: 24px;
            display: inline-grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 999px;
            background: rgba(255, 255, 255, .06);
            color: #ffffff;
            font-size: 10px;
            font-weight: 900;
            transition:
                transform .2s ease,
                background .2s ease,
                border-color .2s ease;
        }

        .wn-social-item:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, .34);
            background: rgba(255, 255, 255, .14);
        }

        /*
        |--------------------------------------------------------------------------
        | Premium Masthead
        |--------------------------------------------------------------------------
        */

        .wn-brand-shell {
            position: relative;
            z-index: 70;
            padding: 18px 0 14px;
        }

        .wn-brand-shell::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(
                    circle at 86% 22%,
                    rgba(255, 139, 70, .10),
                    transparent 28%
                );
        }

        .wn-brand-panel {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns:
                minmax(300px, .92fr)
                minmax(520px, 1.25fr);
            gap: 24px;
            align-items: stretch;
            padding: 18px;
            border: 1px solid rgba(29, 43, 80, .08);
            border-radius: 28px;
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, .98),
                    rgba(255, 250, 246, .97)
                );
            box-shadow:
                0 18px 50px rgba(17, 26, 49, .08);
        }

        .wn-brand-panel::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 6px;
            background:
                linear-gradient(
                    180deg,
                    var(--wn-coral),
                    var(--wn-orange),
                    var(--wn-gold)
                );
        }

        .wn-brand-panel::after {
            content: "";
            position: absolute;
            right: -84px;
            bottom: -112px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 1px solid rgba(240, 79, 69, .10);
            box-shadow:
                0 0 0 34px rgba(240, 79, 69, .025),
                0 0 0 72px rgba(38, 52, 95, .025);
            pointer-events: none;
        }

        .wn-brand-zone {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 18px;
            min-width: 0;
            padding: 12px 14px 12px 20px;
        }

        .wn-brand {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
        }

        .wn-brand-logo {
            width: auto;
            max-width: 300px;
            max-height: 92px;
            object-fit: contain;
            object-position: left center;
        }

        .wn-brand-emblem {
            position: relative;
            flex: 0 0 auto;
            width: 68px;
            height: 68px;
            border-radius: 21px;
            background:
                linear-gradient(
                    145deg,
                    var(--wn-coral),
                    var(--wn-orange)
                );
            box-shadow: 0 18px 30px rgba(240, 79, 69, .22);
        }

        .wn-brand-emblem::before,
        .wn-brand-emblem::after {
            content: "";
            position: absolute;
            top: 17px;
            width: 13px;
            height: 34px;
            border-radius: 4px;
            background: #ffffff;
            transform: skewX(-18deg);
        }

        .wn-brand-emblem::before {
            left: 18px;
        }

        .wn-brand-emblem::after {
            right: 18px;
        }

        .wn-brand-copy {
            display: grid;
            gap: 2px;
            min-width: 0;
        }

        .wn-brand-name {
            color: var(--wn-ink);
            font-size: clamp(31px, 3.1vw, 47px);
            font-weight: 900;
            letter-spacing: -.055em;
            line-height: .98;
        }

        .wn-brand-news {
            color: var(--wn-coral);
        }

        .wn-brand-tagline {
            margin-top: 7px;
            color: var(--wn-muted);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .04em;
        }

        .wn-brand-story {
            display: grid;
            gap: 10px;
            margin-left: auto;
            padding-left: 20px;
            border-left: 1px solid var(--wn-line);
        }

        .wn-brand-story-label {
            color: var(--wn-coral);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .15em;
            text-transform: uppercase;
        }

        .wn-brand-story-copy {
            max-width: 190px;
            color: var(--wn-ink);
            font-size: 12px;
            font-weight: 700;
            line-height: 1.5;
        }

        .wn-command-zone {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 11px;
            min-width: 0;
            padding: 14px 15px;
            border: 1px solid rgba(38, 52, 95, .08);
            border-radius: 21px;
            background:
                linear-gradient(
                    135deg,
                    rgba(245, 247, 251, .94),
                    rgba(255, 255, 255, .98)
                );
        }

        .wn-command-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .wn-command-copy {
            display: grid;
            gap: 2px;
        }

        .wn-command-kicker {
            color: var(--wn-coral);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .wn-command-title {
            color: var(--wn-ink);
            font-size: 15px;
            font-weight: 800;
        }

        .wn-command-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wn-command-link {
            min-height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 0 13px;
            border-radius: 999px;
            background: #ffffff;
            color: var(--wn-ink);
            box-shadow: inset 0 0 0 1px rgba(38, 52, 95, .10);
            font-size: 10px;
            font-weight: 800;
            white-space: nowrap;
            transition:
                transform .2s ease,
                box-shadow .2s ease,
                color .2s ease;
        }

        .wn-command-link:hover {
            transform: translateY(-2px);
            color: var(--wn-coral-dark);
            box-shadow:
                inset 0 0 0 1px rgba(240, 79, 69, .20),
                0 10px 22px rgba(17, 26, 49, .08);
        }

        .wn-command-link.is-primary {
            background:
                linear-gradient(
                    135deg,
                    var(--wn-coral),
                    var(--wn-orange)
                );
            color: #ffffff;
            box-shadow: 0 11px 22px rgba(240, 79, 69, .18);
        }

        .wn-command-link.is-primary:hover {
            color: #ffffff;
            box-shadow: 0 15px 28px rgba(240, 79, 69, .25);
        }

        .wn-header-search {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 9px;
        }

        .wn-header-search-input {
            min-width: 0;
            height: 48px;
            padding: 0 18px;
            border: 1px solid rgba(38, 52, 95, .10);
            border-radius: 15px;
            outline: none;
            background: #ffffff;
            color: var(--wn-ink);
            box-shadow: 0 8px 20px rgba(17, 26, 49, .04);
            font-size: 12px;
            font-weight: 600;
            transition:
                border-color .2s ease,
                box-shadow .2s ease;
        }

        .wn-header-search-input:focus {
            border-color: rgba(240, 79, 69, .50);
            box-shadow:
                0 0 0 4px rgba(240, 79, 69, .08),
                0 10px 22px rgba(17, 26, 49, .05);
        }

        .wn-header-search-submit {
            min-width: 104px;
            height: 48px;
            border: 0;
            border-radius: 15px;
            background:
                linear-gradient(
                    135deg,
                    var(--wn-navy-strong),
                    #30447f
                );
            color: #ffffff;
            font-size: 11px;
            font-weight: 900;
            box-shadow: 0 12px 26px rgba(29, 43, 80, .20);
            transition:
                transform .2s ease,
                box-shadow .2s ease;
        }

        .wn-header-search-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(29, 43, 80, .27);
        }

        .wn-topic-strip {
            display: flex;
            align-items: center;
            gap: 7px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .wn-topic-strip::-webkit-scrollbar {
            display: none;
        }

        .wn-topic-chip {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            min-height: 29px;
            padding: 0 11px;
            border: 1px solid rgba(38, 52, 95, .08);
            border-radius: 999px;
            background: rgba(255, 255, 255, .84);
            color: var(--wn-text);
            font-size: 9px;
            font-weight: 800;
            white-space: nowrap;
            transition:
                transform .2s ease,
                border-color .2s ease,
                color .2s ease;
        }

        .wn-topic-chip::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 999px;
            background: var(--wn-orange);
        }

        .wn-topic-chip:hover {
            transform: translateY(-1px);
            border-color: rgba(240, 79, 69, .24);
            color: var(--wn-coral-dark);
        }

        /*
        |--------------------------------------------------------------------------
        | Sticky Editorial Navigation
        |--------------------------------------------------------------------------
        */

        .wn-navigation {
            position: sticky;
            z-index: 80;
            top: 0;
            padding: 0 0 14px;
        }

        .wn-navigation-inner {
            min-height: 55px;
            display: flex;
            align-items: center;
            gap: 3px;
            overflow-x: auto;
            padding: 6px;
            border: 1px solid rgba(38, 52, 95, .08);
            border-radius: 18px;
            background: rgba(255, 255, 255, .94);
            box-shadow: 0 14px 34px rgba(17, 26, 49, .09);
            backdrop-filter: blur(18px);
            scrollbar-width: none;
        }

        .wn-navigation-inner::-webkit-scrollbar {
            display: none;
        }

        .wn-home-link,
        .wn-nav-link,
        .wn-nav-action {
            flex: 0 0 auto;
            min-height: 41px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            border-radius: 13px;
            font-size: 10px;
            font-weight: 800;
            white-space: nowrap;
            transition:
                background .2s ease,
                color .2s ease,
                transform .2s ease,
                box-shadow .2s ease;
        }

        .wn-home-link {
            width: 43px;
            background:
                linear-gradient(
                    135deg,
                    var(--wn-coral),
                    var(--wn-orange)
                );
            color: #ffffff;
            box-shadow: 0 10px 22px rgba(240, 79, 69, .18);
        }

        .wn-home-link svg,
        .wn-nav-action svg {
            width: 18px;
            height: 18px;
        }

        .wn-home-link:hover,
        .wn-home-link.is-active {
            transform: translateY(-1px);
            box-shadow: 0 14px 26px rgba(240, 79, 69, .25);
        }

        .wn-nav-link {
            padding: 0 12px;
            color: #2d3444;
        }

        .wn-nav-link:hover,
        .wn-nav-link.is-active {
            background: rgba(38, 52, 95, .07);
            color: var(--wn-coral-dark);
        }


        .wn-nav-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #d64e47;
            font-weight: 900;
            letter-spacing: .035em;
        }

        .wn-nav-live-dot {
            width: 7px;
            height: 7px;
            flex: 0 0 7px;
            border-radius: 999px;
            background: #ff675e;
            box-shadow: 0 0 0 4px rgba(255, 103, 94, .10);
        }

        .wn-nav-live.has-active-live {
            color: #08794d;
            background: #e9fbf2;
        }

        .wn-nav-live.has-active-live .wn-nav-live-dot {
            background: #20c878;
            box-shadow: 0 0 0 4px rgba(32, 200, 120, .14);
            animation: wn-live-pulse 1.8s ease-in-out infinite;
        }

        .wn-nav-link.is-active {
            box-shadow: inset 0 -2px 0 var(--wn-coral);
        }

        .wn-nav-spacer {
            flex: 1 0 18px;
        }

        .wn-nav-action {
            gap: 7px;
            padding: 0 12px;
            background: var(--wn-navy-dark);
            color: #ffffff;
        }

        .wn-nav-action:hover,
        .wn-nav-action.is-active {
            transform: translateY(-1px);
            background: var(--wn-coral);
        }

        .wn-menu-button {
            display: none;
        }

        /*
        |--------------------------------------------------------------------------
        | Main, Search Overlay, Drawer
        |--------------------------------------------------------------------------
        */

        .wn-main {
            position: relative;
            z-index: 1;
            min-height: 48vh;
        }

        .wn-search-overlay {
            position: fixed;
            z-index: 150;
            inset: 0;
            display: grid;
            place-items: start center;
            padding: 11vh 24px 24px;
            background: rgba(10, 16, 31, .72);
            backdrop-filter: blur(12px);
            opacity: 0;
            visibility: hidden;
            transition:
                opacity .25s ease,
                visibility .25s ease;
        }

        .wn-search-overlay.is-open {
            opacity: 1;
            visibility: visible;
        }

        .wn-search-modal {
            width: min(760px, 100%);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .10);
            border-radius: 28px;
            background:
                linear-gradient(
                    145deg,
                    #ffffff,
                    #fff9f5
                );
            box-shadow: 0 34px 90px rgba(6, 10, 22, .34);
            transform: translateY(-16px) scale(.98);
            transition: transform .25s ease;
        }

        .wn-search-overlay.is-open .wn-search-modal {
            transform: translateY(0) scale(1);
        }

        .wn-search-modal-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            padding: 24px 26px 18px;
            border-bottom: 1px solid var(--wn-line);
        }

        .wn-search-modal-kicker {
            color: var(--wn-coral);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .15em;
            text-transform: uppercase;
        }

        .wn-search-modal-title {
            margin: 5px 0 0;
            color: var(--wn-ink);
            font-size: clamp(22px, 4vw, 34px);
            line-height: 1.15;
        }

        .wn-icon-button {
            flex: 0 0 auto;
            width: 42px;
            height: 42px;
            display: inline-grid;
            place-items: center;
            border: 0;
            border-radius: 13px;
            background: var(--wn-soft);
            color: var(--wn-ink);
        }

        .wn-icon-button svg {
            width: 20px;
            height: 20px;
        }

        .wn-search-modal-body {
            padding: 22px 26px 28px;
        }

        .wn-search-modal-form {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 10px;
        }

        .wn-search-modal-form input {
            min-width: 0;
            height: 56px;
            padding: 0 18px;
            border: 1px solid var(--wn-line);
            border-radius: 16px;
            outline: none;
            color: var(--wn-ink);
            font-size: 13px;
            font-weight: 600;
        }

        .wn-search-modal-form input:focus {
            border-color: rgba(240, 79, 69, .45);
            box-shadow: 0 0 0 4px rgba(240, 79, 69, .08);
        }

        .wn-search-modal-form button {
            min-width: 120px;
            border: 0;
            border-radius: 16px;
            background:
                linear-gradient(
                    135deg,
                    var(--wn-coral),
                    var(--wn-orange)
                );
            color: #ffffff;
            font-size: 11px;
            font-weight: 900;
        }

        .wn-mobile-layer {
            position: fixed;
            z-index: 140;
            inset: 0;
            pointer-events: none;
        }

        .wn-menu-backdrop {
            position: absolute;
            inset: 0;
            border: 0;
            background: rgba(10, 16, 31, .66);
            opacity: 0;
            transition: opacity .25s ease;
        }

        .wn-mobile-drawer {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(390px, 90vw);
            overflow-y: auto;
            padding: 20px;
            background:
                linear-gradient(
                    180deg,
                    #ffffff,
                    #f7f8fb
                );
            box-shadow: -28px 0 70px rgba(10, 16, 31, .24);
            transform: translateX(104%);
            transition: transform .28s ease;
        }

        .wn-mobile-layer.is-open {
            pointer-events: auto;
        }

        .wn-mobile-layer.is-open .wn-menu-backdrop {
            opacity: 1;
        }

        .wn-mobile-layer.is-open .wn-mobile-drawer {
            transform: translateX(0);
        }

        .wn-drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--wn-line);
        }

        .wn-drawer-brand {
            color: var(--wn-ink);
            font-size: 19px;
            font-weight: 900;
        }

        .wn-drawer-brand span {
            color: var(--wn-coral);
        }

        /* wn-mobile-drawer-logo-css-v1 */
        .wn-drawer-head {
            position: sticky;
            top: 0;
            z-index: 8;
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .wn-drawer-brand {
            display: flex;
            min-width: 0;
            align-items: center;
        }

        .wn-drawer-brand-link {
            display: inline-flex;
            min-width: 0;
            min-height: 44px;
            max-width: min(172px, calc(100vw - 126px));
            align-items: center;
            text-decoration: none;
        }

        .wn-drawer-logo {
            display: block;
            width: auto;
            max-width: 164px;
            height: auto;
            max-height: 42px;
            object-fit: contain;
            object-position: left center;
        }

        .wn-drawer-brand-fallback {
            overflow: hidden;
            color: #17213b;
            font-size: 20px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -.04em;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .wn-drawer-brand-title {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            white-space: nowrap;
        }

        @media (max-width: 420px) {
            .wn-drawer-brand-link {
                max-width: min(156px, calc(100vw - 118px));
            }

            .wn-drawer-logo {
                max-width: 150px;
                max-height: 38px;
            }
        }

        .wn-drawer-cta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 9px;
            padding: 18px 0;
        }

        .wn-drawer-cta a {
            min-height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 13px;
            background: var(--wn-soft);
            color: var(--wn-ink);
            font-size: 10px;
            font-weight: 800;
        }

        .wn-drawer-cta a:first-child {
            background:
                linear-gradient(
                    135deg,
                    var(--wn-coral),
                    var(--wn-orange)
                );
            color: #ffffff;
        }

        .wn-drawer-section {
            padding: 16px 0;
            border-top: 1px solid var(--wn-line);
        }

        .wn-drawer-title {
            margin: 0 0 10px;
            color: var(--wn-muted);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .wn-drawer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7px;
        }

        .wn-drawer-link {
            min-height: 39px;
            display: flex;
            align-items: center;
            padding: 0 11px;
            border-radius: 11px;
            background: #ffffff;
            color: var(--wn-text);
            box-shadow: inset 0 0 0 1px var(--wn-line);
            font-size: 10px;
            font-weight: 700;
        }

        .wn-drawer-link:hover {
            color: var(--wn-coral-dark);
        }

        /*
        |--------------------------------------------------------------------------
        | Corporate Media Footer
        |--------------------------------------------------------------------------
        */

        .wn-footer {
            position: relative;
            overflow: hidden;
            margin-top: 82px;
            padding-top: 38px;
            background:
                radial-gradient(
                    circle at 92% 10%,
                    rgba(255, 139, 70, .14),
                    transparent 26%
                ),
                linear-gradient(
                    145deg,
                    #111a31 0%,
                    #1b294d 56%,
                    #253761 100%
                );
            color: rgba(255, 255, 255, .76);
        }

        .wn-footer::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 3px;
            background:
                linear-gradient(
                    90deg,
                    var(--wn-coral),
                    var(--wn-orange),
                    var(--wn-gold),
                    transparent 88%
                );
        }

        .wn-footer::after {
            content: "WAKTU";
            position: absolute;
            right: -30px;
            bottom: 50px;
            color: rgba(255, 255, 255, .025);
            font-size: clamp(120px, 18vw, 260px);
            font-weight: 900;
            letter-spacing: -.08em;
            line-height: .8;
            pointer-events: none;
        }

        .wn-footer-cta-wrap,
        .wn-footer-content,
        .wn-footer-bottom {
            position: relative;
            z-index: 1;
        }

        .wn-footer-cta {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) auto;
            gap: 28px;
            align-items: center;
            padding: 28px 30px;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 26px;
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, .09),
                    rgba(255, 255, 255, .035)
                );
            box-shadow: 0 26px 64px rgba(5, 9, 20, .22);
            backdrop-filter: blur(16px);
        }

        .wn-footer-cta-kicker {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: #ffb27b;
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .15em;
            text-transform: uppercase;
        }

        .wn-footer-cta-kicker::before {
            content: "";
            width: 26px;
            height: 2px;
            background:
                linear-gradient(
                    90deg,
                    var(--wn-coral),
                    var(--wn-orange)
                );
        }

        .wn-footer-cta-title {
            max-width: 760px;
            margin: 8px 0 5px;
            color: #ffffff;
            font-size: clamp(25px, 3.7vw, 45px);
            line-height: 1.12;
            letter-spacing: -.04em;
        }

        .wn-footer-cta-copy {
            max-width: 720px;
            margin: 0;
            color: rgba(255, 255, 255, .67);
            font-size: 12px;
        }

        .wn-footer-cta-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            flex-wrap: wrap;
        }

        .wn-footer-cta-button {
            min-height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0 17px;
            border-radius: 14px;
            background: rgba(255, 255, 255, .08);
            color: #ffffff;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
            font-size: 10px;
            font-weight: 800;
            transition:
                transform .2s ease,
                background .2s ease;
        }

        .wn-footer-cta-button:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, .14);
        }

        .wn-footer-cta-button.is-primary {
            background:
                linear-gradient(
                    135deg,
                    var(--wn-coral),
                    var(--wn-orange)
                );
            box-shadow: 0 14px 28px rgba(240, 79, 69, .20);
        }

        .wn-footer-content {
            padding: 48px 0 34px;
        }

        .wn-footer-grid {
            display: grid;
            grid-template-columns:
                minmax(260px, 1.28fr)
                minmax(160px, .72fr)
                minmax(280px, 1fr)
                minmax(180px, .76fr);
            gap: 38px;
        }

        .wn-footer-brand {
            display: grid;
            align-content: start;
            gap: 16px;
        }

        .wn-footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            width: fit-content;
        }

        .wn-footer-logo img {
            width: auto;
            max-width: 230px;
            max-height: 68px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .wn-footer-logo-mark {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 15px;
            background:
                linear-gradient(
                    145deg,
                    var(--wn-coral),
                    var(--wn-orange)
                );
            color: #ffffff;
            font-size: 18px;
            font-weight: 900;
            box-shadow: 0 14px 26px rgba(240, 79, 69, .22);
        }

        .wn-footer-logo-copy {
            display: grid;
            gap: 1px;
        }

        .wn-footer-logo-name {
            color: #ffffff;
            font-size: 20px;
            font-weight: 900;
            letter-spacing: -.04em;
        }

        .wn-footer-logo-tagline {
            color: #ffb27b;
            font-size: 9px;
            font-weight: 700;
        }

        .wn-footer-about {
            max-width: 410px;
            margin: 0;
            color: rgba(255, 255, 255, .63);
            font-size: 11px;
            line-height: 1.75;
        }

        .wn-footer-contact-list {
            display: grid;
            gap: 8px;
        }

        .wn-footer-contact {
            display: grid;
            grid-template-columns: 34px minmax(0, 1fr);
            gap: 10px;
            align-items: start;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 13px;
            background: rgba(255, 255, 255, .035);
        }

        .wn-footer-contact-icon {
            width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            background: rgba(255, 139, 70, .12);
            color: #ffb27b;
            font-size: 13px;
            font-weight: 900;
        }

        .wn-footer-contact-label {
            color: rgba(255, 255, 255, .44);
            font-size: 8px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .wn-footer-contact-value {
            margin-top: 2px;
            color: rgba(255, 255, 255, .82);
            font-size: 10px;
            font-weight: 600;
            line-height: 1.6;
        }

        .wn-footer-heading {
            position: relative;
            margin: 3px 0 18px;
            padding-bottom: 12px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 800;
        }

        .wn-footer-heading::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 34px;
            height: 2px;
            background:
                linear-gradient(
                    90deg,
                    var(--wn-coral),
                    var(--wn-orange)
                );
        }

        .wn-footer-links {
            display: grid;
            gap: 9px;
        }

        .wn-footer-rubric-links {
            grid-template-columns: 1fr 1fr;
            gap: 8px 14px;
        }

        .wn-footer-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            color: rgba(255, 255, 255, .67);
            font-size: 10px;
            font-weight: 600;
            transition:
                color .2s ease,
                transform .2s ease;
        }

        .wn-footer-link::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 999px;
            background: rgba(255, 178, 123, .55);
            transition: background .2s ease;
        }

        .wn-footer-link:hover {
            color: #ffffff;
            transform: translateX(3px);
        }

        .wn-footer-link:hover::before {
            background: var(--wn-coral);
        }

        .wn-footer-network-card {
            margin-top: 20px;
            padding: 14px;
            border: 1px solid rgba(255, 255, 255, .09);
            border-radius: 16px;
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, .07),
                    rgba(255, 255, 255, .025)
                );
        }

        .wn-footer-network-label {
            color: #ffb27b;
            font-size: 8px;
            font-weight: 900;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .wn-footer-network-title {
            margin: 5px 0 2px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 800;
        }

        .wn-footer-network-copy {
            margin: 0 0 10px;
            color: rgba(255, 255, 255, .54);
            font-size: 9px;
            line-height: 1.6;
        }

        .wn-footer-network-link {
            color: #ffffff;
            font-size: 9px;
            font-weight: 800;
        }

        .wn-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            background: rgba(7, 12, 25, .34);
        }

        .wn-footer-bottom-inner {
            min-height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .wn-footer-legal {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, .50);
            font-size: 9px;
            font-weight: 600;
        }

        .wn-footer-legal-heart {
            color: var(--wn-coral);
        }

        .wn-footer-socials {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .wn-footer-social {
            width: 33px;
            height: 33px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, .10);
            border-radius: 11px;
            background: rgba(255, 255, 255, .04);
            color: #ffffff;
            font-size: 10px;
            font-weight: 900;
            transition:
                transform .2s ease,
                background .2s ease;
        }

        .wn-footer-social:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, .12);
        }

        /*
        |--------------------------------------------------------------------------
        | Responsive
        |--------------------------------------------------------------------------
        */

        @media (max-width: 1160px) {
            :root {
                --wn-container: min(100% - 34px, 1220px);
            }

            .wn-brand-panel {
                grid-template-columns: minmax(280px, .88fr) minmax(430px, 1.12fr);
            }

            .wn-brand-story {
                display: none;
            }

            .wn-nav-link {
                padding-inline: 10px;
            }

            .wn-footer-grid {
                grid-template-columns: 1.2fr .8fr 1fr;
            }

            .wn-footer-grid > section:last-child {
                grid-column: 2 / -1;
            }
        }

        @media (max-width: 900px) {
            :root {
                --wn-container: min(100% - 28px, 900px);
            }

            .wn-utility-right span:first-child,
            .wn-utility-label {
                display: none;
            }

            .wn-brand-panel {
                grid-template-columns: 1fr;
            }

            .wn-brand-zone {
                justify-content: center;
                padding-block: 10px;
            }

            .wn-command-zone {
                padding: 13px;
            }

            .wn-navigation {
                padding-bottom: 10px;
            }

            .wn-navigation-inner {
                min-height: 52px;
            }

            .wn-navigation .wn-nav-link {
                display: none;
            }

            .wn-nav-spacer {
                display: block;
            }

            .wn-menu-button {
                display: inline-flex;
            }

            .wn-footer-cta {
                grid-template-columns: 1fr;
            }

            .wn-footer-cta-actions {
                justify-content: flex-start;
            }

            .wn-footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .wn-footer-grid > section:last-child {
                grid-column: auto;
            }
        }

        @media (max-width: 640px) {
            :root {
                --wn-container: min(100% - 22px, 620px);
                --wn-radius-lg: 24px;
            }

            .wn-utility-inner {
                min-height: 34px;
                font-size: 9px;
            }

            .wn-utility-left {
                gap: 11px;
            }

            .wn-socials {
                display: none;
            }

            .wn-utility-right {
                gap: 0;
            }

            .wn-utility-right span:first-child {
                display: none;
            }

            .wn-brand-shell {
                padding: 12px 0 10px;
            }

            .wn-brand-panel {
                gap: 10px;
                padding: 12px;
                border-radius: 22px;
            }

            .wn-brand-zone {
                justify-content: flex-start;
                padding: 8px 8px 10px 12px;
            }

            .wn-brand-logo {
                max-width: 220px;
                max-height: 68px;
            }

            .wn-brand-emblem {
                width: 52px;
                height: 52px;
                border-radius: 17px;
            }

            .wn-brand-emblem::before,
            .wn-brand-emblem::after {
                top: 13px;
                width: 10px;
                height: 27px;
            }

            .wn-brand-emblem::before {
                left: 14px;
            }

            .wn-brand-emblem::after {
                right: 14px;
            }

            .wn-brand-name {
                font-size: 30px;
            }

            .wn-brand-tagline {
                font-size: 9px;
            }

            .wn-command-top {
                align-items: flex-start;
            }

            .wn-command-title {
                font-size: 12px;
            }

            .wn-command-actions {
                display: none;
            }

            .wn-header-search {
                grid-template-columns: 1fr;
            }

            .wn-header-search-input,
            .wn-header-search-submit {
                height: 44px;
            }

            .wn-header-search-submit {
                min-width: 0;
            }

            .wn-navigation-inner {
                padding: 5px;
                border-radius: 15px;
            }

            .wn-home-link,
            .wn-nav-action {
                min-height: 39px;
            }

            .wn-home-link {
                width: 41px;
            }

            .wn-nav-search span {
                display: none;
            }

            .wn-search-overlay {
                padding: 7vh 12px 14px;
            }

            .wn-search-modal {
                border-radius: 22px;
            }

            .wn-search-modal-head,
            .wn-search-modal-body {
                padding-inline: 18px;
            }

            .wn-search-modal-form {
                grid-template-columns: 1fr;
            }

            .wn-search-modal-form button {
                min-height: 50px;
            }

            .wn-footer {
                margin-top: 58px;
                padding-top: 24px;
            }

            .wn-footer-cta {
                padding: 22px 18px;
                border-radius: 21px;
            }

            .wn-footer-cta-actions {
                display: grid;
                grid-template-columns: 1fr;
            }

            .wn-footer-cta-button {
                width: 100%;
            }

            .wn-footer-content {
                padding: 36px 0 26px;
            }

            .wn-footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .wn-footer-rubric-links {
                grid-template-columns: 1fr 1fr;
            }

            .wn-footer-bottom-inner {
                min-height: 86px;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
            }

            .wn-footer-legal {
                gap: 6px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
            }
        }
    