﻿:root {
            --blue: #148cfe;
            --blue-dark: #18437d;
            --red: #c0392b;
            --red-hover: #d03e2f;
            --bg: #f0f0f0;
            --muted: #b5b5b5;
            --card: #fafafa;
            --green-wa: #25d366;
            --prose-purple: #8e44ad;
            --prose-green: #27ae60;
            --prose-text: #222;
            --hero-track-min-h: 304px;
            --ticker-bar-h: 48px;
            --call-bar-offset: 56px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-offset, 80px);
        }
        body {
            font-family: 'Almarai', Tahoma, 'Segoe UI', Arial, sans-serif;
            background: var(--bg);
            color: #333;
            line-height: 1.3;
            font-size: 14px;
            padding-bottom: calc(var(--ticker-bar-h) + var(--call-bar-offset) + 14px);
        }
        a { color: var(--red); text-decoration: none; }
        a:hover { color: var(--red-hover); }

        /* icons — Material (live CMS) + Font Awesome brands */
        .material-icons {
            font-family: 'Material Icons';
            font-weight: normal;
            font-style: normal;
            font-size: 24px;
            line-height: 1;
            width: 1em;
            height: 1em;
            letter-spacing: normal;
            text-transform: none;
            display: inline-block;
            white-space: nowrap;
            word-wrap: normal;
            direction: ltr;
            -webkit-font-feature-settings: 'liga';
            font-feature-settings: 'liga';
            -webkit-font-smoothing: antialiased;
        }
        .fa-solid, .fas {
            font-family: 'Font Awesome 6 Free' !important;
            font-weight: 900;
            font-style: normal;
        }
        .fa-brands, .fab {
            font-family: 'Font Awesome 6 Brands' !important;
            font-weight: 400;
            font-style: normal;
        }

        /* header */
        .header-wrapper { border-bottom: 6px solid var(--blue); margin-bottom: 20px; background: #fff; }
        .toolbar {
            max-width: 1180px;
            margin: 0 auto;
            padding: 8px 10px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .logo img { max-height: 90px; max-width: 180px; width: 100%; height: auto; object-fit: contain; }
        .logo a {
            display: block;
            max-width: 180px;
        }
        .toolbar--desktop .logo a { max-height: 90px; }
        .search-wrap { flex: 1; position: relative; min-width: 200px; }
        .search-wrap input {
            width: 100%;
            padding: 12px 40px 12px 12px;
            border: 2px solid var(--bg);
            border-radius: 6px;
            font-family: inherit;
            font-size: 16px;
            font-weight: 700;
        }
        .search-wrap input:focus { border-color: var(--blue-dark); outline: none; }
        .search-wrap .search-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 26px;
            pointer-events: none;
        }
        .social-row { display: flex; gap: 5px; align-items: center; flex-shrink: 0; }
        .social-row .social-link {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #fff;
            text-decoration: none;
            flex-shrink: 0;
            line-height: 1;
        }
        .social-row .social-link i {
            font-size: 13px;
            color: #fff;
            line-height: 1;
            display: block;
        }
        .social-link--fb { background: #1877f2; }
        .social-link--x { background: #0f1419; }
        .social-link--yt { background: #ff0000; }
        .social-link--ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }

        /* layout */
        #center { max-width: 1180px; margin: 10px auto; padding: 0 10px; overflow: visible; }
        .site { display: flex; flex-wrap: nowrap; gap: 10px; align-items: flex-start; overflow: visible; }

        /* sidebar — site-menu */
        .site-menu {
            width: 20%;
            min-width: 200px;
            max-width: 240px;
            flex-shrink: 0;
            position: sticky;
            top: 4px;
            align-self: flex-start;
            z-index: 20;
            overflow: visible;
        }
        .site-menu ul { list-style: none; padding: 0; margin: 0; overflow: visible; }
        .site-menu > ul > li {
            background: #fff;
            border-radius: 6px;
            margin-bottom: 5px;
            position: relative;
            overflow: visible;
        }
        .site-menu > ul > li > a {
            display: flex;
            align-items: center;
            min-height: 36px;
            padding: 8px 10px;
            color: var(--blue-dark);
            font-weight: 500;
        }
        .site-menu > ul > li:hover { background: var(--card); }
        .site-menu > ul > li.active > a { font-weight: 800; color: var(--blue); }
        .site-menu .sub {
            display: block;
            visibility: hidden;
            opacity: 0;
            position: absolute;
            right: 100%;
            top: 0;
            margin-right: 4px;
            background: var(--bg);
            padding: 3px;
            min-width: 190px;
            box-shadow: 0 0 2px var(--blue);
            border-radius: 6px;
            z-index: 50;
            transition: opacity 0.2s, visibility 0.2s;
        }
        .site-menu li.has-sub:hover > .sub,
        .site-menu li.has-sub:focus-within > .sub {
            visibility: visible;
            opacity: 1;
        }
        .site-menu .sub li { background: #fff; border-radius: 4px; margin-bottom: 3px; }
        .site-menu .sub li:last-child { margin-bottom: 0; }
        .site-menu .sub a { padding: 8px 10px; display: block; color: var(--blue-dark); font-size: 13px; white-space: nowrap; }
        .site-menu .sub a:hover { background: var(--card); border-radius: 4px; }
        .site-menu .arrow { margin-inline-start: auto; font-size: 22px; opacity: 0.75; color: var(--blue-dark); }

        .site-content { flex: 1; min-width: 0; width: 0; }

        /* breadcrumb */
        .breadcrumb {
            padding: 10px;
            background: #fff;
            box-shadow: 0 0 2px var(--muted);
            border-radius: 6px;
            margin-bottom: 10px;
        }
        .breadcrumb a + a::before { content: " / "; color: var(--muted); }

        /* breaking news */
        .breakingnews {
            display: flex;
            background: #fff;
            box-shadow: 0 0 2px var(--muted);
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 10px;
            min-height: 48px;
        }
        .breakingnews-title {
            background: var(--red);
            color: #fff;
            padding: 10px 16px;
            font-weight: 700;
            white-space: nowrap;
            position: relative;
        }
        .breakingnews-title::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            margin-inline-start: 8px;
            vertical-align: middle;
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        .breakingnews-text {
            color: var(--red);
            padding: 10px;
            font-weight: 700;
            flex: 1;
            line-height: 1.45;
        }

        /* article cards — 3 per row on desktop */
        .article-row {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }
        .article-row > .empty-state { grid-column: 1 / -1; }
        .article-brief {
            min-width: 0;
            background: #fff;
            box-shadow: 0 0 2px var(--muted);
            border-radius: 6px;
            overflow: hidden;
            line-height: 1.4;
            padding-bottom: 12px;
            position: relative;
            transition: box-shadow 0.35s ease, transform 0.35s ease;
        }
        .article-brief::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--blue);
            transform: scaleX(0);
            transform-origin: right center;
            transition: transform 0.35s ease;
        }
        .article-brief:hover {
            box-shadow: 0 8px 22px rgba(20, 140, 254, 0.18);
            transform: translateY(-4px);
        }
        .article-brief:hover::after { transform: scaleX(1); }
        .article-brief .img-wrap {
            position: relative;
            overflow: hidden;
            height: 200px;
        }
        .article-brief .img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
        }
        .article-brief:hover .img-wrap::after { opacity: 1; }
        .article-brief .img-wrap img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
            display: block;
        }
        .article-brief .img-link {
            display: block;
            height: 200px;
        }
        .article-brief .article-brief-body {
            display: block;
            color: inherit;
        }
        .article-brief .article-brief-body:hover { color: inherit; }
        .article-brief .share-panel {
            position: absolute;
            top: 8px;
            left: 8px;
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            max-width: 44px;
        }
        .article-brief .share-top {
            position: relative;
            top: auto;
            left: auto;
            width: 40px;
            height: 40px;
            border: none;
            z-index: 2;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            padding: 0;
            cursor: pointer;
            border-radius: 6px;
            display: grid;
            place-items: center;
            transition: background 0.25s ease, transform 0.25s ease, border-radius 0.25s ease;
        }
        .article-brief .share-top:hover,
        .article-brief .share-panel.is-open .share-top {
            background: rgba(0, 0, 0, 0.72);
        }
        .article-brief .share-panel.is-open .share-top {
            border-radius: 6px 6px 0 0;
            width: 100%;
        }
        .article-brief .share-drop {
            visibility: hidden;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            position: relative;
            top: auto;
            left: auto;
            display: flex;
            flex-direction: column;
            gap: 6px;
            z-index: 3;
            background: #fff;
            border: none;
            border-radius: 0 0 8px 8px;
            padding: 0 5px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
            transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.35s ease, padding 0.3s ease;
        }
        .article-brief .share-panel.is-open {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
            max-width: 48px;
        }
        .article-brief .share-panel.is-open .share-drop {
            visibility: visible;
            opacity: 1;
            max-height: 320px;
            padding: 6px 5px 8px;
        }
        @media (hover: hover) {
            .article-brief .share-panel:hover .share-drop {
                visibility: visible;
                opacity: 1;
                max-height: 320px;
                padding: 6px 5px 8px;
            }
            .article-brief .share-panel:hover {
                background: #fff;
                border-radius: 8px;
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
                max-width: 48px;
            }
            .article-brief .share-panel:hover .share-top {
                border-radius: 6px 6px 0 0;
                width: 100%;
            }
        }
        .share-top .material-icons { font-size: 20px; }
        .article-brief .share-drop a.share-net {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }
        .article-brief .share-drop a.share-net:hover { transform: scale(1.12); opacity: 0.92; }
        .article-brief .share-drop a.share-net i { font-size: 15px; color: #fff; }
        .article-brief .share-drop .share-fb { background: #3b5998; }
        .article-brief .share-drop .share-msn { background: #0084ff; }
        .article-brief .share-drop .share-tw { background: #1da1f2; }
        .article-brief .share-drop .share-pin { background: #bd081c; }
        .article-brief .share-drop .share-in { background: #0077b5; }
        .article-brief .share-drop .share-wa { background: #25d366; }
        .article-brief .share-drop .share-tg { background: #0088cc; }
        .article-brief:hover .img-wrap img { transform: scale(1.1); }
        .ticker-title .material-icons { font-size: 22px; }
        .ticker-text .material-icons.md-inline { font-size: 16px; vertical-align: middle; }
        .article-brief .title { padding: 8px; }
        .article-brief .title h2 { font-size: inherit; font-weight: 700; color: var(--red); margin: 0; }
        .article-brief .brief-text {
            padding: 6px 8px;
            border-top: 1px solid var(--muted);
            color: #000;
            opacity: 0.7;
            text-align: justify;
            font-size: 13px;
        }

        /* footer — live CMS */
        .footer-wrapper {
            background: var(--blue);
            padding: 10px 0 0;
            margin-top: 20px;
        }
        footer.site-footer {
            max-width: 1180px;
            margin: 0 auto;
            text-align: center;
            color: #fff;
            padding: 10px 14px;
            line-height: 1.55;
            background: var(--blue-dark);
            font-size: 13px;
        }
        footer.site-footer a {
            color: #fff;
            font-weight: 700;
            text-decoration: none;
        }
        footer.site-footer a:hover { text-decoration: underline; }
        .footer-seo-sep { opacity: 0.75; }
        .footer-contact-inline { white-space: nowrap; }
        .footer-social-bar {
            background: var(--blue);
            padding: 8px 14px 10px;
        }
        .footer-social {
            max-width: 1180px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 7px;
            flex-wrap: wrap;
        }
        .footer-social a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            line-height: 1;
        }
        .footer-social a:hover {
            transform: scale(1.08);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .footer-social a i {
            font-size: 13px;
            color: #fff;
            line-height: 1;
            display: block;
        }
        .footer-social-fb { background: #1877f2; }
        .footer-social-x { background: #0f1419; }
        .footer-social-yt { background: #ff0000; }
        .footer-social-ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }

        .footer-dev-bar {
            background: var(--blue-dark);
            padding: 10px 14px 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-dev {
            max-width: 1180px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            text-align: center;
        }
        .footer-dev__logo {
            width: auto;
            max-width: 96px;
            max-height: 32px;
            object-fit: contain;
            opacity: 0.95;
        }
        .footer-dev__text {
            margin: 0;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.5;
        }
        .footer-dev__text a {
            color: #fff;
            font-weight: 800;
            text-decoration: none;
        }
        .footer-dev__text a:hover {
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        /* bottom ticker — live CMS */
        .ticker-wrapper {
            position: fixed;
            left: 0; right: 0; bottom: 0;
            background: var(--blue);
            z-index: 100;
            padding: 6px;
            min-height: var(--ticker-bar-h);
        }
        .ticker {
            max-width: 1180px;
            margin: auto;
            display: flex;
            background: var(--card);
            min-height: 36px;
        }
        .ticker-title {
            background: var(--red);
            color: #fff;
            padding: 6px 14px;
            cursor: pointer;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .ticker-title:hover { background: var(--red-hover); }
        .ticker-text {
            flex: 1;
            overflow: hidden;
            color: var(--red);
            direction: ltr;
            padding: 6px 0;
            min-width: 0;
        }
        .ticker-marquee {
            overflow: hidden;
            width: 100%;
        }
        .ticker-marquee__track {
            display: flex;
            width: max-content;
            animation: ticker-marquee-scroll 55s linear infinite;
            will-change: transform;
        }
        .ticker-marquee__track:hover,
        .ticker-marquee__track:focus-within {
            animation-play-state: paused;
        }
        .ticker-marquee__group {
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
            padding: 2px 8px;
            white-space: nowrap;
        }
        .ticker-marquee__group a { color: var(--red); margin: 0 8px; }
        .ticker-marquee__group--clone { pointer-events: none; user-select: none; }
        .ticker-marquee__text { margin: 0 8px; }
        @keyframes ticker-marquee-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* call button — live CMS */
        #call-button {
            position: fixed;
            bottom: var(--call-bar-offset);
            left: 0;
            right: 0;
            z-index: 99;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 10px;
            min-height: 60px;
        }
        #call-button .inner {
            flex: 1;
            max-width: 320px;
            margin: 0;
            border: 2px solid #dcdcdc;
            background: #fff;
            pointer-events: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6px;
            border-radius: 8px;
            padding: 6px 8px;
            min-height: 52px;
            opacity: 0.95;
        }
        #call-button .call-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            text-decoration: none;
            transition: transform 0.25s ease;
            position: relative;
            isolation: isolate;
        }
        #call-button .call-icon::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.45;
            transform: scale(1);
            animation: icon-pulse 2s ease-in-out infinite;
        }
        #call-button .call-icon--phone::after { background: var(--blue); }
        #call-button .call-icon--wa::after { background: var(--green-wa); }
        #call-button .call-icon:hover { transform: scale(1.1); }
        #call-button .call-icon .material-icons,
        #call-button .call-icon .fa-brands {
            font-size: 22px;
            color: #fff;
            padding: 0;
            line-height: 1;
        }
        #call-button .call-icon .fa-whatsapp {
            font-size: 24px;
        }
        #call-button .call-icon--phone {
            background: var(--blue);
        }
        #call-button .call-icon--wa {
            background: var(--green-wa);
        }
        #call-button .label-wrap {
            flex: 1;
            text-align: center;
            line-height: 1.2;
            padding: 0 4px;
            min-width: 0;
        }
        #call-button .label {
            font-size: 15px;
            font-weight: 700;
            color: #000;
        }
        #call-button .call-share-btn {
            pointer-events: auto;
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--red);
            color: #fff;
            display: grid;
            place-items: center;
            border: none;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }
        #call-button .call-share-btn:hover {
            transform: scale(1.1);
            background: var(--red-hover);
            box-shadow: 0 4px 14px rgba(192, 57, 43, 0.35);
        }
        #call-button .call-share-btn .material-icons { font-size: 22px; color: #fff; }
        #call-button:not(.call-button--article) .inner { max-width: 300px; margin: 0 auto; }

        /* mobile menu — live CMS float */
        .header-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-shrink: 0;
        }
        .header-menu-btn span {
            display: block;
            width: 28px;
            height: 4px;
            background: #fff;
            margin: 5px 0;
            transition: transform 0.3s, opacity 0.3s;
        }
        .header-menu-btn.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .header-menu-btn.is-open span:nth-child(2) { opacity: 0; }
        .header-menu-btn.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        .site-menu-float {
            display: none;
            position: fixed;
            inset: 0;
            top: var(--header-offset, 61px);
            z-index: 150;
            background: var(--card);
            overflow-x: hidden;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .site-menu-float.is-open { display: block; }
        .site-menu-float > ul { list-style: none; margin: 0; padding: 0; background: var(--card); }
        .site-menu-float > ul > li { background: #fff; margin-bottom: 1px; }
        .site-menu-float a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 12px;
            border-bottom: 1px solid var(--muted);
            color: var(--blue-dark);
            font-weight: 500;
        }
        .site-menu-float a:hover { background: var(--bg); }
        .site-menu-float .sub {
            display: none;
            list-style: none;
            margin: 0;
            padding: 0;
            background: var(--bg);
        }
        .site-menu-float li.has-sub.open > .sub { display: block; }
        .site-menu-float .sub a {
            padding: 12px 12px 12px 28px;
            font-size: 13px;
            border-bottom: 1px solid #ddd;
            background: #fff;
        }
        .site-menu-float .mob-arrow {
            margin-inline-start: auto;
            font-size: 22px;
            color: var(--blue-dark);
            transition: transform 0.25s;
        }
        .site-menu-float li.has-sub.open > a .mob-arrow { transform: rotate(-90deg); }

        /* header — mobile rows (hidden on desktop) */
        .header-mobile-bar,
        .header-brand { display: none; }
        .toolbar--desktop { display: flex; }

        .header-mobile-bar {
            align-items: center;
            gap: 8px;
            padding: 6px 10px;
            background: var(--blue);
        }
        .header-brand {
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            padding: 8px 12px;
            background: #fff;
        }
        .header-phone {
            margin: 0;
            font-size: 17px;
            font-weight: 800;
            line-height: 1.2;
        }
        .header-phone .phone-label { color: var(--red); }
        .header-phone a { color: #111; }
        .search-wrap--mobile { flex: 1; min-width: 0; }
        .search-wrap--mobile input {
            border: none;
            background: #fff;
            padding: 10px 36px 10px 10px;
            font-size: 15px;
        }

        @media (max-width: 992px) {
            .site { flex-wrap: wrap; }
            .site-menu { display: none; }
            .site-content { width: 100%; }
            .header-wrapper {
                position: sticky;
                top: 0;
                z-index: 200;
                margin-bottom: 10px;
                border-bottom-width: 4px;
            }
            .header-mobile-bar,
            .header-brand { display: flex; }
            .toolbar--desktop { display: none; }
            .header-menu-btn { display: block; min-width: 44px; min-height: 44px; padding: 8px; }
            .social-row .social-link {
                width: 44px;
                height: 44px;
            }
            .social-row .social-link i { font-size: 16px; }
            .article-brief .share-top {
                width: 44px;
                height: 44px;
            }
            .footer-social a { width: 44px; height: 44px; }
            .footer-social a i { font-size: 14px; }
            .header-brand {
                flex-direction: column;
                align-items: stretch;
                justify-content: center;
                text-align: center;
                padding: 6px 0 4px;
                gap: 0;
                max-height: 120px;
                overflow: hidden;
                opacity: 1;
                transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease, gap 0.28s ease;
            }
            .header-wrapper--compact .header-brand {
                max-height: 0;
                opacity: 0;
                padding-top: 0;
                padding-bottom: 0;
                gap: 0;
                pointer-events: none;
            }
            .header-brand .logo {
                width: 100%;
                flex: 0 0 auto;
            }
            .header-brand .logo a {
                display: block;
                width: 100%;
                max-width: none;
                min-height: 0;
                margin: 0;
            }
            .header-brand .logo picture {
                display: block;
                width: 100%;
            }
            .header-brand .logo img {
                width: 100%;
                max-width: 100%;
                height: auto;
                max-height: none;
                object-fit: contain;
                display: block;
                margin: 0;
            }
            .header-phone {
                width: 100%;
                text-align: center;
            }
            .article-row { grid-template-columns: 1fr; gap: 12px; }
            .article-brief { min-width: 0; }
            .footer-wrapper { display: block; margin-bottom: 4px; }
            footer.site-footer {
                text-align: right;
                font-size: 12px;
                line-height: 1.75;
                padding: 12px 14px;
            }
            .footer-social-bar { padding: 8px 14px 10px; }
            #center { margin: 0 auto; padding: 0 8px; }
            body.menu-open { overflow: hidden; }
            .hero-slider {
                margin-bottom: 8px;
            }
            .page-home .breadcrumb { display: none; }
            .page-home .home-section {
                background: transparent;
                box-shadow: none;
                border-radius: 0;
                overflow: visible;
                margin-bottom: 14px;
            }
            .page-home .home-section .article-row {
                padding: 0;
                gap: 10px;
            }
            .page-home .article-brief,
            .site-content > .article-row .article-brief {
                border: 1px solid #c5daf0;
                border-radius: 6px;
                background: #fff;
                overflow: hidden;
                padding-bottom: 0;
                box-shadow: 0 1px 3px rgba(20, 140, 254, 0.08);
            }
            .page-home .article-brief::after,
            .site-content > .article-row .article-brief::after {
                display: none;
            }
            .page-home .home-section .article-brief:nth-child(n+3) { display: none; }
            .page-home .article-brief .brief-text,
            .site-content > .article-row .article-brief .brief-text {
                display: block;
                font-size: 13px;
                line-height: 1.55;
                color: #666;
                opacity: 1;
                border-top: none;
                padding: 0 10px 10px;
            }
            .page-home .article-brief .title,
            .site-content > .article-row .article-brief .title {
                padding: 8px 10px 4px;
            }
            .page-home .article-brief .title h2,
            .site-content > .article-row .article-brief .title h2 {
                font-size: 15px;
                line-height: 1.45;
            }
            .home-section-title {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 10px;
                border-radius: 6px;
                background: var(--red);
                border-top: none;
                padding: 10px 12px;
                font-size: 16px;
            }
            .page-home .home-section-title {
                background: var(--red);
            }
            .home-section-title .section-icon {
                font-size: 22px;
                flex-shrink: 0;
                margin-inline-start: auto;
                color: #fff;
            }
            .home-section-title a {
                flex: 1;
                text-align: right;
                color: #fff;
                font-weight: 700;
            }
            .home-section .article-row { padding-top: 0; }
            .home-section-title:hover { background: var(--red-hover); }
            #call-button .inner {
                flex: 1;
                max-width: none;
                width: min(calc(100vw - 70px), 320px);
                opacity: 0.95;
            }
            #call-button.call-button--article {
                justify-content: center;
                gap: 8px;
                padding-inline: 10px;
            }
            #call-button.call-button--article .inner {
                flex: 1;
                width: auto;
                min-width: 0;
                max-width: calc(100vw - 68px);
            }
            body.page-article { padding-bottom: calc(var(--ticker-bar-h) + var(--call-bar-offset) + 74px); }
            .page-article .article-full {
                padding-top: 0;
                padding-bottom: 16px;
                padding-inline: 14px;
                overflow: hidden;
            }
            .page-article .article-header,
            .page-article .article-body { padding-inline: 0; }
            .page-article .article-header { padding-top: 10px; }
            .page-article .article-hero {
                margin-inline: -22px;
                width: calc(100% + 44px);
                margin-top: 0;
                margin-bottom: 0;
                border-radius: 0;
                height: 210px;
                max-height: 42vw;
                min-height: 180px;
            }
            .page-article .article-hero img {
                width: 100%;
                height: 100%;
                aspect-ratio: auto;
                object-fit: cover;
                object-position: center;
                border-radius: 0;
            }
            .page-article .prose img {
                display: block;
                width: calc(100% + 44px);
                max-width: none;
                margin-inline: -22px;
                border-radius: 0;
                height: 210px;
                max-height: 42vw;
                min-height: 180px;
                aspect-ratio: auto;
                object-fit: cover;
                object-position: center;
            }
            #call-button.call-button--article .call-share-btn {
                opacity: 1;
            }
        }
        @media (max-width: 600px) {
            .breakingnews { flex-direction: column; }
            .breakingnews-title { text-align: center; }
            .header-phone { font-size: 16px; }
            body { padding-bottom: calc(var(--ticker-bar-h) + var(--call-bar-offset) + 6px); }
        }

/* hero — auto slider (PC + mobile) */
.hero-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 140px);
    gap: 8px;
    margin-bottom: 0;
}
.hero-slider {
    display: block;
    position: relative;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: 0 0 2px var(--muted);
    border-radius: 6px;
    overflow: hidden;
}
.hero-slider-track {
    position: relative;
    width: 100%;
    min-height: var(--hero-track-min-h);
}
.hero-slider-slide {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}
.hero-slider-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    pointer-events: auto;
}
.hero-mosaic--slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 140px);
    gap: 8px;
    padding: 8px;
    margin-bottom: 0;
}
.hero-mosaic--slide .hero-main { grid-column: 2 / span 2; grid-row: 1 / span 2; }
.hero-mosaic--slide .hero-y1 { grid-column: 1; grid-row: 1; }
.hero-mosaic--slide .hero-g1 { grid-column: 1; grid-row: 2; }
.hero-mosaic--slide .hero-b1 { grid-column: 4; grid-row: 1; }
.hero-mosaic--slide .hero-r1 { grid-column: 4; grid-row: 2; }
.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 6px 8px 8px;
    background: #fff;
    margin: 0;
}
.hero-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-dot::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted);
}
.hero-dot.is-active::before { background: #555; }

@media (max-width: 992px) {
    :root {
        --hero-track-min-h: 209px;
        --call-bar-offset: 56px;
    }
    .hero-slider {
        margin-bottom: 8px;
    }
    .hero-mosaic--slide {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 96px);
        gap: 5px;
        padding: 6px;
    }
    .hero-mosaic--slide .hero-main { grid-column: 2 / span 2; grid-row: 1 / span 2; min-height: 0; }
    .hero-mosaic--slide .hero-y1 { grid-column: 1; grid-row: 1; }
    .hero-mosaic--slide .hero-g1 { grid-column: 1; grid-row: 2; }
    .hero-mosaic--slide .hero-b1 { grid-column: 4; grid-row: 1; }
    .hero-mosaic--slide .hero-r1 { grid-column: 4; grid-row: 2; }
    .hero-mosaic--slide .hero-tile {
        height: 100%;
        border-bottom-width: 3px;
    }
    .hero-carousel-dots {
        gap: 7px;
        padding: 4px 6px 6px;
    }
    .hero-dot {
        width: 40px;
        height: 40px;
    }
    .hero-dot::before {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 480px) {
    :root { --hero-track-min-h: 193px; }
    .hero-mosaic--slide {
        grid-template-rows: repeat(2, 88px);
        gap: 4px;
        padding: 5px;
    }
    .hero-carousel-dots {
        padding: 3px 5px 5px;
    }
}

.hero-tile { overflow: hidden; border-radius: 6px; border-bottom: 4px solid var(--blue); display: block; min-height: 0; background: var(--card); }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 400 / 260; }
.hero-main { grid-column: 2 / span 2; grid-row: 1 / span 2; }
.hero-y1 { grid-column: 1; grid-row: 1; }
.hero-g1 { grid-column: 1; grid-row: 2; }
.hero-b1 { grid-column: 4; grid-row: 1; }
.hero-r1 { grid-column: 4; grid-row: 2; }
.home-section {
    margin-bottom: 20px;
}
.home-sections-load {
    text-align: center;
    margin: 8px 0 24px;
    padding: 0 10px;
}
.home-sections-load__btn {
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--blue-dark);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    min-height: 48px;
    min-width: min(100%, 320px);
    transition: background 0.2s ease, transform 0.2s ease;
}
.home-sections-load__btn:hover { background: var(--blue); }
.home-sections-load__btn:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}
.home-sections-load__status {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}
.home-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 4px solid var(--red);
    padding: 12px 14px;
    margin-bottom: 10px;
    background: var(--blue);
    color: #fff;
    border-radius: 6px 6px 0 0;
    font-size: 18px;
}
.home-section-title .section-icon { font-size: 24px; flex-shrink: 0; margin-inline-start: auto; }
.home-section-title a { color: #fff; flex: 1; text-align: right; }
.category-intro {
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 0 2px var(--muted);
    text-align: justify;
}
.article-full {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 2px var(--muted);
    padding: 16px;
    margin-bottom: 16px;
}
.article-full h1 { color: var(--blue); font-size: 1.35rem; margin-bottom: 8px; }
.article-meta { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.article-hero {
    margin: 0 0 12px;
    overflow: hidden;
    background: #e8e8e8;
    line-height: 0;
    border-radius: 6px;
}
.article-hero img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}
.article-gallery {
    margin: 0 0 20px;
    padding: 14px;
    background: #fff;
    border: 1px solid #d6e8f8;
    border-radius: 6px;
}
.article-gallery__title {
    font-size: 1.05rem;
    color: var(--red);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--blue);
}
.article-gallery__count {
    font-size: 0.85em;
    color: var(--muted);
    font-weight: 600;
}
.article-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.article-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #c5daf0;
    background: #f8fbff;
}
.article-gallery__item a { display: block; line-height: 0; }
.article-gallery__item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.article-gallery__caption {
    padding: 6px 8px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    line-height: 1.4;
}
.article-gallery__item:hover img { transform: scale(1.04); }
.prose img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.75em auto;
    border-radius: 6px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
}
.prose { line-height: 1.6; text-align: justify; }
.prose h2, .prose h3 { margin: 1em 0 0.5em; color: var(--blue-dark); }
.prose p { margin-bottom: 0.75em; }
.prose ul { margin: 0 1.2em 1em 0; }
.prose blockquote {
    background: var(--bg);
    border-right: 6px solid var(--red);
    padding: 10px;
    margin: 12px 0;
    color: var(--blue);
}
.faq-section { background: #fff; padding: 16px; border-radius: 6px; margin-bottom: 16px; }
.faq-section h2 { font-size: 1.1rem; margin-bottom: 10px; color: var(--blue-dark); }
.faq-item { border-bottom: 1px solid var(--muted); padding: 8px 0; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--blue-dark); }
.empty-state { padding: 24px; text-align: center; color: #666; width: 100%; }
.error-404 h1 { color: var(--red); margin-bottom: 8px; }
.page-heading { margin-bottom: 12px; color: var(--blue-dark); }
.search-page { margin-bottom: 16px; display: flex; gap: 8px; }
.button-search {
    background: var(--blue);
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 0 16px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}
.contact-block { background: #fff; padding: 16px; border-radius: 6px; margin-top: 12px; }

/* related posts */
.related-posts {
    margin: 16px 0;
}
.related-posts-title {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 17px;
    margin-bottom: 10px;
}
.related-posts-title a {
    flex: 1;
    text-align: right;
    color: #fff;
    font-weight: 700;
}
.related-posts-title .section-icon {
    font-size: 22px;
    margin-inline-start: auto;
    flex-shrink: 0;
}
.related-posts-row { gap: 10px; }

@media (max-width: 992px) {
    .related-posts-row .article-brief {
        border: 1px solid #c5daf0;
        border-radius: 6px;
        background: #fff;
        box-shadow: 0 1px 3px rgba(20, 140, 254, 0.08);
    }
    .related-posts-row .article-brief::after { display: none; }
    .related-posts-row .article-brief .brief-text {
        display: block;
        color: #666;
        opacity: 1;
        border-top: none;
        padding: 0 10px 10px;
    }
    body.page-article { padding-bottom: calc(var(--ticker-bar-h) + var(--call-bar-offset) + 84px); }
}

/* ── animations, hover effects, ::before/::after ── */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.75); }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
@keyframes icon-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes icon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50% { transform: scale(1.45); opacity: 0; }
}
@keyframes hero-zoom-in {
    from { opacity: 0; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}

/* scroll reveal */
.reveal {
    opacity: 0;
    transition: opacity 0.45s ease var(--reveal-delay, 0s);
}
.reveal.is-inview {
    opacity: 1;
}

/* breadcrumb accent */
.breadcrumb {
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--blue);
    border-radius: 0 6px 6px 0;
}
.breadcrumb:hover { box-shadow: 0 4px 14px rgba(20, 140, 254, 0.12); }

/* breaking news hover */
.breakingnews { transition: box-shadow 0.3s ease; }
.breakingnews:hover { box-shadow: 0 4px 16px rgba(192, 57, 43, 0.12); }

/* home section title effects */
.home-section-title {
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}
.home-section-title::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: right 0.6s ease;
    pointer-events: none;
}
.home-section-title:hover::after { right: 100%; }
.home-section-title:hover { background: #1278e0; }
.home-section-title a {
    position: relative;
    transition: opacity 0.25s ease;
}
.home-section-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.35s ease;
}
.home-section-title a:hover::after { width: 100%; }
.home-section-title:hover .section-icon { animation: icon-spin 0.65s ease; }

/* hero tiles */
.hero-tile {
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.hero-tile img { transition: transform 0.55s ease; }
.hero-tile:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    z-index: 2;
}
.hero-tile:hover::after { opacity: 1; }
.hero-tile:hover img { transform: scale(1.08); }

/* hero slider slide transition */
.hero-slider-slide {
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}
.hero-slider-slide.is-active { animation: none; }

/* hero dots */
.hero-dot {
    transition: transform 0.25s ease, background 0.25s ease;
}
.hero-dot:hover { transform: scale(1.08); }
.hero-dot.is-active { transform: scale(1.05); }
.hero-dot.is-active::before { background: var(--blue-dark); }

/* article card title hover */
.article-brief .title h2 {
    transition: color 0.25s ease;
}
.article-brief:hover .title h2 { color: var(--blue-dark); }

/* article page hero */
.article-hero {
    position: relative;
}
.article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.article-hero img { transition: transform 0.55s ease; }
.article-hero:hover::after { opacity: 1; }
.article-hero:hover img { transform: scale(1.04); }

/* article full card */
.article-full {
    transition: box-shadow 0.35s ease;
}
.article-full:hover { box-shadow: 0 6px 20px rgba(20, 140, 254, 0.1); }

/* prose blockquote accent */
.prose blockquote {
    position: relative;
    transition: background 0.3s ease, padding-right 0.3s ease;
}
.prose blockquote::before {
    content: '\201C';
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 2rem;
    line-height: 1;
    color: var(--red);
    opacity: 0.35;
}
.prose blockquote:hover {
    background: #fff;
    padding-right: 18px;
}

/* sidebar menu hover slide */
.site-menu > ul > li > a {
    transition: color 0.25s ease, padding-right 0.25s ease;
}
.site-menu > ul > li:hover > a {
    padding-right: 14px;
    color: var(--blue);
}

/* social icons */
.social-row .social-link,
.footer-social a {
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.social-row .social-link:hover,
.footer-social a:hover { transform: scale(1.1); opacity: 0.92; }

/* search focus glow */
.search-wrap input {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.search-wrap input:focus {
    box-shadow: 0 0 0 3px rgba(20, 140, 254, 0.2);
}
.search-wrap input:focus + .search-icon { color: var(--blue); }

/* ticker sync spin on hover */
.ticker-title { transition: background 0.25s ease; }
.ticker-title:hover .material-icons { animation: icon-spin 0.55s ease; }

#call-button .inner {
    transition: box-shadow 0.3s ease;
}
#call-button.is-visible .inner:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

/* logo subtle hover */
.header-brand .logo a,
.toolbar--desktop .logo a {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.header-brand .logo a:hover,
.toolbar--desktop .logo a:hover {
    opacity: 0.88;
    transform: scale(1.01);
}

/* FAQ accordion */
.faq-item summary { transition: color 0.25s ease; }
.faq-item summary:hover { color: var(--blue); }
.faq-item[open] summary { color: var(--blue); }

/* button search */
.button-search {
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.button-search:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 140, 254, 0.3);
}

@media (max-width: 992px) {
    .article-brief:hover { transform: none; }
    .article-hero:hover img { transform: none; }
    .hero-tile:hover,
    .hero-tile:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-slider-slide.is-active { animation: none; }
    #call-button .call-icon--phone::after,
    #call-button .call-icon--wa::after { animation: none; }
    .breakingnews-title::before { animation: none; }
    .home-section-title:hover .section-icon { animation: none; }
    .article-brief:hover,
    .article-brief:hover .img-wrap img,
    .hero-tile:hover,
    .hero-tile:hover img,
    .article-hero:hover img { transform: none; }
    .ticker-marquee__track { animation: none !important; }
    .header-brand { transition: none; }
        }
