@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&family=Roboto+Condensed:wght@400;500;600;700&family=Roboto+Flex:opsz,wght@8..144,400;8..144,500;8..144,600&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-alt: #f3f4f6;
    --border: rgba(17, 24, 39, 0.08);
    --text: #101418;
    --text-soft: #4f5b66;
    --accent-strong:#F07A21;
    --text-muted: #7b8591;
    --gold: #F07A21;
    --gold-deep: #F07A21;
    --green: #16a34a;
    --red: #dc2626;
    --header-bg: rgba(255, 255, 255, 0.98);
    --utility-bg: #11161d;
    --main-head-bg: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    --breaking-bg: #ffffff;
    --hero-bg: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    --panel-bg: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    --panel-head-bg: #ffffff;
    --exclusive-ad-bg: #231b14;
    --exclusive-ad-copy: rgba(255, 249, 240, 0.82);
    --exclusive-ad-label: rgba(255, 249, 240, 0.68);
    --subscription-bg: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    --subscription-card-bg: #ffffff;
    --subscription-badge-bg: linear-gradient(145deg, #F07A21 0%, #F07A21 100%);
    --subscription-cover-bg: #f5f6f8;
    --subscription-fallback-bg: radial-gradient(circle at top right, rgba(240, 122, 33, 0.12) 0%, rgba(255, 255, 255, 1) 58%);
    --field-bg: #ffffff;
    --field-alt-bg: #f5f7fa;
    --footer-bg: linear-gradient(180deg, #11161d 0%, #0d1117 100%);
    --page-hero-bg: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    --reader-shell-bg: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
    --reader-toolbar-bg: #ffffff;
    --reader-control-bg: #ffffff;
    --display-font: 'Barlow Condensed', 'Arial Narrow', 'Segoe UI', sans-serif;
    --content-font: 'IBM Plex Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --headline-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --reading-font: 'Roboto Condensed', 'Arial Narrow', 'Segoe UI', sans-serif;
}

:root[data-theme="dark"],
:root[data-theme="black-gold"] {
    --bg: #0c0906;
    --surface: #16110d;
    --surface-alt: #211911;
    --border: rgba(200, 154, 43, 0.18);
    --text: #f4ead0;
    --text-soft: #d1c09a;
    --text-muted: #9f8964;
    --accent-strong: #d1a73c;
    --gold: #c89a2b;
    --gold-deep: #8f6a18;
    --green: #54c487;
    --red: #ff7b6b;
    --header-bg: rgba(11, 8, 6, 0.98);
    --utility-bg: #080604;
    --main-head-bg: linear-gradient(180deg, #110d09 0%, #1c140d 100%);
    --breaking-bg: #110d09;
    --hero-bg: linear-gradient(145deg, #120d08 0%, #24180d 52%, #16100a 100%);
    --panel-bg: linear-gradient(180deg, #15100c 0%, #22170f 100%);
    --panel-head-bg: linear-gradient(90deg, #23180f 0%, #1a130d 100%);
    --exclusive-ad-bg: #0e0a07;
    --exclusive-ad-copy: rgba(244, 234, 208, 0.84);
    --exclusive-ad-label: rgba(220, 196, 143, 0.72);
    --subscription-bg: linear-gradient(135deg, #120d08 0%, #2b1c0f 100%);
    --subscription-card-bg: rgba(20, 15, 10, 0.9);
    --subscription-badge-bg: linear-gradient(145deg, #c89a2b 0%, #9f7420 100%);
    --subscription-cover-bg: #120d09;
    --subscription-fallback-bg: radial-gradient(circle at top right, rgba(200, 154, 43, 0.25) 0%, rgba(12, 9, 6, 1) 58%);
    --field-bg: #110d09;
    --field-alt-bg: #1a140e;
    --footer-bg: linear-gradient(180deg, #090705 0%, #0d0906 100%);
    --page-hero-bg: linear-gradient(145deg, #120d08 0%, #24180d 52%, #16100a 100%);
    --reader-shell-bg: linear-gradient(180deg, #15100c 0%, #23170f 100%);
    --reader-toolbar-bg: rgba(14, 11, 8, 0.92);
    --reader-control-bg: #100c08;
}

body {
    margin: 0;
    font-family: var(--content-font);
    background: var(--bg);
    color: var(--text);
}

body:not(.landing-body) {
    background: var(--bg);
}

.site-header {
    position: relative;
    z-index: 20;
}

main {
    position: relative;
    z-index: 1;
}

body.has-site-loader {
    overflow: hidden;
}

body.has-page-reveal .site-header,
body.has-page-reveal main,
body.has-page-reveal .site-footer {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
}

body.has-page-reveal.is-page-ready .site-header,
body.has-page-reveal.is-page-ready main,
body.has-page-reveal.is-page-ready .site-footer {
    transform: none;
}

body.landing-body.has-page-reveal .landing-page {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
}

body.landing-body.has-page-reveal.is-page-ready .landing-page {
    transform: none;
}

body.no-copy {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

body.no-copy input,
body.no-copy textarea,
body.no-copy select,
body.no-copy button,
body.no-copy .chatbot-panel,
body.no-copy .chatbot-panel * {
    -webkit-user-select: text;
    user-select: text;
}

.allow-copy {
    -webkit-user-select: text !important;
    user-select: text !important;
}

.landing-body {
    min-height: 100vh;
    background:
        linear-gradient(120deg, rgba(240, 122, 33, 0.16) 0, rgba(240, 122, 33, 0.16) 2px, transparent 2px, transparent 26%),
        linear-gradient(300deg, rgba(240, 122, 33, 0.12) 0, rgba(240, 122, 33, 0.12) 2px, transparent 2px, transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
}

:root[data-theme="dark"] .landing-body,
:root[data-theme="black-gold"] .landing-body {
    background: #000000;
}

.landing-page {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0 18px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.landing-page.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.intro-video-overlay {
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.intro-video-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-video-actions {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

.intro-video-skip {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #000000;
}

.landing-brand-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.landing-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-family: var(--content-font);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.landing-brand-logo {
    height: 92px;
    width: auto;
    max-width: min(520px, 86vw);
    display: block;
    object-fit: contain;
}

.landing-brand-word,
.landing-brand small {
    display: none;
}

.landing-brand-word span {
    color: var(--gold);
}

.landing-brand small {
    font-size: clamp(0.95rem, 1.2vw, 1.35rem);
    letter-spacing: 0.2em;
    font-weight: 700;
}

.landing-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    min-height: 72vh;
    border: 1px solid rgba(240, 122, 33, 0.22);
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.08);
}

.landing-panel {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 72vh;
}

.landing-panel-media,
.landing-panel-overlay {
    position: absolute;
    inset: 0;
}

.landing-panel-media {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.01);
    transition: transform 0.5s ease;
}

.landing-panel-overlay {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.1) 0%, rgba(17, 24, 39, 0.24) 100%);
}

.landing-panel-jewellery .landing-panel-overlay {
    background: linear-gradient(180deg, rgba(74, 44, 12, 0.12) 0%, rgba(74, 44, 12, 0.2) 100%);
}

.landing-panel-machinery .landing-panel-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.24) 100%);
}

.landing-panel-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: min(72%, 460px);
    padding: 34px 28px 26px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 18px;
    background: rgba(241, 220, 188, 0.72);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 40px rgba(17, 24, 39, 0.12);
}

.yt-embed {
    position: relative;
    padding-top: 56.25%;
    margin: 16px 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0f1115;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
}

.yt-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.landing-panel-card-cool {
    background: rgba(223, 237, 248, 0.68);
}

.landing-panel-card h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1;
}

.landing-panel-card span {
    display: inline-block;
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.94);
    color: #111827;
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.landing-panel:hover .landing-panel-media {
    transform: scale(1.06);
}

.landing-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px 0;
    color: var(--text-soft);
    font-size: 0.96rem;
}

.landing-footer-bar a {
    color: var(--gold-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

:root[data-theme="dark"] .landing-split,
:root[data-theme="black-gold"] .landing-split {
    border-color: rgba(200, 154, 43, 0.26);
    background: #0f0b08;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .landing-panel-card,
:root[data-theme="black-gold"] .landing-panel-card {
    border-color: rgba(216, 184, 118, 0.34);
    background: rgba(31, 21, 12, 0.72);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .landing-panel-card-cool,
:root[data-theme="black-gold"] .landing-panel-card-cool {
    background: rgba(18, 17, 14, 0.74);
}

:root[data-theme="dark"] .landing-panel-card h1,
:root[data-theme="black-gold"] .landing-panel-card h1 {
    color: #f5e6bf;
}

:root[data-theme="dark"] .landing-panel-card span,
:root[data-theme="black-gold"] .landing-panel-card span {
    background: linear-gradient(145deg, #c89a2b 0%, #ab7c22 100%);
    color: #17110c;
    border-color: rgba(200, 154, 43, 0.28);
}

:root[data-theme="dark"] .landing-footer-bar,
:root[data-theme="black-gold"] .landing-footer-bar {
    color: #d1c09a;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--display-font);
    color: var(--text);
    letter-spacing: 0.01em;
}

p {
    margin: 0;
}

.container {
    width: min(1360px, calc(100% - 32px));
    margin: 0 auto;
}




.site-header .container {
    width: min(1360px, calc(100% - 32px));
}

.top-utility,
.main-head,
.category-bar,
.market-strip,
.breaking-strip {
    width: 100%;
    margin: 0;
}

.top-utility {
    border-bottom: 0;
    background: var(--utility-bg);
}

.site-header-minimal .top-utility {
    border-bottom: 1px solid var(--border);
}

.site-header-minimal .utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 96px;
}

.back-home-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
}

.back-home-link:hover {
    color: var(--accent-strong);
}

.minimal-brand {
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
}

.minimal-brand span {
    color: var(--accent-strong);
}

.utility-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.utility-inner > span {
    font-weight: 800;
}

.utility-links {
    display: flex;
    gap: 16px;
    font-weight: 700;
    align-items: center;
}

.translate-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
}

.translate-label {
    color: var(--text-muted);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.translate-element {
    min-width: 118px;
}

.translate-element .goog-te-gadget {
    color: var(--text-soft) !important;
    font-family: inherit !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.translate-element .goog-te-gadget-simple {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

.translate-element .goog-te-combo {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000000;
    color: #ffffff !important;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
    min-width: 128px;
    outline: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 6px 30px 6px 12px;
    color-scheme: dark;
}

.translate-element .goog-te-menu-value {
    color: #ffffff !important;
    font-weight: 700;
}

.translate-element .goog-te-combo option {
    background: #000000;
    color: #ffffff;
}

.translate-element .goog-logo-link,
.translate-element .goog-te-gadget > span {
    display: none !important;
}

.translate-element img,
.translate-element .VIpgJd-ZVi9od-l4eHX-hSRGPd {
    display: none !important;
}

.theme-toggle {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    border-radius: 999px;
    padding: 6px 12px;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
}

.main-head {
    border-bottom: 1px solid rgba(16, 20, 24, 0.08);
    background: var(--main-head-bg);
}

.head-inner {
    min-height: 96px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;
}

.site-header-minimal .utility-inner {
    position: relative;
}

.minimal-brand-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 20px));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.minimal-brand-logo img {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    font-family: var(--display-font);
    line-height: 0.95;
    text-transform: uppercase;
}

.nav-switch-btn {
    background: var(--gold);
    color: #120e08;
    border-radius: 4px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 0 !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.top-nav > a.nav-switch-btn,
.category-bar .top-nav > a.nav-switch-btn {
    background: var(--gold) !important;
    color: #120e08 !important;
    border-bottom-color: transparent !important;
}

.nav-switch-btn:hover {
    background: var(--gold);
    color: #120e08;
    border-bottom: 0 !important;
}

.top-nav > a.nav-switch-btn:focus-visible {
    background: var(--gold);
    color: #120e08;
    border-bottom: 0 !important;
    outline: none;
}

.nav-search-shell {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    padding-left: 0;
    border-left: 0;
    flex: 0 0 auto;
    position: relative;
}

.nav-search-shell + .nav-switch-btn {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-search-form {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 260;
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(340px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid rgba(212, 166, 64, 0.18);
    border-radius: 18px;
    background: rgba(20, 25, 31, 0.98);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-search-shell.is-open .nav-search-form,
.nav-search-shell:focus-within .nav-search-form {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
}

.nav-search-toggle {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-search-toggle svg,
.nav-search-submit svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translateY(-1px);
}

.nav-search-toggle:hover,
.nav-search-toggle:focus-visible,
.nav-search-shell:focus-within .nav-search-toggle,
.nav-search-shell.is-open .nav-search-toggle {
    background: transparent;
    color: #ffffff;
    opacity: 0.85;
    outline: none;
}

.nav-search-input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: 38px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 0 14px;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.nav-search-input:focus {
    border-color: rgba(212, 166, 64, 0.9);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(212, 166, 64, 0.18);
}

.nav-search-submit {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-search-submit:hover,
.nav-search-submit:focus-visible {
    background: transparent;
    color: #ffffff;
    opacity: 0.85;
    outline: none;
}

.brand span {
    color: var(--gold);
}

.head-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.subscribe-btn {
    background: var(--gold);
    color: #120e08;
    border-radius: 2px;
    padding: 12px 18px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.subscribe-btn:hover {
    background: var(--gold-deep);
    color: #fff7e4;
}

.category-bar {
    border-bottom: 0;
    background: #14191f;
    position: relative;
    z-index: 120;
    overflow: visible;
}

.nav-wrap {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
    z-index: 121;
}

.nav-mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.nav-mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: #111418;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.top-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
    overflow: visible;
    position: relative;
    z-index: 122;
    white-space: nowrap;
}

.top-nav > a,
.nav-dropdown > a,
.nav-dropdown-trigger > a,
.nav-dropdown > button {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.98);
    padding: 10px 10px;
    border-bottom: 2px solid transparent;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1;
}

.category-bar .top-nav > a,
.category-bar .nav-dropdown > a,
.category-bar .nav-dropdown-trigger > a,
.category-bar .nav-dropdown > button {
    color: #ffffff;
    opacity: 1;
}

.top-nav > a:hover,
.nav-dropdown > a:hover,
.nav-dropdown-trigger > a:hover,
.nav-dropdown > button:hover,
.top-nav > a:focus-visible,
.nav-dropdown > a:focus-visible,
.nav-dropdown-trigger > a:focus-visible,
.nav-dropdown > button:focus-visible {
    color: #ffffff;
    border-bottom-color: var(--gold);
    outline: none;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: none;
}

.nav-dropdown-toggle span {
    display: block;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-dropdown-toggle span:last-child {
    transform: rotate(90deg) translateX(-2px);
    transform-origin: center;
}

.nav-dropdown.is-open .nav-dropdown-toggle span:last-child {
    transform: rotate(0deg);
}

.nav-dropdown {
    position: relative;
    padding-bottom: 26px;
    margin-bottom: -26px;
    z-index: 130;
    overflow: visible;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 180px;
    height: 24px;
    transform: translateX(-50%);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 200px;
    background: var(--surface);
    border: 1px solid rgba(212, 173, 75, 0.5);
    border-radius: 0;
    box-shadow: 0 22px 44px rgba(17, 24, 39, 0.14);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(0, 6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 300;
    max-height: none;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    left: 34px;
    bottom: 100%;
    width: 1px;
    height: 18px;
    background: rgba(212, 173, 75, 0.7);
    transform: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-align: left;
}

.dropdown-menu a:hover {
    background: var(--surface-alt);
    color: #ffffff;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, 0);
}

.market-strip {
    background: var(--surface-alt);
    border-bottom: 1px solid var(--border);
}

.market-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-soft);
    white-space: nowrap;
    overflow: hidden;
    padding: 6px 0;
}

.market-time {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.8rem;
    flex-shrink: 0;
    padding-left: 14px;
}

.live-pill {
    background: var(--gold);
    color: #fff7e4;
    font-weight: 800;
    border-radius: 2px;
    padding: 7px 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.market-rate-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
    padding-right: 24px;
}

.market-marquee {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.market-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marketTicker 24s linear infinite;
}

.market-marquee:hover .market-track {
    animation-play-state: paused;
}

.market-rate-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-left: 1px solid var(--border);
    color: var(--text-soft);
    flex-shrink: 0;
}

.market-rate-chip strong {
    color: var(--text);
    font-weight: 700;
}

.market-rate-chip.is-featured {
    background: rgba(240, 122, 33, 0.12);
}

.market-rate-chip:first-child {
    border-left: 0;
    padding-left: 0;
}

.market-rate-label {
    color: var(--text-muted);
    font-weight: 600;
}

@keyframes marketTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.up {
    color: var(--green);
    font-weight: 700;
}

.down {
    color: var(--red);
    font-weight: 700;
}

.breaking-strip {
    background: var(--breaking-bg);
    border-bottom: 1px solid var(--border);
}

.breaking-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.breaking-pill {
    background: var(--gold);
    color: #fff7e4;
    border-radius: 2px;
    padding: 5px 9px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breaking-marquee {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.breaking-track {
    display: flex;
    white-space: nowrap;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 500;
    width: max-content;
    animation: breakingTicker 26s linear infinite;
}

.breaking-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    padding-right: 24px;
}

.breaking-group span::after {
    content: '\00B7';
    margin-left: 24px;
    color: var(--gold);
}

.breaking-group span:last-child::after {
    content: '';
    margin-left: 0;
}

.breaking-marquee:hover .breaking-track {
    animation-play-state: paused;
}

@keyframes breakingTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero {
    padding: 66px 0 54px;
}

.hero-inner {
    text-align: center;
    background: var(--hero-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: clamp(28px, 5vw, 56px);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05);
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold-deep);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-inner h1 {
    margin-top: 10px;
    font-size: clamp(2rem, 4.7vw, 3.9rem);
    line-height: 1.1;
}

.hero-copy {
    margin: 16px auto 0;
    width: min(860px, 95%);
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.spotlight-carousel-track {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: clamp(360px, 46vw, 540px);
}

.edition-carousel {
    width: 100%;
    position: relative;
    background: var(--hero-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px 36px 34px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.06);
    max-width: 100%;
}

.edition-carousel.edition-carousel-banner {
    width: 100%;
    margin: 0 auto;
}

.edition-carousel.edition-carousel-banner .spotlight-carousel-track {
    aspect-ratio: 21 / 8;
    min-height: clamp(220px, 24vw, 360px);
}

.edition-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 36px 44px;
    opacity: 0;
    transform: translateX(34px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.edition-slide-bg-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 0;
}

.edition-slide-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    filter: none;
    mask-image: none;
    -webkit-mask-image: none;
}

.edition-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #120d09;
}

.edition-slide.is-banner .edition-slide-bg-link {
    background: #120d09;
}

.edition-slide.is-banner .edition-slide-bg {
    background-size: contain;
    background-position: center;
    background-color: #120d09;
}

.edition-slide.is-banner .edition-slide-video {
    object-fit: contain;
    object-position: center;
    background-color: #120d09;
}

.edition-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.edition-slide-copy {
    max-width: 700px;
    position: relative;
    z-index: 1;
    width: min(52%, 640px);
}

.edition-kicker {
    color: var(--gold-deep);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.edition-slide h2 {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--content-font);
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.08;
    text-transform: none;
    max-width: 12ch;
}

.edition-slide h2 span {
    color: var(--text);
    font-weight: 700;
}

.edition-slide h2 strong {
    color: var(--gold);
    font-weight: 700;
}

.edition-slide-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.edition-cta {
    display: inline-block;
    margin-top: 22px;
    background: var(--gold);
    color: #130f08;
    border-radius: 16px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(240, 122, 33, 0.14);
}

.edition-cta:hover {
    background: var(--gold-deep);
    color: #fff7e4;
}

    .edition-arrow {
        position: absolute;
        top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--border);
    color: var(--gold-deep);
}

.edition-arrow-left {
    left: 16px;
}

.edition-arrow-right {
    right: 16px;
}

.carousel-dots {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(157, 122, 47, 0.25);
    cursor: pointer;
}

.carousel-dot.is-active {
    width: 28px;
    background: var(--gold);
}

.btn-gold,
.btn-outline {
    display: inline-block;
    border-radius: 4px;
    padding: 11px 16px;
    font-size: 0.82rem;
    font-weight: 800;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-gold {
    background: var(--gold);
    color: #130f08;
}

.btn-gold:hover {
    background: var(--gold-deep);
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold-deep);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(157, 122, 47, 0.14);
}

.section-space {
    margin: 20px auto 44px;
}

.feature-carousel-shell {
    width: 100%;
    margin: 20px auto 44px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.ozn-buyers-strip-shell {
    width: 100%;
    margin: -12px auto 28px;
    position: relative;
    z-index: 1;
}

.ozn-buyers-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 36px;
    align-items: center;
    text-decoration: none;
    color: #f4ead0;
    padding: 28px 42px;
    border-radius: 26px;
    border: 1px solid rgba(200, 154, 43, 0.26);
    background:
        radial-gradient(circle at top right, rgba(200, 154, 43, 0.18), transparent 34%),
        radial-gradient(circle at 92% 74%, rgba(200, 154, 43, 0.12), transparent 18%),
        linear-gradient(135deg, #130d08 0%, #24170d 45%, #120d08 100%);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 226, 160, 0.05);
    overflow: hidden;
    position: relative;
}

.ozn-buyers-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(200, 154, 43, 0.12), transparent 24%, transparent 76%, rgba(200, 154, 43, 0.08)),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 16px);
    pointer-events: none;
}

.ozn-buyers-strip::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(242, 194, 72, 0.7);
    box-shadow: 0 0 18px rgba(242, 194, 72, 0.16);
    pointer-events: none;
}

.ozn-buyers-strip-copy,
.ozn-buyers-strip-actions {
    position: relative;
    z-index: 1;
}

.ozn-buyers-strip-copy {
    display: grid;
    gap: 10px;
}

.ozn-buyers-strip-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(200, 154, 43, 0.14);
    border: 1px solid rgba(200, 154, 43, 0.24);
    color: #f3d68b;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ozn-buyers-strip-copy strong {
    font-family: var(--display-font);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.95;
    color: #fff4d2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ozn-buyers-strip-categories {
    color: rgba(244, 234, 208, 0.84);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ozn-buyers-strip-description {
    color: rgba(244, 234, 208, 0.68);
    font-size: clamp(0.94rem, 1.1vw, 1.05rem);
    line-height: 1.55;
    max-width: 780px;
}

.ozn-buyers-strip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
}

.ozn-buyers-strip-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    min-width: 170px;
    padding: 0 22px;
    border-radius: 18px;
    border: 1px solid rgba(200, 154, 43, 0.2);
    background: rgba(255, 255, 255, 0.02);
    color: #f2e6c8;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ozn-buyers-strip-actions {
    display: grid;
    gap: 22px;
    align-self: stretch;
    justify-items: center;
    align-content: center;
    padding-left: 34px;
    border-left: 1px solid rgba(200, 154, 43, 0.26);
}

.ozn-buyers-strip-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    width: min(100%, 350px);
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f1c95d 0%, #c89a2b 100%);
    color: #1a120a;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    box-shadow: 0 12px 26px rgba(200, 154, 43, 0.24);
}

.ozn-buyers-strip-link {
    color: #e9c96b;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ozn-buyers-strip:hover .ozn-buyers-strip-cta {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(200, 154, 43, 0.3);
}

.edition-carousel,
.spotlight-carousel-track,
.edition-slide {
    z-index: 0;
}

.exclusive-section {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 320px;
    gap: 28px;
}

.exclusive-main {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 18px 8px;
    backdrop-filter: blur(8px);
}

.exclusive-banner-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.exclusive-banner-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid var(--border);
    transform: translateY(-50%);
}

.exclusive-banner {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: linear-gradient(90deg, #875e1d 0%, #a47626 100%);
    color: #fff8ea;
    padding: 6px 18px;
    font-size: 0.9rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.exclusive-item {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.exclusive-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.exclusive-thumb img {
    width: 100%;
    height: 228px;
    object-fit: cover;
    display: block;
}

.exclusive-meta {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.45px;
}

.exclusive-copy h3 {
    margin-top: 8px;
    font-size: clamp(1.7rem, 2.8vw, 2.45rem);
    line-height: 1.1;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.exclusive-copy p:last-child {
    margin-top: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.98rem;
}

.exclusive-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.exclusive-ad-card {
    background: var(--exclusive-ad-bg);
    color: #fff;
    border-radius: 16px;
    padding: 22px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: radial-gradient(circle at top right, rgba(157, 122, 47, 0.24) 0%, rgba(21, 23, 25, 0) 48%);
}

.exclusive-ad-card h3 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.06;
}

.exclusive-ad-card p {
    color: var(--exclusive-ad-copy);
    line-height: 1.6;
}

.exclusive-ad-label {
    color: var(--exclusive-ad-label);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.exclusive-ad-card-accent {
    background: linear-gradient(145deg, #5c4419 0%, #7b5a22 100%);
}

.magazine-panels {
    display: grid;
    grid-template-columns: 0.9fr 1.55fr 0.9fr;
    gap: 14px;
    align-items: stretch;
}

.magazine-panels-single {
    grid-template-columns: minmax(0, 1fr);
}

.panel-list-card,
.panel-main-card {
    background: var(--panel-bg);
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.05);
    backdrop-filter: blur(8px);
}

.panel-main-card-wide {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.panel-main-card-machinery {
    display: flex;
    flex-direction: column;
}

.panel-main-card-machinery .panel-main-image {
    background: #080808;
}

.panel-main-card-machinery .panel-main-image img {
    height: clamp(320px, 42vw, 520px);
    object-fit: cover;
    object-position: center top;
}

.panel-main-card-machinery .panel-main-body {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 20px 22px 22px;
    background: linear-gradient(180deg, rgba(30, 20, 12, 0.98) 0%, rgba(17, 12, 8, 1) 100%);
}

.panel-main-card-machinery .panel-main-body h3 {
    margin-top: 12px;
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    line-height: 1.14;
}

.panel-main-card-machinery .panel-main-body p {
    margin-top: 12px;
    max-width: 68ch;
}

/* Main News section layout: main featured story column + right trending sidebar. */
.main-news-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.75fr);
    gap: 18px;
    align-items: start;
}

/* Fixed page-level social media rail shown in the left gutter on jewellery/machinery news pages. */
.page-social-rail {
    position: fixed;
    left: max(0px, calc((100vw - 1440px) / 2) - 198px);
    top: var(--page-social-rail-top, 190px);
    width: 98px;
    z-index: 30;
}

/* Outer container for the left-side social icon stack. */
.home-social-rail {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 78px;
    max-height: calc(100vh - 220px);
    min-height: 360px;
    padding: 14px 10px;
    border: 1px solid rgba(133, 95, 32, 0.45);
    background: rgba(29, 20, 12, 0.88);
}

/* Scrollable inner column for social media icons so many links can fit in the rail. */
.home-social-rail-scroll {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 2px;
    scrollbar-width: thin;
    scrollbar-color: rgba(207, 170, 79, 0.7) rgba(255, 255, 255, 0.06);
}

/* WebKit scrollbar width for the left social rail. */
.home-social-rail-scroll::-webkit-scrollbar {
    width: 6px;
}

/* WebKit scrollbar track color for the left social rail. */
.home-social-rail-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
}

/* WebKit scrollbar thumb color for the left social rail. */
.home-social-rail-scroll::-webkit-scrollbar-thumb {
    background: rgba(207, 170, 79, 0.7);
}

/* Compact icon button used for each social link in the fixed left rail. */
.home-social-icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

/* SVG icon sizing inside the left social rail buttons. */
.home-social-icon-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

/* Hover/focus treatment for left social rail icon buttons. */
.home-social-icon-btn:hover,
.home-social-icon-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
    filter: brightness(1.05);
}

/* Facebook icon button color treatment in the left social rail. */
.home-social-icon-btn.is-facebook {
    background: linear-gradient(180deg, #2d84ff 0%, #1f67d9 100%);
}

/* X/Twitter icon button color treatment in the left social rail. */
.home-social-icon-btn.is-x {
    background: linear-gradient(180deg, #7fb5ff 0%, #5f98ea 100%);
}

/* LinkedIn icon button color treatment in the left social rail. */
.home-social-icon-btn.is-linkedin {
    background: linear-gradient(180deg, #0b75e5 0%, #0b5ec9 100%);
}

/* WhatsApp icon button color treatment in the left social rail. */
.home-social-icon-btn.is-whatsapp {
    background: linear-gradient(180deg, #28d765 0%, #18bc53 100%);
}

/* Instagram icon button color treatment in the left social rail. */
.home-social-icon-btn.is-instagram {
    background: linear-gradient(135deg, #7a3cff 0%, #ff2f5e 48%, #ffb548 100%);
}

.main-news-shell .panel-main-card-wide {
    max-width: none;
    margin: 0;
}

/* Sticky trending sidebar used beside the Main News panel. */
.panel-trending-sidebar {
    position: sticky;
    top: 110px;
}

.panel-header {
    background: var(--panel-head-bg);
    border-bottom: 2px solid #101418;
    padding: 12px 16px;
}

.panel-header h2 {
    color: var(--text);
    font-family: var(--display-font);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.panel-list {
    padding: 10px 12px;
}

.panel-list-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.panel-list-item:last-child {
    border-bottom: 0;
}

.panel-thumb {
    display: block;
}

.panel-thumb img {
    width: 72px;
    height: 58px;
    object-fit: cover;
    display: block;
}

.panel-copy h3,
.panel-main-body h3 {
    font-family: var(--reading-font);
    color: var(--text);
}

.panel-copy h3 {
    font-size: 1.03rem;
    line-height: 1.42;
    margin-top: 2px;
}

.panel-meta {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: capitalize;
}

.panel-rank {
    align-self: end;
    justify-self: end;
    background: #101418;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
}

.panel-main-image {
    display: block;
}

.panel-main-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.panel-main-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px 24px 22px;
    background: linear-gradient(180deg, rgba(8, 11, 16, 0) 0%, rgba(8, 11, 16, 0.62) 38%, rgba(8, 11, 16, 0.92) 100%);
}

.panel-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.panel-tag {
    background: #101418;
    color: #ffffff;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 7px;
    border-radius: 2px;
}

.panel-tag-soft {
    background: rgba(207, 170, 79, 0.22);
    color: #f1d48a;
}

.panel-main-body h3 {
    margin-top: 10px;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.2;
}

.panel-main-body h3 a {
    color: #ffffff;
}

.panel-main-body p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 74ch;
}

.panel-main-meta {
    margin-top: 12px;
    display: flex;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-top: 10px;
    border-top: 2px solid #101418;
}

.section-title {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 800;
}

.section-link,
.muted {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.daily-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.daily-news-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.62fr);
    gap: 28px;
    align-items: start;
}

.daily-news-list {
    display: grid;
    gap: 0;
}

.daily-news-item {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 0 0 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--border);
}

.daily-news-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.daily-news-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
}

.daily-news-thumb img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: transparent;
    display: block;
}

.daily-news-copy {
    min-width: 0;
}

.daily-news-meta {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: 0.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.daily-news-meta span {
    margin: 0 6px;
}

.daily-news-copy h3 {
    margin: 0 0 12px;
    font-family: var(--headline-font);
    font-size: clamp(1.28rem, 1.55vw, 1.72rem);
    line-height: 1.14;
}

.daily-news-copy h3 a {
    color: var(--text);
}

.daily-news-copy p {
    margin: 0;
    font-family: var(--reading-font);
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.55;
}

.daily-news-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.daily-news-sidebar .article-ad-card {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
}

.daily-sidebar-card {
    padding: 12px;
}

.daily-sidebar-card img {
    width: 100%;
    display: block;
    border-radius: 0;
}

.daily-sidebar-magazine {
    padding: 10px;
    background: #ffffff;
}

.daily-sidebar-magazine .article-sidebar-kicker {
    margin-bottom: 8px;
    letter-spacing: 0.14em;
}

.daily-sidebar-magazine a {
    display: block;
    background: #ffffff;
}

.daily-sidebar-magazine img {
    aspect-ratio: 0.72 / 1;
    object-fit: cover;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
}

.feature-banner-strip {
    display: block;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    overflow: hidden;
}

.feature-banner-strip img {
    width: 100%;
    height: clamp(135px, 14vw, 190px);
    object-fit: cover;
    display: block;
}

.top-stories-shell {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(320px, 1fr);
    gap: 22px;
    align-items: start;
}

.top-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tech-radar-intro {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 22px;
}

.tech-radar-intro-media img {
    width: 100%;
    min-height: 280px;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05);
}

.tech-radar-intro-copy {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 28px;
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.tech-radar-intro-copy h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.12;
}

.tech-radar-intro-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .tech-radar-intro {
        grid-template-columns: 1fr;
    }

    .page-social-rail {
        position: static;
        width: auto;
        margin: 0 auto 18px;
        padding: 0 20px;
    }

    .main-news-shell {
        grid-template-columns: 1fr;
    }

    .home-social-rail {
        position: static;
        max-height: none;
        min-height: 0;
        order: -1;
        width: auto;
        padding: 10px 12px;
    }

    .home-social-rail-scroll {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 0;
        padding-bottom: 6px;
    }

    .home-social-icon-btn {
        min-width: 50px;
        flex: 0 0 auto;
    }
}

.top-stories-subscribe {
    margin: 0;
    max-width: none;
    align-self: stretch;
    position: sticky;
    top: 18px;
    min-height: 0;
    max-height: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    max-width: 330px;
    justify-self: end;
}

.top-stories-subscribe .subscribe-panel__copy {
    max-width: none;
}

.subscribe-kicker {
    margin: 0;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--gold-deep);
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.top-stories-subscribe .section-title {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.15;
    text-align: left;
    margin: 0 0 12px;
    text-transform: none;
}

.top-stories-subscribe p {
    max-width: none;
    margin: 0 0 14px;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.35;
}

.top-stories-subscribe .subscribe-form-card {
    gap: 10px;
    margin-top: 0;
    padding: 18px 20px 20px;
}

.top-stories-subscribe .subscribe-field {
    max-width: none;
}

.top-stories-subscribe .subscribe-field span {
    font-size: 0.95rem;
}

.top-stories-subscribe .subscribe-field input {
    min-height: 40px;
    padding: 8px 12px;
    font-family: var(--reading-font);
    font-size: 0.92rem;
}

.top-stories-subscribe .btn-gold {
    width: auto;
    min-width: 108px;
    min-height: 40px;
    padding: 8px 18px;
    font-size: 0.92rem;
    align-self: stretch;
}

.top-stories-subscribe .subscribe-form-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.top-stories-subscribe .subscribe-form-card .subscribe-field {
    grid-column: 1;
}

.top-stories-subscribe .subscribe-form-card .btn-gold {
    grid-column: 2;
}

.top-stories-subscribe .subscribe-form-card > p,
.top-stories-subscribe .subscribe-form-card > .section-title {
    grid-column: 1 / -1;
}

.latest-stories-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(15, 23, 42, 0.08);
}

.stories-rail-shell {
    position: relative;
    padding: 0 34px;
}

.latest-stories-rail::-webkit-scrollbar {
    height: 10px;
}

.latest-stories-rail::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.06);
    border-radius: 999px;
}

.latest-stories-rail::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 999px;
}

.card-shell-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.card-shell-link:hover,
.card-shell-link:focus-visible {
    color: inherit;
    text-decoration: none;
}

.top-stories-grid > .card-shell-link,
.daily-news-list > .card-shell-link,
.panel-list > .card-shell-link,
.latest-stories-rail > .card-shell-link {
    display: block;
}

.latest-stories-rail > .card-shell-link {
    min-width: 0;
    scroll-snap-align: start;
}

.card-shell-link:focus-visible .post-card,
.card-shell-link:focus-visible .daily-news-item,
.card-shell-link:focus-visible .panel-list-item {
    outline: 2px solid rgba(184, 150, 70, 0.8);
    outline-offset: 3px;
}

.post-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.post-card-media {
    display: block;
    overflow: hidden;
    background: transparent;
}

.post-card img,
.post-card-media img {
    width: 100%;
    height: 228px;
    object-fit: contain;
    background: transparent;
    display: block;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(17, 24, 39, 0.09);
    border-color: rgba(184, 150, 70, 0.34);
}

.post-card-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
}

.post-card .body {
    padding: 16px;
}

.badge,
.mini-badge {
    display: inline-block;
    border-radius: 2px;
    padding: 5px 8px;
    font-size: 0.68rem;
    font-weight: 700;
    background: #101418;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tech-radar-blog-badge {
    font-size: 0.88rem;
    padding: 6px 10px;
}

.post-card h3,
.showcase-card h3 {
    margin: 9px 0 6px;
    font-size: 1.12rem;
    line-height: 1.28;
    letter-spacing: 0.01em;
}

.panel-copy h3,
.panel-main-body h3,
.post-card h3,
.showcase-card h3,
.article-title,
.newsletter-feature-copy h2,
.newsletter-card h3,
.event-spotlight-copy h2,
.event-card-copy h3 {
    font-family: var(--headline-font);
    letter-spacing: 0;
}

.post-card p,
.showcase-card p {
    font-family: var(--reading-font);
    color: var(--text-soft);
    line-height: 1.55;
    font-size: 1rem;
}

.excerpt-three-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.post-card small,
.showcase-card small {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.daily-news-card img {
    height: 270px;
}

.daily-news-card .body {
    padding: 18px 18px 20px;
}

.daily-news-card h3 {
    font-size: 1.22rem;
}

.daily-news-card p {
    font-family: var(--reading-font);
    font-size: 1rem;
}

.latest-rail-card {
    min-width: 0;
    scroll-snap-align: start;
}

.latest-rail-card img {
    height: 230px;
}

.latest-rail-card .latest-story-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.stories-rail-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    font-size: 1.7rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.12);
}

.stories-rail-arrow:hover {
    border-color: rgba(184, 150, 70, 0.42);
    color: var(--gold-deep);
}

.stories-rail-arrow-left {
    left: -4px;
}

.stories-rail-arrow-right {
    right: -4px;
}

.market-table {
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05);
}

.market-table-head,
.market-card {
    display: grid;
    grid-template-columns: minmax(170px, 1.45fr) minmax(140px, 1fr) minmax(110px, 0.8fr) minmax(145px, 1fr) minmax(170px, 1.1fr);
    align-items: center;
    gap: 18px;
}

.market-table-head {
    padding: 14px 22px;
    background: #aaadaf;
    color: rgb(0, 0, 0);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}

.market-card {
    padding: 16px 22px;
    background: linear-gradient(90deg, #ffffff 0%, #f7f8fa 68%, #ffffff 100%);
    border-bottom: 1px solid rgba(240, 122, 33, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}

.market-card:last-child {
    border-bottom: 0;
}

.market-card:hover {
    background: linear-gradient(90deg, #ffffff 0%, #f2f4f6 58%, #ffffff 100%);
}

:root[data-theme="dark"] .market-table,
:root[data-theme="black-gold"] .market-table {
    background: #0f0b08;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .market-table-head,
:root[data-theme="black-gold"] .market-table-head {
    background: #17110c;
    color: #f1ddab;
    border-bottom-color: rgba(200, 154, 43, 0.2);
}

:root[data-theme="dark"] .market-card,
:root[data-theme="black-gold"] .market-card {
    background: linear-gradient(90deg, #120d09 0%, #19120c 68%, #120d09 100%);
    border-bottom-color: rgba(200, 154, 43, 0.16);
}

:root[data-theme="dark"] .market-card:hover,
:root[data-theme="black-gold"] .market-card:hover {
    background: linear-gradient(90deg, #17100a 0%, #21170e 58%, #17100a 100%);
}

.market-cell {
    min-width: 0;
}

.market-asset-cell strong,
.market-price-cell strong,
.market-change-cell strong,
.market-yesterday-cell strong {
    display: block;
    line-height: 1.2;
}

.market-asset-cell strong {
    font-size: 1.1rem;
}

.market-asset-cell small {
    display: inline-block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.market-price-cell strong,
.market-yesterday-cell strong {
    font-size: 1.02rem;
}

.market-change-cell strong,
.market-change-cell small {
    color: var(--text-muted);
}

.market-change-cell.up strong,
.market-change-cell.up small {
    color: #20a25e;
}

.market-change-cell.down strong,
.market-change-cell.down small {
    color: #de5149;
}

.market-change-cell small {
    display: block;
    margin-top: 2px;
    font-size: 0.78rem;
    font-weight: 700;
}

.market-trend-cell {
    display: flex;
    align-items: center;
}

.market-sparkline {
    width: 100%;
    height: 54px;
    display: block;
    opacity: 0.95;
}

.split-block {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 14px;
}

.stacked-panels {
    display: grid;
    gap: 14px;
}

.feature-panel,
.issue-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.feature-panel h3 {
    margin-top: 10px;
    font-size: 1.35rem;
    line-height: 1.3;
}

.subscribe-panel {
    padding-top: 18px;
}

.subscribe-panel-centered {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-panel-centered .issue-actions {
    justify-content: center;
}

.subscribe-panel-form {
    position: relative;
    max-width: none;
    margin-top: 0;
    padding: 42px 28px 26px;
    border: 1px solid rgba(17, 24, 39, 0.22);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}

.top-stories-subscribe {
    align-self: stretch;
    text-align: center;
}

.subscribe-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 7px 18px;
    background: #c62828;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-style: italic;
}

.subscribe-form-card {
    display: grid;
    gap: 18px;
    margin-top: 10px;
    text-align: left;
}

.subscribe-field {
    display: grid;
    gap: 8px;
}

.subscribe-field span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.subscribe-field input {
    width: 100%;
    border: 1px solid rgba(17, 24, 39, 0.24);
    background: #ffffff;
    color: var(--text);
    padding: 11px 12px;
    font: inherit;
    font-size: 0.95rem;
}

.subscribe-field input:focus {
    outline: 0;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240, 122, 33, 0.12);
}

.subscribe-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 2px;
}

.subscribe-actions .btn-gold,
.subscribe-actions .btn-outline {
    min-width: 168px;
    text-align: center;
}

.feature-panel p,
.issue-panel p {
    margin: 12px 0 16px;
    color: var(--text-soft);
    line-height: 1.65;
    font-family: var(--content-font);
}

.issue-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.subscription-section {
    padding: 44px 0;
    background: var(--subscription-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.subscription-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.subscription-showcase,
.subscription-form-card {
    background: var(--subscription-card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(4px);
}

.subscription-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.subscription-brand-badge {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: var(--subscription-badge-bg);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--gold-deep);
}

.subscription-cover-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--subscription-cover-bg);
}

.subscription-cover-card img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.subscription-cover-fallback {
    min-height: 540px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--subscription-fallback-bg);
}

.subscription-cover-fallback h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.subscription-copy {
    margin-top: 18px;
}

.subscription-copy h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.subscription-copy p {
    color: var(--text-soft);
    line-height: 1.7;
}

.subscription-form {
    display: grid;
    gap: 14px;
}

.subscription-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.subscription-field input,
.subscription-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    background: var(--field-bg);
    font: inherit;
    color: var(--text);
}

.subscription-phone {
    display: grid;
    grid-template-columns: 96px 1fr;
}

.subscription-phone span {
    border: 1px solid var(--border);
    border-right: 0;
    border-radius: 10px 0 0 10px;
    background: var(--field-alt-bg);
    display: grid;
    place-items: center;
    color: var(--text-soft);
    font-weight: 600;
}

.subscription-phone input {
    border-radius: 0 10px 10px 0;
}

.subscription-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.subscription-plans {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.subscription-plan {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--field-bg);
    cursor: pointer;
}

.subscription-plan input {
    display: none;
}

.subscription-plan-label {
    color: var(--text);
    font-weight: 700;
}

.subscription-plan strong {
    color: var(--gold-deep);
    font-size: 1.02rem;
}

.subscription-plan.is-selected,
.subscription-plan:has(input:checked) {
    border-color: var(--gold);
    background: rgba(157, 122, 47, 0.12);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.subscription-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.category-showcase {
    background: var(--surface-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 34px 0;
}

.category-showcase-second {
    border-top: 0;
    padding-top: 12px;
}

.showcase-head {
    margin-bottom: 14px;
}

.showcase-title {
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.showcase-subtitle {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-family: var(--content-font);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.showcase-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(17, 24, 39, 0.09);
    border-color: rgba(184, 150, 70, 0.34);
}

.showcase-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.showcase-card .body {
    padding: 14px;
}

.section-map-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.section-map-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
}

.section-map-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.section-map-card ul {
    margin: 0;
    padding-left: 16px;
    color: var(--text-soft);
}

.section-map-card li {
    margin-bottom: 5px;
    line-height: 1.45;
}

.section-map-card a:hover {
    color: var(--gold-deep);
}

.content-wrap {
    width: min(900px, 94%);
    margin: 34px auto 56px;
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 24px;
    backdrop-filter: blur(8px);
}

.content-wrap img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 10px;
    margin: 12px 0 20px;
}

.site-footer {
    border-top: 4px solid var(--gold);
    background: var(--footer-bg);
}

.contact-section {
    padding: 56px 0 20px;
    background:
        linear-gradient(120deg, rgba(240, 122, 33, 0.12) 0, rgba(240, 122, 33, 0.12) 2px, transparent 2px, transparent 24%),
        linear-gradient(300deg, rgba(240, 122, 33, 0.1) 0, rgba(240, 122, 33, 0.1) 2px, transparent 2px, transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 252, 246, 0.98) 100%);
    background-size: 100% 100%, 100% 100%, auto;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

.contact-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(240, 122, 33, 0.2);
    box-shadow: 0 24px 48px rgba(42, 27, 5, 0.08);
}

.contact-form-card {
    padding: 38px 40px 34px;
}

.contact-card-head {
    text-align: center;
    margin-bottom: 24px;
}

.contact-card-head h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.contact-card-head p {
    margin-top: 10px;
    color: var(--text-soft);
    font-family: var(--content-font);
    font-size: 1rem;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-field {
    display: grid;
    gap: 6px;
}

.contact-field span {
    color: var(--text-soft);
    font-size: 0.86rem;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    width: 100%;
    border: 1px solid rgba(240, 122, 33, 0.52);
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    padding: 14px 16px;
    font: inherit;
    font-family: var(--content-font);
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #8e7752;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240, 122, 33, 0.08);
}

.contact-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, #8f6513 50%),
        linear-gradient(135deg, #8f6513 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.contact-field textarea {
    resize: vertical;
    min-height: 124px;
}

.contact-submit {
    border: 0;
    background: linear-gradient(90deg, #b9881f 0%, #dbba66 50%, #b9881f 100%);
    color: #1b1308;
    padding: 15px 20px;
    font: inherit;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.contact-info-card {
    padding: 14px;
}

.contact-info-frame {
    height: 100%;
    border: 1px solid rgba(240, 122, 33, 0.65);
    padding: 42px 54px;
    position: relative;
}

.contact-info-frame::before,
.contact-info-frame::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-top: 1px solid rgba(240, 122, 33, 0.35);
    border-bottom: 1px solid rgba(240, 122, 33, 0.35);
    pointer-events: none;
}

.contact-info-frame h3 {
    font-family: var(--display-font);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    text-transform: uppercase;
    text-align: center;
}

.contact-info-list {
    margin-top: 36px;
    display: grid;
    gap: 28px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

:root[data-theme="dark"] .contact-section,
:root[data-theme="black-gold"] .contact-section {
    background:
        linear-gradient(120deg, rgba(212, 173, 75, 0.08) 0, rgba(212, 173, 75, 0.08) 2px, transparent 2px, transparent 24%),
        linear-gradient(300deg, rgba(212, 173, 75, 0.06) 0, rgba(212, 173, 75, 0.06) 2px, transparent 2px, transparent 28%),
        linear-gradient(180deg, #0c0805 0%, #16100b 100%);
}

:root[data-theme="dark"] .contact-card,
:root[data-theme="black-gold"] .contact-card {
    background: linear-gradient(180deg, rgba(26, 18, 12, 0.96) 0%, rgba(17, 11, 8, 0.98) 100%);
    border-color: rgba(212, 173, 75, 0.22);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] .contact-card-head h2,
:root[data-theme="black-gold"] .contact-card-head h2,
:root[data-theme="dark"] .contact-info-frame h3,
:root[data-theme="black-gold"] .contact-info-frame h3 {
    color: #f5e6bf;
}

:root[data-theme="dark"] .contact-card-head p,
:root[data-theme="black-gold"] .contact-card-head p,
:root[data-theme="dark"] .contact-field span,
:root[data-theme="black-gold"] .contact-field span,
:root[data-theme="dark"] .contact-info-label,
:root[data-theme="black-gold"] .contact-info-label {
    color: #c9b488;
}

:root[data-theme="dark"] .contact-field input,
:root[data-theme="dark"] .contact-field textarea,
:root[data-theme="dark"] .contact-field select,
:root[data-theme="black-gold"] .contact-field input,
:root[data-theme="black-gold"] .contact-field textarea,
:root[data-theme="black-gold"] .contact-field select {
    border-color: rgba(212, 173, 75, 0.28);
    background: rgba(255, 255, 255, 0.04);
    color: #f4efe6;
}

:root[data-theme="dark"] .contact-field input::placeholder,
:root[data-theme="dark"] .contact-field textarea::placeholder,
:root[data-theme="black-gold"] .contact-field input::placeholder,
:root[data-theme="black-gold"] .contact-field textarea::placeholder {
    color: #9d8866;
}

:root[data-theme="dark"] .contact-field input:focus,
:root[data-theme="dark"] .contact-field textarea:focus,
:root[data-theme="dark"] .contact-field select:focus,
:root[data-theme="black-gold"] .contact-field input:focus,
:root[data-theme="black-gold"] .contact-field textarea:focus,
:root[data-theme="black-gold"] .contact-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 173, 75, 0.12);
}

:root[data-theme="dark"] .contact-field select,
:root[data-theme="black-gold"] .contact-field select {
    background-image:
        linear-gradient(45deg, transparent 50%, #d4ad4b 50%),
        linear-gradient(135deg, #d4ad4b 50%, transparent 50%);
    background-color: rgba(255, 255, 255, 0.04);
    color-scheme: dark;
}

:root[data-theme="dark"] .contact-field select option,
:root[data-theme="dark"] .contact-field select optgroup,
:root[data-theme="black-gold"] .contact-field select option,
:root[data-theme="black-gold"] .contact-field select optgroup {
    background: #120c08;
    color: #f4efe6;
}

:root[data-theme="dark"] .contact-info-frame,
:root[data-theme="black-gold"] .contact-info-frame {
    border-color: rgba(212, 173, 75, 0.48);
    background:
        radial-gradient(circle at top, rgba(212, 173, 75, 0.08), transparent 46%),
        rgba(12, 8, 5, 0.35);
}

:root[data-theme="dark"] .contact-info-frame::before,
:root[data-theme="dark"] .contact-info-frame::after,
:root[data-theme="black-gold"] .contact-info-frame::before,
:root[data-theme="black-gold"] .contact-info-frame::after {
    border-top-color: rgba(212, 173, 75, 0.2);
    border-bottom-color: rgba(212, 173, 75, 0.2);
}

:root[data-theme="dark"] .contact-info-item p:last-child,
:root[data-theme="black-gold"] .contact-info-item p:last-child,
:root[data-theme="dark"] .contact-info-icon,
:root[data-theme="black-gold"] .contact-info-icon {
    color: #f4efe6;
}

.contact-info-icon {
    color: var(--gold);
    font-size: 1.7rem;
    line-height: 1;
}

.contact-info-label {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-info-item p:last-child {
    margin-top: 6px;
    color: var(--text-soft);
    font-family: var(--content-font);
    font-size: 1.05rem;
}

/* Social media links landing page wrapper. */
.social-links-page {
    padding: 40px 0 28px;
    background:
        radial-gradient(circle at top left, rgba(212, 173, 75, 0.18), transparent 32%),
        radial-gradient(circle at top right, rgba(212, 173, 75, 0.14), transparent 24%),
        linear-gradient(180deg, #050402 0%, #120c08 54%, #050402 100%);
}

/* Inner layout container for the dedicated social links page. */
.social-links-shell {
    width: min(860px, 100%);
}

/* Hero card used at the top of the social links page. */
.social-links-hero {
    position: relative;
    overflow: hidden;
    padding: 44px 40px 38px;
    border: 1px solid rgba(212, 173, 75, 0.38);
    background:
        linear-gradient(135deg, rgba(12, 8, 5, 0.96) 0%, rgba(20, 14, 9, 0.94) 55%, rgba(10, 7, 5, 0.98) 100%);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.social-links-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(212, 173, 75, 0.24), transparent 24%),
        radial-gradient(circle at 85% 8%, rgba(212, 173, 75, 0.14), transparent 18%);
    pointer-events: none;
}

.social-links-branding,
/* Grid/list wrapper for large social link cards on the social links page. */
.social-links-list {
    position: relative;
    z-index: 1;
}

.social-links-branding {
    text-align: center;
}

.social-links-branding img {
    width: min(220px, 52vw);
    max-width: 100%;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.35));
}

.social-links-kicker {
    margin: 18px 0 10px;
    color: rgba(212, 173, 75, 0.88);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.social-links-branding h1 {
    margin: 0;
    color: #f7eac3;
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 0.94;
}

.social-links-branding p {
    width: min(560px, 100%);
    margin: 14px auto 0;
    color: rgba(244, 239, 230, 0.82);
    font-size: 1.04rem;
    line-height: 1.7;
}

.social-links-list {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

/* Individual social link card used on the dedicated social links page. */
.social-link-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    border: 1px solid rgba(212, 173, 75, 0.54);
    color: inherit;
    text-decoration: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.social-link-card:hover,
.social-link-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(212, 173, 75, 0.82);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    background: linear-gradient(90deg, rgba(212, 173, 75, 0.09), rgba(255, 255, 255, 0.02));
}

.social-link-card:focus-visible {
    outline: 2px solid rgba(212, 173, 75, 0.65);
    outline-offset: 2px;
}

.social-link-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display-font);
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.social-link-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.social-link-icon.is-website {
    background: linear-gradient(135deg, #c89a2b 0%, #f1cd72 100%);
    color: #221608;
}

.social-link-icon.is-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
}

.social-link-icon.is-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0f5fd0 100%);
}

.social-link-icon.is-linkedin {
    background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
}

.social-link-icon.is-x {
    background: linear-gradient(135deg, #141414 0%, #050505 100%);
}

.social-link-icon.is-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-link-text strong {
    display: block;
    color: #f8f3ea;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.18;
}

.social-link-text span {
    display: block;
    margin-top: 6px;
    color: rgba(244, 239, 230, 0.72);
    font-size: 0.98rem;
    line-height: 1.45;
    word-break: break-word;
}

.social-link-arrow {
    color: rgba(212, 173, 75, 0.92);
    font-size: 2rem;
    line-height: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 18px;
    padding: 36px 0 22px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-col a,
.footer-col p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-brand .footer-logo {
    font-family: var(--display-font);
    font-size: clamp(3rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.05;
    display: block;
    margin-bottom: 6px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #f3f4f6;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
}

.chatbot-shell {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
}

.chatbot-toggle {
    border: 0;
    background: linear-gradient(135deg, #c6a047 0%, #a98226 100%);
    color: #111418;
    padding: 14px 18px;
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
}

.chatbot-toggle:hover,
.chatbot-toggle:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(17, 24, 39, 0.18);
}

.whatsapp-chat-link {
    position: relative;
    width: 58px;
    height: 58px;
    padding: 0;
    background: linear-gradient(135deg, #c6a047 0%, #a98226 100%);
    color: #111418;
    box-shadow: 0 18px 36px rgba(169, 130, 38, 0.28);
}

.whatsapp-chat-link:hover,
.whatsapp-chat-link:focus-visible {
    box-shadow: 0 22px 42px rgba(169, 130, 38, 0.34);
}

.whatsapp-chat-link-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    white-space: nowrap;
    background: #111418;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.whatsapp-chat-link:hover .whatsapp-chat-link-label,
.whatsapp-chat-link:focus-visible .whatsapp-chat-link-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.whatsapp-chat-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.whatsapp-chat-link-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.whatsapp-chat-panel {
    width: min(360px, calc(100vw - 28px));
}

.whatsapp-chat-panel-head {
    background: linear-gradient(135deg, rgba(198, 160, 71, 0.14) 0%, rgba(169, 130, 38, 0.2) 100%);
}

.whatsapp-chat-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.whatsapp-chat-message {
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 16px 16px 16px 4px;
    background: linear-gradient(135deg, rgba(198, 160, 71, 0.18) 0%, rgba(255, 247, 229, 0.95) 100%);
    color: var(--text);
    line-height: 1.5;
    font-size: 0.94rem;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.whatsapp-chat-form {
    grid-template-columns: 1fr;
}

.whatsapp-chat-form input {
    min-height: 48px;
}

.whatsapp-chat-submit {
    width: 100%;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 64px;
    width: min(360px, calc(100vw - 28px));
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 26px 60px rgba(17, 24, 39, 0.16);
    display: none;
}

.chatbot-shell.is-open .chatbot-panel {
    display: flex;
    flex-direction: column;
}

.chatbot-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: #fbfbfb;
}

.chatbot-panel-head strong {
    display: block;
    font-family: var(--display-font);
    font-size: 1.15rem;
    line-height: 1;
}

.chatbot-panel-head p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.chatbot-close {
    border: 0;
    background: transparent;
    color: var(--text-soft);
    font: inherit;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.chatbot-messages {
    height: 320px;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
}

.chatbot-message {
    display: flex;
}

.chatbot-message-user {
    justify-content: flex-end;
}

.chatbot-bubble {
    max-width: 88%;
    padding: 10px 12px;
    border-radius: 14px;
    font-family: var(--reading-font);
    font-size: 0.94rem;
    line-height: 1.5;
    white-space: pre-wrap;
}

.chatbot-message-assistant .chatbot-bubble {
    background: #f5f7fa;
    color: var(--text);
}

.chatbot-message-user .chatbot-bubble {
    background: #d3b161;
    color: #111418;
}

.chatbot-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.chatbot-form input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--border);
    padding: 10px 12px;
    font: inherit;
    font-family: var(--reading-font);
    outline: none;
}

.chatbot-form input:focus {
    border-color: var(--gold);
}

.chatbot-form .btn-gold {
    min-height: 44px;
    padding: 10px 16px;
}

:root[data-theme="dark"] .chatbot-toggle,
:root[data-theme="black-gold"] .chatbot-toggle {
    background: linear-gradient(135deg, #d4ad4b 0%, #b7892f 52%, #8e651d 100%);
    color: #120d08;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
}

:root[data-theme="dark"] .whatsapp-chat-link,
:root[data-theme="black-gold"] .whatsapp-chat-link {
    background: linear-gradient(135deg, #d4ad4b 0%, #b7892f 52%, #8e651d 100%);
    color: #120d08;
}

:root[data-theme="dark"] .whatsapp-chat-panel-head,
:root[data-theme="black-gold"] .whatsapp-chat-panel-head {
    background: linear-gradient(135deg, rgba(212, 173, 75, 0.16) 0%, rgba(143, 101, 29, 0.24) 100%);
}

:root[data-theme="dark"] .whatsapp-chat-message,
:root[data-theme="black-gold"] .whatsapp-chat-message {
    background: linear-gradient(135deg, rgba(212, 173, 75, 0.18) 0%, rgba(29, 21, 13, 0.96) 100%);
    color: var(--text);
}

:root[data-theme="dark"] .chatbot-panel,
:root[data-theme="black-gold"] .chatbot-panel {
    background: linear-gradient(180deg, #17100b 0%, #0f0906 100%);
    border-color: rgba(212, 173, 75, 0.22);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
}

:root[data-theme="dark"] .chatbot-panel-head,
:root[data-theme="black-gold"] .chatbot-panel-head {
    background: linear-gradient(180deg, rgba(36, 25, 16, 0.98) 0%, rgba(22, 15, 10, 0.98) 100%);
    border-bottom-color: rgba(212, 173, 75, 0.18);
}

:root[data-theme="dark"] .chatbot-panel-head strong,
:root[data-theme="black-gold"] .chatbot-panel-head strong {
    color: var(--gold);
}

:root[data-theme="dark"] .chatbot-panel-head p,
:root[data-theme="black-gold"] .chatbot-panel-head p,
:root[data-theme="dark"] .chatbot-close,
:root[data-theme="black-gold"] .chatbot-close {
    color: var(--text-soft);
}

:root[data-theme="dark"] .chatbot-messages,
:root[data-theme="black-gold"] .chatbot-messages {
    background:
        radial-gradient(circle at top, rgba(212, 173, 75, 0.08), transparent 44%),
        #120c08;
}

:root[data-theme="dark"] .chatbot-message-assistant .chatbot-bubble,
:root[data-theme="black-gold"] .chatbot-message-assistant .chatbot-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    border: 1px solid rgba(212, 173, 75, 0.12);
}

:root[data-theme="dark"] .chatbot-message-user .chatbot-bubble,
:root[data-theme="black-gold"] .chatbot-message-user .chatbot-bubble {
    background: linear-gradient(135deg, #d4ad4b 0%, #b7892f 52%, #8e651d 100%);
    color: #120d08;
}

:root[data-theme="dark"] .chatbot-form,
:root[data-theme="black-gold"] .chatbot-form {
    background: #100b07;
    border-top-color: rgba(212, 173, 75, 0.18);
}

:root[data-theme="dark"] .chatbot-form input,
:root[data-theme="black-gold"] .chatbot-form input {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 173, 75, 0.18);
    color: var(--text);
}

:root[data-theme="dark"] .chatbot-form input::placeholder,
:root[data-theme="black-gold"] .chatbot-form input::placeholder {
    color: var(--text-muted);
}

:root[data-theme="dark"] .chatbot-form input:focus,
:root[data-theme="black-gold"] .chatbot-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 173, 75, 0.14);
}

@media (max-width: 1024px) {
    .main-news-shell {
        grid-template-columns: 1fr;
    }

    .panel-main-image img {
        height: 420px;
    }

    .panel-trending-sidebar {
        position: static;
    }

    .subscription-grid {
        grid-template-columns: 1fr;
    }

    .exclusive-section {
        grid-template-columns: 1fr;
    }

    .magazine-panels {
        grid-template-columns: 1fr;
    }

    .latest-grid,
    .showcase-grid,
    .section-map-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .market-table-head,
    .market-card {
        grid-template-columns: minmax(150px, 1.25fr) minmax(120px, 1fr) minmax(96px, 0.85fr) minmax(120px, 1fr) minmax(130px, 1fr);
        gap: 14px;
    }

    .split-block {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intelligence-hero,
    .intel-top-grid {
        grid-template-columns: 1fr;
    }

    .magazine-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .magazine-archive-feature {
        grid-column: auto;
        grid-row: auto;
    }

    .edition-slide {
        display: block;
    }

    .spotlight-carousel-track {
        aspect-ratio: 5 / 4;
        min-height: clamp(420px, 72vw, 680px);
    }

    .edition-carousel.edition-carousel-banner {
        width: 100%;
    }

    .edition-carousel.edition-carousel-banner .spotlight-carousel-track {
        aspect-ratio: 16 / 9;
        min-height: clamp(240px, 40vw, 420px);
    }

    .edition-slide-copy {
        max-width: none;
        width: 100%;
    }

    .edition-slide-bg-link {
        inset: 0;
    }

    .intel-performance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intel-stock-row {
        grid-template-columns: 1.4fr 1fr 0.8fr 0.9fr 0.7fr;
    }
}

@media (max-width: 760px) {
    .site-loader {
        padding: 0;
        background:
            radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 42%),
            #000000;
    }

    .site-loader-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        background: #000000;
    }

    .intro-video {
        object-fit: contain;
        background: #000000;
    }

    .intro-video-actions {
        right: 14px;
        bottom: 14px;
    }

    .intro-video-skip {
        padding: 10px 14px;
        font-size: 0.78rem;
    }

    .container {
        width: min(100%, calc(100% - 24px));
    }

    .site-header .container {
        width: min(100%, calc(100% - 24px));
    }

    .chatbot-shell {
        left: auto;
        right: 12px;
        bottom: 12px;
        max-width: calc(100vw - 24px);
    }

    .chatbot-toggle {
        width: auto;
        max-width: min(220px, calc(100vw - 24px));
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .chatbot-panel {
        width: min(360px, calc(100vw - 24px));
        right: 0;
        bottom: 58px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 24px;
    }

    .footer-col,
    .footer-brand {
        min-width: 0;
    }

    .footer-brand .footer-logo {
        font-size: clamp(1.9rem, 11vw, 2.5rem);
        line-height: 0.98;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-top: 12px;
    }

    .chatbot-form {
        grid-template-columns: 1fr;
    }

    .panel-main-card-wide {
        display: flex;
        flex-direction: column;
    }

    .panel-main-image {
        background: #120d08;
    }

    .panel-main-image img {
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        object-position: center center;
    }

    .panel-main-body {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        padding: 16px 16px 18px;
        background: linear-gradient(180deg, rgba(30, 20, 12, 0.98) 0%, rgba(17, 12, 8, 1) 100%);
    }

    .panel-tags {
        gap: 8px;
    }

    .panel-tag {
        font-size: 0.62rem;
        padding: 4px 8px;
    }

    .panel-main-body h3 {
        font-size: clamp(1.22rem, 5.6vw, 1.55rem);
        line-height: 1.16;
        margin-top: 10px;
    }

    .panel-main-meta {
        margin-top: 10px;
        font-size: 0.84rem;
    }

    .panel-main-body p {
        display: none;
    }

    .utility-inner {
        min-height: auto;
        padding: 10px 0;
        font-size: 0.76rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .utility-links {
        gap: 8px;
        flex-wrap: wrap;
    }

    .translate-wrap {
        order: 0;
        width: auto;
        justify-content: flex-start;
    }

    .head-inner {
        justify-content: center;
        min-height: 72px;
        padding: 10px 0;
    }

    .brand-logo img {
        height: 56px;
    }

    .minimal-brand-logo img {
        height: 56px;
    }

    .brand {
        position: static;
        left: auto;
        transform: none;
        text-align: left;
        font-size: clamp(1.35rem, 7vw, 1.95rem);
        line-height: 1.05;
    }

    .head-actions {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .subscribe-btn {
        padding: 9px 14px;
        font-size: 0.82rem;
    }

    .category-bar {
        background: #0f0b08;
        border-bottom: 1px solid rgba(212, 173, 75, 0.22);
    }

    .nav-wrap {
        min-height: 78px;
        justify-content: flex-start;
        padding: 16px 0;
        overflow: visible;
    }

    .nav-mobile-toggle {
        display: inline-flex;
        border-radius: 12px;
    }

    .nav-mobile-toggle span {
        background: var(--gold);
    }

    .top-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        width: 100%;
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: #0f0b08;
        border: 1px solid rgba(212, 173, 75, 0.22);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
        white-space: normal;
        z-index: 200;
    }

    .top-nav.is-open {
        display: flex;
    }

    .top-nav > a,
    .nav-dropdown > a,
    .nav-dropdown-trigger > a,
    .nav-dropdown > button,
    .category-bar .top-nav > a,
    .category-bar .nav-dropdown > a,
    .category-bar .nav-dropdown-trigger > a,
    .category-bar .nav-dropdown > button {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 4px;
        border: 0;
        border-bottom: 1px solid rgba(212, 173, 75, 0.14);
        border-radius: 0;
        background: transparent;
        color: #f1d8a0;
        font-size: 0.92rem;
        letter-spacing: 0.05em;
    }

    .nav-dropdown-trigger {
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .nav-dropdown-trigger > a {
        border-bottom: 0;
        flex: 1 1 auto;
    }

    .nav-dropdown-toggle {
        display: inline-flex;
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        color: #f1d8a0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0;
        padding: 0;
        cursor: pointer;
    }

    .top-nav > a.nav-switch-btn,
    .category-bar .top-nav > a.nav-switch-btn {
        margin-top: 10px;
        border-bottom: 0 !important;
        border-radius: 999px;
        justify-content: center;
        padding: 12px 16px;
        color: #120e08;
        background: var(--gold);
    }

    .nav-search-shell {
        width: 100%;
        margin-left: 0;
        padding: 10px 0 0;
        border-left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-search-form {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 8px;
        margin-top: 8px;
        background: #1a1f25;
        border: 1px solid rgba(212, 173, 75, 0.14);
        border-radius: 18px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
    }

    .nav-search-shell.is-open .nav-search-form,
    .nav-search-shell:focus-within .nav-search-form {
        display: grid;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-search-toggle,
    .nav-search-input {
        height: 36px;
    }

    .nav-search-input {
        font-size: 0.84rem;
        width: 100%;
    }

    .nav-search-toggle,
    .nav-search-submit {
        width: 36px;
        height: 36px;
    }

    .nav-search-toggle {
        display: none;
    }

    .nav-search-toggle svg,
    .nav-search-submit svg {
        width: 17px;
        height: 17px;
    }

    .nav-dropdown {
        padding-bottom: 0;
        margin-bottom: 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 8px 14px;
        background: transparent;
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 4px;
        color: rgba(241, 216, 160, 0.78);
        font-size: 0.8rem;
        border-bottom: 1px solid rgba(212, 173, 75, 0.08);
    }

    body.mobile-nav-open .chatbot-shell {
        opacity: 0;
        pointer-events: none;
    }

    .hero {
        padding: 42px 0 32px;
    }

    .hero-actions,
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .subscription-two-col,
    .exclusive-item,
    .latest-grid,
    .daily-news-grid,
    .daily-news-shell,
    .top-stories-shell,
    .top-stories-grid,
    .showcase-grid,
    .section-map-grid,
    .contact-shell,
    .author-hero-card,
    .author-post-card,
    .about-split,
    .about-split-reverse,
    .article-layout,
    .article-main-shell,
    .event-spotlight,
    .event-card,
    .newsletter-feature-card,
    .newsletter-grid {
        grid-template-columns: 1fr;
    }

    .market-inner,
    .breaking-inner {
        min-height: auto;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 0;
    }

    .latest-stories-rail {
        grid-auto-columns: minmax(220px, 82vw);
        gap: 18px;
        padding-bottom: 14px;
    }

    .daily-news-item {
        grid-template-columns: 1fr;
    }

    .daily-news-thumb img {
        height: 240px;
    }

    .daily-news-sidebar {
        position: static;
    }

    .article-layout {
        grid-auto-flow: row;
    }

    .article-sidebar {
        position: static;
        top: auto;
        width: 100%;
        margin-top: 18px;
        z-index: auto;
    }

    .article-ad-card,
    .article-sidebar-widget {
        position: static;
        z-index: auto;
    }

    .article-main-shell {
        display: block;
        width: 100%;
    }

    .share-rail {
        position: static;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 8px 10px;
        margin-bottom: 12px;
        gap: 10px;
        z-index: auto;
    }

    .share-rail-title {
        margin-right: 6px;
    }

    .top-stories-subscribe {
        position: static;
        max-width: none;
        justify-self: stretch;
    }

    .top-stories-subscribe .subscribe-form-card {
        grid-template-columns: 1fr;
    }

    .top-stories-subscribe .subscribe-form-card .subscribe-field,
    .top-stories-subscribe .subscribe-form-card .btn-gold {
        grid-column: 1;
    }

    .stories-rail-shell {
        padding: 0 18px;
    }

    .stories-rail-arrow {
        width: 34px;
        height: 34px;
        font-size: 1.3rem;
    }

    .stories-rail-arrow-left {
        left: -2px;
    }

    .stories-rail-arrow-right {
        right: -2px;
    }

    .subscribe-panel-form {
        padding: 40px 18px 22px;
    }

    .subscribe-actions {
        justify-content: stretch;
    }

    .subscribe-actions .btn-gold,
    .subscribe-actions .btn-outline {
        width: 100%;
    }

    .market-marquee,
    .breaking-marquee {
        width: 100%;
    }

    .market-time {
        margin-left: 0;
        width: 100%;
        text-align: left;
    }

    .market-table {
        overflow-x: auto;
        border-radius: 14px;
    }

    .market-table-head,
    .market-card {
        min-width: 760px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 12px;
    }

    .magazine-archive-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 34px;
        height: 34px;
    }

    .edition-carousel {
        padding: 16px 14px 24px;
        border-radius: 22px;
    }

    .spotlight-carousel-track {
        aspect-ratio: 4 / 5;
        min-height: clamp(260px, 78vw, 420px);
    }

    .edition-carousel.edition-carousel-banner .spotlight-carousel-track {
        aspect-ratio: 16 / 9;
        min-height: clamp(200px, 56vw, 300px);
    }

    .edition-slide {
        padding: 18px 10px 14px;
    }

    .edition-slide.is-banner {
        padding: 0;
    }

    .edition-slide.is-banner .edition-slide-bg-link {
        inset: 0 0 18px;
        border-radius: 16px;
        overflow: hidden;
    }

    .edition-slide.is-banner .edition-slide-bg {
        background-size: contain;
        background-position: center;
        background-color: #120d09;
    }

    .edition-slide.is-banner .edition-slide-video {
        object-fit: contain;
        object-position: center;
        background-color: #120d09;
    }

    .edition-slide-copy {
        width: 100%;
        max-width: none;
    }

    .edition-slide h2 {
        font-size: clamp(1.65rem, 9vw, 2.7rem);
        max-width: 10ch;
        line-height: 1.05;
    }

    .edition-slide-meta {
        gap: 10px;
        font-size: 0.82rem;
    }

    .intel-toolbar-links,
    .intel-live-strip,
    .intel-tabs {
        gap: 10px;
        font-size: 0.82rem;
    }

    .intel-performance-grid {
        grid-template-columns: 1fr;
    }

    .intel-story-item {
        grid-template-columns: 1fr;
    }

    .intel-story-thumb img {
        height: 180px;
    }

    .intel-stock-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .share-rail {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 16px;
    }

    .article-sidebar {
        position: static;
        order: 3;
    }

    .author-avatar {
        width: 88px;
        height: 88px;
        font-size: 1.5rem;
    }

    .event-spotlight {
        padding: 16px;
        border-radius: 18px;
    }

    .event-spotlight h2,
    .newsletter-feature-copy h2 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .event-spotlight-visual {
        min-height: 260px;
        padding: 10px;
    }

    .calendar-accordion-head {
        align-items: start;
        flex-direction: column;
    }

    .calendar-accordion-content {
        grid-template-columns: 1fr;
    }

    .calendar-accordion-media {
        min-height: 220px;
    }

    .calendar-accordion-item summary {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .calendar-accordion-order {
        width: 84px;
        min-width: 84px;
        height: 84px;
        min-height: 84px;
        padding: 8px;
    }

    .calendar-accordion-order-range {
        font-size: clamp(0.72rem, 3.6vw, 0.95rem);
    }

    .calendar-accordion-order-year {
        font-size: clamp(0.68rem, 3vw, 0.82rem);
    }

    .calendar-accordion-side {
        grid-column: 2;
        justify-self: start;
    }

    .calendar-accordion-flag {
        width: 68px;
        height: 46px;
        border-radius: 0;
    }

    .calendar-accordion-toggle {
        grid-column: auto;
    }

    .calendar-accordion-panel {
        padding: 0 16px 16px 16px;
    }

    .newsletter-grid {
        gap: 18px;
    }

    .newsletter-card-body h3 {
        font-size: 1.35rem;
    }

    .page-hero {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .contact-section {
        padding: 36px 0 16px;
    }

    .contact-form-card {
        padding: 24px 18px 20px;
    }

    .contact-info-card {
        padding: 10px;
    }

    .contact-info-frame {
        padding: 28px 20px;
    }

    .social-links-page {
        padding: 28px 0 18px;
    }

    .social-links-hero {
        padding: 30px 18px 24px;
    }

    .social-links-branding h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .social-link-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 18px 16px;
    }

    .social-link-arrow {
        display: none;
    }

    .landing-page {
        width: min(100%, calc(100% - 24px));
        padding: 18px 0 14px;
    }

    .landing-brand-wrap {
        margin-bottom: 18px;
    }

    .landing-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .landing-panel {
        min-height: 46vh;
    }

    .landing-panel-card {
        width: min(82%, 360px);
        padding: 24px 18px 18px;
    }

    .landing-panel-card h1 {
        font-size: clamp(2rem, 10vw, 3.1rem);
    }

    .landing-panel-card span {
        margin-top: 16px;
        padding: 10px 16px;
        font-size: 0.88rem;
    }

    .landing-footer-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ozn-buyers-strip-shell {
        margin: -6px auto 24px;
    }

    .ozn-buyers-strip {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 18px;
    }

    .ozn-buyers-strip::after {
        width: 220px;
        height: 220px;
        right: -90px;
        bottom: -90px;
    }

    .ozn-buyers-strip-copy strong {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .ozn-buyers-strip-tags {
        gap: 12px;
    }

    .ozn-buyers-strip-tags span {
        min-width: 0;
        flex: 1 1 140px;
    }

    .ozn-buyers-strip-actions {
        padding-left: 0;
        padding-top: 18px;
        border-left: 0;
        border-top: 1px solid rgba(200, 154, 43, 0.22);
        justify-items: stretch;
    }

    .ozn-buyers-strip-cta {
        width: 100%;
        min-height: 64px;
    }
}

@media (max-width: 560px) {
    .top-nav {
        gap: 6px;
    }

    .top-nav > a,
    .nav-dropdown > a,
    .nav-dropdown > button {
        font-size: 0.82rem;
        padding: 7px 10px;
    }

    .nav-search-input {
        font-size: 0.82rem;
    }

    .nav-search-toggle,
    .nav-search-submit {
        width: 34px;
        height: 34px;
    }

    .nav-search-form {
        right: auto;
        left: 0;
        width: 100%;
        padding: 8px;
    }

    .nav-search-toggle svg,
    .nav-search-submit svg {
        width: 16px;
        height: 16px;
    }

    .spotlight-carousel-track {
        min-height: clamp(220px, 80vw, 360px);
    }

    .edition-carousel.edition-carousel-banner .spotlight-carousel-track {
        min-height: clamp(180px, 58vw, 240px);
    }

    .edition-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .edition-slide h2 {
        font-size: clamp(1.45rem, 8vw, 2.2rem);
    }

    .edition-cta {
        padding: 11px 18px;
        font-size: 0.88rem;
    }

    .section-title,
    .showcase-title,
    .page-hero h1 {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }

    .landing-panel {
        min-height: 40vh;
    }
}

@media (max-width: 900px) {
    .page-shell {
        padding: 22px 0 40px;
    }

    .article-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .article-main-shell {
        display: flex !important;
        flex-direction: column;
        gap: 14px;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .article-panel {
        position: static;
        order: 1;
        width: 100%;
        max-width: none !important;
        min-width: 0 !important;
        padding: 18px 14px;
    }

    .article-sidebar {
        position: static !important;
        order: 3;
        top: auto !important;
        width: 100%;
        max-width: none !important;
        min-width: 0 !important;
        margin-top: 18px;
        z-index: auto;
        clear: both;
    }

    .article-layout > *,
    .article-main-shell > * {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .article-ad-card,
    .article-sidebar-widget {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        z-index: auto;
    }

    .share-rail {
        position: static !important;
        width: 100% !important;
        order: 2;
        flex-direction: row !important;
        justify-content: flex-start;
        align-items: center;
        padding: 8px 10px;
        margin-bottom: 0;
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        z-index: auto;
    }

    .share-rail-title {
        margin-right: 6px;
    }

    .article-title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
        line-height: 1.12;
    }

    .article-content,
    .article-content > *,
    .article-content p,
    .article-content div,
    .article-content section,
    .article-content article,
    .article-content blockquote,
    .article-content ul,
    .article-content ol,
    .article-content h2,
    .article-content h3 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        float: none !important;
        clear: both !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .article-content {
        overflow-wrap: break-word;
        word-break: normal;
    }

    .article-instagram-wrap .instagram-media {
        min-width: 100% !important;
        width: 100% !important;
    }
}

.page-shell {
    padding: 40px 0 64px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    align-items: start;
}

.article-main-shell {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.page-hero {
    background: var(--page-hero-bg);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: clamp(26px, 4vw, 42px);
    margin-bottom: 24px;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.05);
    position: relative;
    overflow: hidden;
}

.page-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-deep);
    font-size: 0.72rem;
    font-weight: 800;
}

.page-hero h1 {
    margin-top: 8px;
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    line-height: 0.96;
    text-transform: uppercase;
}

.page-hero-banner {
    margin-bottom: 20px;
}

.page-hero-banner img {
    width: 100%;
    min-height: 260px;
    max-height: 420px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
}

.page-hero-tech-radar-copy {
    max-width: none;
    width: 100%;
}

.page-hero-tech-radar .muted {
    max-width: none;
    width: 100%;
    line-height: 1.75;
    font-size: 0.95rem;
    font-weight: 400;
}

.tech-radar-intro-text {
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.tech-radar-intro-headline {
    margin: 0 0 10px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: normal;
    word-break: keep-all;
    color: var(--text);
    font-family: var(--content-font);
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(184, 150, 70, 0.16) 0%, rgba(184, 150, 70, 0) 70%);
    pointer-events: none;
}

.legal-page-hero {
    margin-bottom: 20px;
}

.legal-page-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.05);
}

.legal-page-copy {
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 1rem;
}

.legal-page-copy > :first-child {
    margin-top: 0;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: center;
    padding: 28px 0 44px;
}

.about-split-story {
    padding-top: 22px;
}

.about-split-reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.about-copy h1,
.about-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 16px;
}

.about-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-copy p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-lead {
    max-width: 760px;
    font-size: 1.02rem;
}

.about-visual img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 18px 34px rgba(42, 27, 5, 0.08);
}

@media (max-width: 900px) {
    .about-split,
    .about-split-reverse {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .about-copy,
    .about-visual,
    .about-promise-panel,
    .about-audience-copy {
        min-width: 0;
    }

    .about-copy p,
    .about-lead {
        max-width: none;
    }

    .about-visual img {
        display: block;
        max-height: 320px;
        object-fit: cover;
    }
}

.about-label {
    margin-bottom: 12px;
    color: var(--gold-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.events-shell {
    display: grid;
    gap: 24px;
}

.event-calendar-card {
    margin: 6px 0 12px;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.05);
}

.event-calendar-card h2 {
    margin-top: 6px;
    font-size: clamp(1.4rem, 3.2vw, 2rem);
}

.event-calendar-card p {
    color: var(--text-soft);
}

.calendar-shell {
    display: grid;
    gap: 24px;
}

.calendar-cards-section {
    display: grid;
    gap: 16px;
}

.calendar-rail-shell {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    box-sizing: border-box;
}

.calendar-cards-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
}

.calendar-cards-head h2 {
    margin-top: 8px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.calendar-cards-head p:last-child {
    color: var(--text-soft);
}

.calendar-rail-note {
    width: 100%;
    margin: 0 0 8px;
    text-align: center;
    color: var(--text-soft);
}

/* Horizontal rail used for the event calendar cards section. */
.calendar-card-rail {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 0 auto;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 18px max(12px, calc((100% - 400px) / 2)) 24px;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -ms-overflow-style: none;
}

/* Temporary hidden state while the event card rail is being positioned on load. */
.calendar-card-rail.is-initializing {
    opacity: 0;
}

.calendar-card-link {
    display: block;
    flex: 0 0 auto;
    width: 353px;
    min-width: 353px;
    max-width: 353px;
    color: inherit;
    text-decoration: none;
}

.calendar-rail-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 6px auto 8px;
}

.calendar-rail-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 22px;
}

.calendar-rail-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(188, 184, 178, 0.95);
    box-shadow: none;
    transition: transform 120ms ease, background-color 120ms ease, opacity 120ms ease;
}

.calendar-rail-dot.is-active {
    background: #c59a57;
    transform: scale(1.02);
}

.calendar-card-rail::-webkit-scrollbar {
    display: none;
}

.calendar-rail-arrow {
    position: static;
    z-index: 1;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #c59a57;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    transition: transform 120ms ease, opacity 120ms ease, color 120ms ease;
}

.calendar-rail-arrow-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.calendar-rail-arrow-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.calendar-rail-arrow:hover:not(:disabled) {
    color: #ddb776;
    transform: scale(1.04);
}

.calendar-rail-arrow:disabled {
    opacity: 0.22;
    cursor: not-allowed;
}

.calendar-archive-wrap {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

/* Base event card used in the calendar carousel/rail. */
.calendar-card {
    --calendar-scale: 0.82;
    --calendar-opacity: 0.6;
    --calendar-lift: 20px;
    position: relative;
    width: 340px;
    min-width: 340px;
    min-height: 350px;
    padding: 20px 20px 18px;
    border: 4px solid rgba(110, 69, 16, 0.92);
    background: linear-gradient(180deg, rgba(231, 204, 159, 0.98), rgba(228, 198, 150, 0.98));
    box-shadow: 0 12px 28px rgba(42, 27, 5, 0.08);
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 88px;
    grid-template-rows: auto 1fr;
    column-gap: 18px;
    row-gap: 12px;
    align-items: start;
    scroll-snap-align: center;
    transition: transform 120ms linear, box-shadow 120ms linear, opacity 120ms linear;
    transform: translateY(var(--calendar-lift)) scale(var(--calendar-scale));
    opacity: var(--calendar-opacity);
}

.calendar-card.is-focus {
    z-index: 2;
    box-shadow: 0 22px 42px rgba(42, 27, 5, 0.16);
}

/* Larger featured/current event card styling in the calendar rail. */
.calendar-card.is-featured,
.calendar-card.is-focus {
    min-height: 420px;
    width: 400px;
    min-width: 400px;
    grid-template-columns: 102px minmax(0, 1fr) 92px;
    column-gap: 22px;
    row-gap: 14px;
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.99), rgba(247, 236, 214, 0.98));
    border-color: rgba(135, 84, 19, 0.96);
}

/* Archive event variation used for past event cards in the calendar rail. */
.calendar-card.is-archive {
    background: linear-gradient(180deg, rgba(221, 196, 156, 0.98), rgba(212, 185, 144, 0.98));
    border-color: rgba(120, 81, 28, 0.78);
}

.calendar-card:hover {
    box-shadow: 0 18px 34px rgba(42, 27, 5, 0.14);
}

.calendar-card-date {
    width: 84px;
    min-height: 84px;
    border: 1px solid rgba(203, 171, 117, 0.7);
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-align: center;
    background: rgba(255, 252, 246, 0.72);
    padding: 6px;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    margin-top: 4px;
}

.calendar-card.is-focus .calendar-card-date,
.calendar-card.is-featured .calendar-card-date {
    width: 94px;
    min-height: 94px;
    margin-top: 2px;
}

.calendar-card-date-range,
.calendar-card-date-month,
.calendar-card-date-year {
    display: block;
    line-height: 1.05;
}

.calendar-card-date-range {
    font-size: 0.95rem;
    font-weight: 800;
    color: #7a4a09;
}

.calendar-card-date-month {
    margin-top: 4px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #8a5a17;
}

.calendar-card-date-year {
    margin-top: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #7a4a09;
}

.calendar-card-body {
    display: grid;
    align-content: start;
    gap: 8px;
    grid-column: 2;
    grid-row: 1 / span 2;
    padding-top: 2px;
    min-width: 0;
    text-align: left;
}

.calendar-card.is-focus .calendar-card-body,
.calendar-card.is-featured .calendar-card-body {
    grid-row: 1;
}

/* Status text shown at the top of event cards, such as Latest/Upcoming/Archive. */
.calendar-card-status {
    margin: 0;
    color: #7e4b05;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: none;
    line-height: 1.1;
}

.calendar-card-body h2 {
    margin: 0;
    color: #7a4a09;
    font-size: 1.05rem;
    line-height: 1.08;
    font-weight: 800;
    word-break: break-word;
}

.calendar-card.is-focus .calendar-card-body h2,
.calendar-card.is-featured .calendar-card-body h2 {
    font-size: clamp(1.55rem, 2.25vw, 2.4rem);
    line-height: 1.08;
}

.calendar-card-meta,
.calendar-card-detail,
.calendar-card-summary {
    margin: 0;
}

.calendar-card-meta {
    display: none;
}

.calendar-card.is-focus .calendar-card-meta,
.calendar-card.is-featured .calendar-card-meta {
    display: block;
    color: #8a5a17;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}

.calendar-card-detail,
.calendar-card-summary {
    color: #6b4515;
    font-size: 0.82rem;
    line-height: 1.5;
    word-break: break-word;
}

.calendar-card-detail {
    display: grid;
    gap: 2px;
}

.calendar-card.is-focus .calendar-card-detail,
.calendar-card.is-focus .calendar-card-summary,
.calendar-card.is-featured .calendar-card-detail,
.calendar-card.is-featured .calendar-card-summary {
    font-size: 0.9rem;
}

.calendar-card-label {
    display: block;
    color: #7a4a09;
    font-weight: 800;
}

.calendar-card-value {
    display: block;
}

.calendar-card-detail a {
    color: #8d5600;
    text-decoration: none;
    word-break: break-word;
}

.calendar-card-detail a:hover {
    text-decoration: underline;
}

.calendar-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    align-self: stretch;
}

.calendar-card-country {
    display: none;
}

.calendar-card.is-focus .calendar-card-footer,
.calendar-card.is-featured .calendar-card-footer {
    grid-column: 2;
    grid-row: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: auto;
    padding-top: 0;
    gap: 10px;
}

.calendar-card.is-focus .calendar-card-country,
.calendar-card.is-featured .calendar-card-country {
    display: block;
    color: #7a4a09;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
}

.calendar-card-flag {
    width: 66px;
    height: 38px;
    border: 3px solid rgba(110, 69, 16, 0.92);
    background: rgba(255, 250, 242, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-left: auto;
}

.calendar-card.is-focus .calendar-card-flag,
.calendar-card.is-featured .calendar-card-flag {
    width: 78px;
    height: 46px;
    margin-left: 0;
    margin-right: auto;
}

.calendar-card-flag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.calendar-card:not(.is-focus) .calendar-card-detail,
.calendar-card:not(.is-focus) .calendar-card-summary,
.calendar-card:not(.is-focus) .calendar-card-date,
.calendar-card:not(.is-focus) .calendar-card-footer {
    display: none;
}

.calendar-card:not(.is-focus) .calendar-card-body {
    align-content: start;
    text-align: left;
    gap: 10px;
    grid-column: 1 / -1;
    grid-row: 1 / span 2;
    padding-top: 0;
    place-content: start;
    justify-items: start;
}

/* Calendar card structure: stacked text layout */
.calendar-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}

.calendar-card-status {
    margin: 0;
    color: #7e4b05;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
}

.calendar-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 0;
    min-width: 0;
    text-align: left;
}

.calendar-card-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
}

.calendar-card-label {
    display: block;
    color: #7a4a09;
    font-weight: 800;
    font-size: 0.98rem;
    line-height: 1.15;
}

.calendar-card-value {
    display: block;
    color: #6b4515;
    font-size: 0.92rem;
    line-height: 1.45;
    word-break: break-word;
}

.calendar-card-title-value {
    color: #7a4a09;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.15;
}

.calendar-card.is-focus .calendar-card-title-value,
.calendar-card.is-featured .calendar-card-title-value {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    line-height: 1.08;
}

.calendar-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 8px;
}

.calendar-card-flag {
    width: 92px;
    height: 56px;
    margin: 0;
}

.calendar-card:not(.is-focus):not(.is-featured) .calendar-card-row {
    display: none;
}

.calendar-card:not(.is-focus):not(.is-featured) .calendar-card-row:nth-child(2) {
    display: flex;
}

.calendar-card:not(.is-focus):not(.is-featured) .calendar-card-title-value {
    font-size: 1rem;
}

.calendar-card:not(.is-focus):not(.is-featured) .calendar-card-footer {
    display: none;
}

.calendar-card:not(.is-focus) .calendar-card-body h2 {
    font-size: 1rem;
    line-height: 1.15;
}

.calendar-card:not(.is-focus) .calendar-card-status {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.calendar-card.is-archive:not(.is-focus) {
    opacity: 0.9;
}

.calendar-card.is-focus:hover {
    box-shadow: 0 24px 44px rgba(42, 27, 5, 0.18);
}

/* Calendar cards: cleaner testimonial-style presentation while keeping the gold/brown brand palette. */
.calendar-card {
    position: relative;
    width: calc((100% - 32px) / 3);
    min-width: calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
    min-height: 330px;
    padding: 26px 28px 22px;
    border: 1px solid rgba(174, 133, 67, 0.22);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(71, 49, 20, 0.96), rgba(47, 31, 12, 0.98));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    gap: 16px;
}

.calendar-card::after {
    content: "\201D";
    position: absolute;
    top: 22px;
    right: 22px;
    color: rgba(220, 184, 120, 0.32);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.calendar-card.is-featured,
.calendar-card.is-focus,
.calendar-card.calendar-card-status-current.is-focus,
.calendar-card.calendar-card-status-latest.is-focus {
    width: calc((100% - 32px) / 3);
    min-width: calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
    min-height: 330px;
    padding: 26px 28px 22px;
    border-color: rgba(205, 162, 94, 0.24);
    background: linear-gradient(180deg, rgba(252, 248, 240, 0.99), rgba(242, 232, 213, 0.98));
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.calendar-card.is-archive,
.calendar-card.calendar-card-status-upcoming,
.calendar-card.calendar-card-status-recent {
    background: linear-gradient(180deg, rgba(77, 53, 22, 0.95), rgba(53, 35, 14, 0.98));
    border-color: rgba(169, 127, 63, 0.2);
}

.calendar-card-status {
    color: #d0aa6a;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}

.calendar-card.is-focus .calendar-card-status,
.calendar-card.is-featured .calendar-card-status {
    color: #9a6721;
}

.calendar-card-value {
    color: rgba(243, 232, 213, 0.88);
    font-size: 0.98rem;
    line-height: 1.58;
}

.calendar-card-title-value {
    max-width: 86%;
    color: #f6e8c8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.16;
}

.calendar-card.is-focus .calendar-card-value,
.calendar-card.is-featured .calendar-card-value {
    color: #71512a;
}

.calendar-card.is-focus .calendar-card-title-value,
.calendar-card.is-featured .calendar-card-title-value {
    color: #6f470f;
    max-width: 82%;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.08;
}

.calendar-card-row {
    gap: 6px;
}

.calendar-card-footer {
    padding-top: 10px;
}

.calendar-card-flag {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 248, 237, 0.08);
    padding: 10px;
    overflow: hidden;
}

.calendar-card.is-focus .calendar-card-flag,
.calendar-card.is-featured .calendar-card-flag {
    width: 88px;
    height: 88px;
    background: rgba(188, 145, 72, 0.14);
}

.calendar-card-flag img {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
}

.calendar-card:not(.is-focus):not(.is-featured) .calendar-card-row {
    display: flex;
}

.calendar-card:not(.is-focus):not(.is-featured) .calendar-card-row:nth-child(n+4) {
    display: none;
}

.calendar-card:not(.is-focus):not(.is-featured) .calendar-card-footer {
    display: flex;
}

.calendar-card:not(.is-focus):not(.is-featured) .calendar-card-title-value {
    font-size: 0.98rem;
}

@media (max-width: 1100px) {
    .calendar-card,
    .calendar-card.is-featured,
    .calendar-card.is-focus,
    .calendar-card.calendar-card-status-current.is-focus,
    .calendar-card.calendar-card-status-latest.is-focus {
        width: calc((100% - 16px) / 2);
        min-width: calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 900px) {
    .calendar-rail-arrow {
        width: 24px;
        height: 24px;
    }

    .calendar-rail-arrow-icon {
        width: 21px;
        height: 21px;
    }
}

@media (max-width: 640px) {
    .calendar-cards-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .calendar-rail-note {
        text-align: left;
    }

    .calendar-rail-shell {
        width: 100%;
        padding: 0;
    }

    .calendar-card-rail {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .calendar-card,
    .calendar-card.is-featured,
    .calendar-card.is-focus,
    .calendar-card.calendar-card-status-current.is-focus,
    .calendar-card.calendar-card-status-latest.is-focus {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .calendar-rail-controls {
        gap: 14px;
    }

    .calendar-rail-dots {
        gap: 8px;
    }

    .calendar-rail-dot {
        width: 9px;
        height: 9px;
    }

    .calendar-rail-arrow:hover:not(:disabled) {
        transform: scale(1.04);
    }
}

/* Reference-style calendar cards: wider, softer, and cleaner. */
.calendar-rail-shell {
    max-width: 1100px;
}

.calendar-card-rail {
    gap: 20px;
    padding: 18px calc((100% - 353px) / 2) 8px;
}

.calendar-card {
    --calendar-scale: 1;
    --calendar-opacity: 1;
    --calendar-lift: 0px;
    width: 353px;
    min-width: 353px;
    max-width: 353px;
    min-height: 320px;
    padding: 24px 24px 22px;
    border: 1px solid rgba(190, 161, 116, 0.22);
    background: linear-gradient(180deg, rgba(207, 183, 145, 0.98), rgba(188, 159, 117, 0.98));
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    transform: none;
    opacity: 1;
    gap: 14px;
}

.calendar-card.is-focus,
.calendar-card.is-featured,
.calendar-card.calendar-card-status-current,
.calendar-card.calendar-card-status-latest {
    width: 353px;
    min-width: 353px;
    max-width: 353px;
    min-height: 320px;
    padding: 24px 24px 22px;
    background: linear-gradient(180deg, rgba(252, 249, 244, 0.99), rgba(245, 238, 227, 0.98));
    border-color: rgba(190, 161, 116, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.calendar-card.is-archive,
.calendar-card.calendar-card-status-upcoming,
.calendar-card.calendar-card-status-recent {
    background: linear-gradient(180deg, rgba(217, 196, 163, 0.98), rgba(196, 169, 129, 0.98));
}

.calendar-card:hover,
.calendar-card.is-focus:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    transform: none;
}

.calendar-card-head {
    position: relative;
    display: flex;
    align-items: start;
    gap: 16px;
    padding-right: 42px;
}

.calendar-card-intro {
    display: grid;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 4px;
}

.calendar-card-quote-mark {
    position: absolute;
    top: -2px;
    right: 0;
    color: rgba(167, 122, 51, 0.28);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 0.8;
    pointer-events: none;
}

.calendar-card-flag {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: transparent;
    border: 0;
    padding: 0;
    overflow: hidden;
    flex: 0 0 64px;
}

.calendar-card.is-focus .calendar-card-flag,
.calendar-card.is-featured .calendar-card-flag,
.calendar-card.calendar-card-status-current .calendar-card-flag,
.calendar-card.calendar-card-status-latest .calendar-card-flag,
.calendar-card.calendar-card-status-upcoming .calendar-card-flag,
.calendar-card.calendar-card-status-recent .calendar-card-flag,
.calendar-card.is-archive .calendar-card-flag {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
}

.calendar-card-date-text {
    display: block;
    color: #af8345;
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: 600;
    word-break: break-word;
}

.calendar-card.is-focus .calendar-card-date-text,
.calendar-card.is-featured .calendar-card-date-text,
.calendar-card.calendar-card-status-current .calendar-card-date-text,
.calendar-card.calendar-card-status-latest .calendar-card-date-text {
    color: #b1813e;
}

.calendar-card-title-value {
    max-width: 100%;
    color: #4c3922;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
}

.calendar-card.is-focus .calendar-card-title-value,
.calendar-card.is-featured .calendar-card-title-value,
.calendar-card.calendar-card-status-current .calendar-card-title-value,
.calendar-card.calendar-card-status-latest .calendar-card-title-value {
    color: #5e4a2d;
    font-size: 1.1rem;
}

.calendar-card-status {
    margin: 0;
    color: #8e6323;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.calendar-card.is-focus .calendar-card-status,
.calendar-card.is-featured .calendar-card-status,
.calendar-card.calendar-card-status-current .calendar-card-status,
.calendar-card.calendar-card-status-latest .calendar-card-status {
    color: #94682a;
}

.calendar-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 0;
    padding-right: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.calendar-card-body::-webkit-scrollbar {
    display: none;
}

.calendar-card-row {
    display: block;
    margin: 0;
}

.calendar-card-value {
    color: #5f4b30;
    font-size: 0.92rem;
    line-height: 1.5;
    word-break: break-word;
}

.calendar-card.is-focus .calendar-card-value,
.calendar-card.is-featured .calendar-card-value,
.calendar-card.calendar-card-status-current .calendar-card-value,
.calendar-card.calendar-card-status-latest .calendar-card-value {
    color: #6b5940;
}

.calendar-card-footer,
.calendar-card-country,
.calendar-card-label {
    display: none;
}

@media (max-width: 1100px) {
    .calendar-rail-shell {
        max-width: 730px;
    }

    .calendar-card-rail {
        padding-left: calc((100% - 355px) / 2);
        padding-right: calc((100% - 355px) / 2);
    }

    .calendar-card,
    .calendar-card.is-focus,
    .calendar-card.is-featured,
    .calendar-card.calendar-card-status-current,
    .calendar-card.calendar-card-status-latest {
        width: 355px;
        min-width: 355px;
        max-width: 355px;
    }

    .calendar-card-link {
        width: 355px;
        min-width: 355px;
        max-width: 355px;
    }
}

@media (max-width: 760px) {
    .calendar-rail-shell {
        max-width: 100%;
    }

    .calendar-card-rail {
        padding-left: 0;
        padding-right: 0;
    }

    .calendar-card,
    .calendar-card.is-focus,
    .calendar-card.is-featured,
    .calendar-card.calendar-card-status-current,
    .calendar-card.calendar-card-status-latest {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .calendar-card-link {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

/* Final sizing lock for the calendar carousel so every visible card stays the same box size. */
.calendar-card-link,
.calendar-card,
.calendar-card.is-focus,
.calendar-card.is-featured,
.calendar-card.calendar-card-status-current,
.calendar-card.calendar-card-status-latest,
.calendar-card.calendar-card-status-upcoming,
.calendar-card.calendar-card-status-recent,
.calendar-card.is-archive {
    box-sizing: border-box;
    width: 353px !important;
    min-width: 353px !important;
    max-width: 353px !important;
    height: 320px !important;
    min-height: 320px !important;
}

@media (max-width: 1100px) {
    .calendar-card-link,
    .calendar-card,
    .calendar-card.is-focus,
    .calendar-card.is-featured,
    .calendar-card.calendar-card-status-current,
    .calendar-card.calendar-card-status-latest,
    .calendar-card.calendar-card-status-upcoming,
    .calendar-card.calendar-card-status-recent,
    .calendar-card.is-archive {
        width: 355px !important;
        min-width: 355px !important;
        max-width: 355px !important;
    }
}

@media (max-width: 760px) {
    .calendar-card-link,
    .calendar-card,
    .calendar-card.is-focus,
    .calendar-card.is-featured,
    .calendar-card.calendar-card-status-current,
    .calendar-card.calendar-card-status-latest,
    .calendar-card.calendar-card-status-upcoming,
    .calendar-card.calendar-card-status-recent,
    .calendar-card.is-archive {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 320px !important;
    }
}

.event-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 24px;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 20px 44px rgba(42, 27, 5, 0.07);
}

.event-spotlight-copy {
    padding: 8px 6px 8px 4px;
}

.event-spotlight-kicker {
    color: var(--gold-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.event-spotlight h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.event-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 700;
}

.event-spotlight-summary {
    margin-top: 18px;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 640px;
    font-family: var(--content-font);
}

.event-spotlight-actions {
    margin-top: 20px;
}

.event-spotlight-visual {
    position: relative;
    min-height: 440px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(240, 122, 33, 0.14);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 240, 0.96) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.event-spotlight-backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.12;
    transform: scale(1.05);
}

.event-spotlight-visual img {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.92);
    padding: 10px;
    box-shadow: 0 18px 36px rgba(42, 27, 5, 0.12);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.event-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1.1fr);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(42, 27, 5, 0.05);
}

.event-card-thumb img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.event-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-card-date {
    color: var(--gold-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
}

.event-card-location {
    color: var(--text-soft);
    font-weight: 700;
}

.event-card-summary {
    color: var(--text-soft);
    line-height: 1.65;
    font-family: var(--content-font);
}

.newsletter-shell {
    display: grid;
    gap: 28px;
}

.newsletter-hero {
    text-align: left;
}

.newsletter-section-label {
    margin-bottom: 16px;
    color: var(--gold-deep);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.newsletter-feature {
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.newsletter-feature-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newsletter-feature-date {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.96rem;
    font-weight: 700;
    text-align: center;
}

.newsletter-feature-image,
.newsletter-card-image {
    display: block;
    overflow: hidden;
}

.newsletter-feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.newsletter-feature-image img {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

.newsletter-feature-copy h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.12;
}

.newsletter-feature-copy p {
    margin-top: 18px;
    color: var(--text-soft);
    line-height: 1.72;
    font-family: var(--content-font);
    font-size: 1.02rem;
}

.newsletter-feature-meta {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-muted);
}

.newsletter-archive {
    border-top: 1px solid var(--border);
    padding-top: 22px;
    text-align: center;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    width: min(100%, 1600px);
    margin: 0 auto;
    align-items: start;
    justify-items: center;
}

.newsletter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: min(100%, 260px);
}

.newsletter-card-date {
    margin: 0;
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 800;
    text-align: center;
}

.newsletter-card-image img {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1.18;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

.newsletter-grid > .newsletter-card:only-child {
    grid-column: 3;
}

.newsletter-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-card-body h3 {
    font-size: 1.6rem;
    line-height: 1.22;
}

.newsletter-card-body p {
    color: var(--text-soft);
    line-height: 1.72;
    font-family: var(--content-font);
}

.newsletter-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.newsletter-card-footer a {
    color: var(--gold-deep);
}

@media (max-width: 1280px) {
    .newsletter-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .newsletter-grid > .newsletter-card:only-child {
        grid-column: 2 / span 2;
    }
}

.about-audience-panel,
.about-promise-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: clamp(22px, 3vw, 32px);
    margin-top: 12px;
    box-shadow: 0 16px 28px rgba(42, 27, 5, 0.05);
}

.about-audience-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-audience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-audience-list span {
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 14px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
}

.about-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.about-pillars span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(240, 122, 33, 0.12);
    color: var(--gold-deep);
    font-size: 0.88rem;
    font-weight: 700;
}

.about-closing {
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.about-promise-intro {
    color: var(--text-soft);
    margin-bottom: 16px;
}

.empty-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.empty-panel h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.empty-panel p {
    margin-bottom: 14px;
}

.article-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.05);
}

.share-rail {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0;
}

.share-rail-title {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
}

.share-btn {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(18, 20, 23, 0.12);
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Article page social icon color for Facebook profile link. */
.share-facebook {
    background: #1877f2;
}

.share-x {
    background: #6aa9e9;
}

/* Article page social icon color for LinkedIn profile link. */
.share-linkedin {
    background: #0a66c2;
}

/* Article page social icon color for WhatsApp profile link. */
.share-whatsapp {
    background: #25d366;
}

.share-email,
.share-link {
    background: #0f0f10;
}

/* Article page social icon color for Instagram profile link. */
.share-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 52%, #fcb045 100%);
}

.share-link.is-copied {
    background: var(--gold);
    color: #130f08;
}

.article-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-ad-card,
.article-sidebar-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 16px;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.05);
}

.article-sidebar-widget,
.article-sidebar-widget .article-tab,
.article-sidebar-widget .article-side-meta,
.article-sidebar-widget .article-side-copy h3 {
    font-family: var(--reading-font);
}

.article-sidebar-kicker {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
}

.article-ad-card img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.article-sidebar-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.article-tab {
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font: inherit;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px 4px;
}

.article-tab.is-active {
    color: var(--gold-deep);
    border-bottom: 2px solid var(--gold);
}

.article-tab-panel {
    display: none;
}

.article-tab-panel.is-active {
    display: block;
}

.article-side-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
}

.article-side-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.article-side-thumb img {
    width: 100%;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.article-side-meta {
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.article-side-copy h3 {
    font-family: var(--reading-font);
    font-size: 1rem;
    line-height: 1.35;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.breadcrumbs a:hover {
    color: var(--gold-deep);
}

.article-title {
    margin-top: 12px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.16;
}

.article-meta {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.article-meta a:hover,
.panel-main-meta a:hover {
    color: var(--gold-deep);
}

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-meta-item svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    opacity: 0.8;
}

.article-meta-sep {
    color: var(--text-muted);
    opacity: 0.8;
}

.article-hashtags {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.article-hashtag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(240, 122, 33, 0.12);
    color: var(--gold-deep);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.article-hashtag:hover,
.article-hashtag:focus-visible {
    background: rgba(240, 122, 33, 0.22);
    color: var(--text-strong);
}

.article-cover {
    display: block;
    width: 100%;
    max-height: none;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin: 18px 0;
}

.article-content {
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 1rem;
    font-family: var(--reading-font);
}

.article-content p,
.rich-copy p {
    font-family: var(--reading-font);
    margin: 0;
}

.article-content blockquote,
.rich-copy blockquote {
    margin: 1.4rem 0;
    padding: 22px 24px;
    border-left: 4px solid var(--gold);
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.99) 0%,
        rgba(18, 18, 18, 0.98) 38%,
        rgba(54, 54, 54, 0.74) 72%,
        rgba(255, 255, 255, 0.1) 100%
    );
    color: #f4ead0;
    font-size: 1.18rem;
    line-height: 1.7;
    font-weight: 600;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.article-content blockquote p:last-child,
.rich-copy blockquote p:last-child {
    margin-bottom: 0;
}

.article-content img,
.rich-copy img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1rem auto;
    border-radius: 12px;
}

.article-content img:not([src]),
.article-content img[src=""],
.related-section img:not([src]),
.related-section img[src=""],
.article-sidebar img:not([src]),
.article-sidebar img[src=""] {
    display: none !important;
}

.article-content h2,
.article-content h3,
.rich-copy h2,
.rich-copy h3 {
    margin: 1.4rem 0 0.8rem;
}

.article-content ul,
.article-content ol,
.rich-copy ul,
.rich-copy ol {
    padding-left: 1.4rem;
    margin: 0 0 1rem;
}

.article-quote {
    margin: 22px 0 10px;
    padding: 22px 24px;
    border-left: 4px solid var(--gold);
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.99) 0%,
        rgba(18, 18, 18, 0.98) 38%,
        rgba(54, 54, 54, 0.74) 72%,
        rgba(255, 255, 255, 0.1) 100%
    );
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.article-quote blockquote {
    margin: 0;
    color: #f4ead0;
    font-size: 1.18rem;
    line-height: 1.7;
    font-weight: 600;
}

.article-quote-attribution {
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-media-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.article-primary-video-section {
    margin-top: 22px;
}

.article-inline-video {
    margin-top: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.article-inline-video video {
    width: 100%;
    display: block;
    max-height: 520px;
    background: #000;
}

.article-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 14px;
}

.article-media-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
}

.article-media-card img,
.article-media-card video {
    width: 100%;
    display: block;
    max-height: 360px;
    object-fit: cover;
    background: #000;
}

.article-instagram-wrap {
    width: min(100%, 612px);
    margin: 18px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.article-instagram-wrap .instagram-media {
    min-width: min(540px, 100%) !important;
    width: min(540px, 100%) !important;
    margin: 0 !important;
}

.article-instagram-iframe {
    display: block;
    width: 100%;
    border: 1px solid #dbdbdb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.article-instagram-iframe-post {
    min-height: clamp(780px, 132vw, 940px);
}

.article-instagram-iframe-reel {
    min-height: clamp(920px, 164vw, 1120px);
}

.article-instagram-fallback {
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 640px) {
    .article-instagram-wrap {
        width: 100%;
        margin-top: 16px;
    }

    .article-instagram-iframe-post {
        min-height: clamp(720px, 186vw, 900px);
    }

    .article-instagram-iframe-reel {
        min-height: clamp(820px, 210vw, 1080px);
    }
}

.tech-expert-signature {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 0;
}

.tech-expert-signature-inline {
    margin-top: 28px;
    margin-bottom: 28px;
    padding-top: 0;
    border-top: 0;
}

.tech-expert-signature-inline .tech-expert-signature-title {
    text-align: left;
}

.tech-expert-signature-title {
    margin: 0 0 12px;
    text-align: center;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tech-expert-signature-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    background: #050505;
    color: #fff;
}

.tech-expert-signature-avatar img,
.tech-expert-signature-fallback {
    width: 96px;
    height: 150px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, #f07a21, #111);
}

.tech-expert-signature-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.tech-expert-signature-copy h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.tech-expert-signature-subtitle {
    margin: 0 0 10px;
    color: #f7f3eb;
    font-size: 1.08rem;
    font-weight: 700;
}

.tech-expert-signature-description {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
}

.tech-expert-signature-description-secondary {
    color: rgba(255, 255, 255, 0.78);
}

.tech-expert-signature-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.tech-expert-signature-contact a {
    color: #fff;
    font-weight: 700;
}

.tech-expert-signature-disclaimer {
    margin: 10px 0 0;
    padding: 4px 6px;
    border: 1px solid #8e8e8e;
    background: #ffffff;
    color: #202124;
    font-size: 0.7rem;
    line-height: 1.35;
}

.tech-expert-signature-disclaimer-label {
    color: #c62828;
    text-decoration: underline;
    font-weight: 500;
}

.related-section {
    margin-top: 20px;
    border-top: 0 !important;
}

.related-section .section-head {
    padding-top: 0;
    border-top: 0 !important;
}

.related-section .section-head::before,
.related-section .section-head::after,
.tech-expert-signature::before,
.tech-expert-signature::after {
    content: none !important;
    display: none !important;
}

.author-page {
    display: grid;
    gap: 20px;
}

.author-hero-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    background: var(--page-hero-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    display: grid;
    overflow: hidden;
    place-items: center;
    background: linear-gradient(135deg, rgba(169, 202, 236, 0.92) 0%, rgba(116, 162, 210, 0.92) 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-hero-copy h1 {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.author-role {
    margin-top: 6px;
    color: var(--gold-deep);
    font-size: 1.05rem;
    font-weight: 700;
}

.author-highlight {
    color: #d61f1f;
}

.author-post-list {
    display: grid;
    gap: 16px;
    margin-top: 14px;
}

.author-post-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

.author-post-thumb img,
.author-post-fallback {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
}

.author-post-fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f7e8c1 0%, #fff 100%);
    color: var(--text);
    font-weight: 700;
}

.author-post-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.author-post-body h3 {
    font-size: 1.45rem;
    line-height: 1.3;
}

.author-post-meta {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.intelligence-shell {
    padding: 34px 0 56px;
}

.intelligence-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) auto;
    gap: 18px;
    align-items: end;
    background: var(--page-hero-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 20px;
}

.intelligence-hero h1 {
    margin-top: 8px;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.08;
}

.intelligence-hero-copy {
    margin-top: 12px;
    max-width: 760px;
    color: var(--text-soft);
    line-height: 1.7;
}

.intelligence-hero-badge {
    min-width: 180px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
}

.intelligence-hero-badge span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.intelligence-hero-badge strong {
    display: block;
    margin-top: 6px;
    font-size: 1rem;
}

.intelligence-board {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 16px 32px rgba(42, 27, 5, 0.08);
}

.intel-toolbar,
.intel-live-strip,
.intel-tabs {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-alt);
}

.intel-toolbar {
    padding: 12px 14px;
}

.intel-toolbar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.intel-live-strip {
    margin-top: 12px;
    padding: 10px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.intel-tabs {
    margin-top: 12px;
    padding: 12px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.intel-tabs .active {
    color: var(--text);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
}

.intel-top-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
    gap: 14px;
}

.intel-stat-stack {
    display: grid;
    gap: 12px;
}

.intel-stat-card,
.intel-chart-card,
.intel-performance-card,
.intel-story-card,
.intel-stock-card {
    background: linear-gradient(180deg, rgba(255, 251, 244, 0.98) 0%, rgba(245, 238, 226, 0.96) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
}

.intel-stat-card p,
.intel-chart-head p,
.intel-performance-item p {
    color: var(--text-muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.intel-stat-card h3,
.intel-chart-head h3 {
    margin-top: 6px;
    font-size: 1.35rem;
}

.intel-trend {
    font-size: 0.86rem;
    font-weight: 700;
}

.intel-chart-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.intel-chart {
    width: 100%;
    height: 190px;
    margin-top: 10px;
}

.intel-chart-grid line {
    stroke: rgba(42, 27, 5, 0.09);
    stroke-width: 1;
}

.intel-chart polyline {
    fill: none;
    stroke: var(--gold);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.intel-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 12px;
}

.intel-card-head h2 {
    font-size: 1.3rem;
}

.intel-card-head span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.intel-performance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.intel-performance-item {
    border: 1px solid rgba(240, 122, 33, 0.14);
    border-radius: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.42);
}

.intel-performance-item strong {
    display: block;
    margin: 6px 0 4px;
    font-size: 1rem;
}

.intel-story-card,
.intel-stock-card {
    margin-top: 14px;
}

.intel-story-list {
    display: grid;
    gap: 12px;
}

.intel-story-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(240, 122, 33, 0.14);
}

.intel-story-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.intel-story-copy h3 {
    font-size: 1.15rem;
    line-height: 1.35;
}

.intel-story-copy p {
    margin-top: 8px;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.92rem;
}

.intel-story-thumb img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
}

.intel-stock-table {
    display: grid;
    gap: 10px;
}

.intel-stock-row {
    display: grid;
    grid-template-columns: 1.8fr 1fr 0.8fr 0.9fr 0.7fr;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(240, 122, 33, 0.14);
    font-size: 0.92rem;
}

.intel-stock-name {
    font-weight: 700;
}

.magazine-archive-page {
    padding: 34px 0 64px;
}

.magazine-archive-head {
    max-width: 760px;
}

.magazine-archive-head h1 {
    margin-top: 8px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.magazine-archive-copy {
    margin-top: 12px;
    color: var(--text-soft);
    line-height: 1.7;
}

.magazine-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 18px;
    align-items: start;
}

.magazine-archive-feature {
    grid-column: 4;
    grid-row: 1 / span 2;
}

.magazine-archive-item,
.magazine-archive-feature {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.magazine-archive-date {
    color: #5d6672;
    font-size: 1rem;
    font-weight: 700;
}

.magazine-archive-cover {
    display: block;
    background: #fff;
}

.magazine-archive-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 0.72;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(30, 20, 7, 0.08);
}

.magazine-archive-fallback {
    aspect-ratio: 0.72;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f7e8c1 0%, #fff 100%);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 700;
}

.reader-shell {
    margin-top: 18px;
}

.flip-reader {
    margin-top: 18px;
}

.flip-reader-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.flip-reader-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.flip-reader-stage {
    display: grid;
    grid-template-columns: 64px 1fr 64px;
    gap: 18px;
    align-items: center;
}

.flip-arrow {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(240, 122, 33, 0.12);
    color: var(--gold-deep);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
}

.flip-arrow:hover {
    background: rgba(240, 122, 33, 0.22);
}

.flip-book-shell {
    background: var(--reader-shell-bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 20px 42px rgba(18, 20, 23, 0.08);
}

.flip-status {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.book-reader-wrap {
    position: relative;
    perspective: 2200px;
    transform-style: preserve-3d;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0 minmax(0, 1fr);
    min-height: 720px;
    align-items: stretch;
}

.book-page {
    background: #fff;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    backface-visibility: hidden;
}

.book-canvas {
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
}

.book-gutter {
    width: 0;
    margin: 0 auto;
    background: transparent;
}

.book-flip-sheet {
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(50% - 1px);
    display: none;
    pointer-events: none;
    transform-style: preserve-3d;
    z-index: 3;
}

.book-flip-sheet.is-active {
    display: block;
}

.book-flip-sheet.is-flipping-next {
    right: 0;
    transform-origin: left center;
    animation: pageTurnNext 0.62s cubic-bezier(0.33, 0.02, 0.18, 1) forwards;
}

.book-flip-sheet.is-flipping-prev {
    left: 0;
    transform-origin: right center;
    animation: pageTurnPrev 0.62s cubic-bezier(0.33, 0.02, 0.18, 1) forwards;
}

.book-canvas-flip {
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.book-flip-shadow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 16, 4, 0.24) 0%, rgba(26, 16, 4, 0.08) 18%, rgba(255, 255, 255, 0) 70%);
    mix-blend-mode: multiply;
}

@keyframes pageTurnNext {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: rotateY(-166deg);
        opacity: 0.15;
    }
}

@keyframes pageTurnPrev {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: rotateY(166deg);
        opacity: 0.15;
    }
}

.flip-toolbar {
    width: fit-content;
    max-width: 100%;
    margin: 18px auto 0;
    background: var(--reader-toolbar-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.flip-form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.reader-label {
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 600;
}

.reader-input,
.reader-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 10px;
    background: var(--reader-control-bg);
    color: var(--text);
    font: inherit;
}

.reader-input {
    width: 88px;
}

.reader-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--reader-control-bg);
    font-size: 0.9rem;
    font-weight: 700;
}

.reader-tool-primary {
    background: var(--gold);
    border-color: var(--gold);
}

.flip-reader-note {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

@media (max-width: 760px) {
    .flip-reader-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .flip-reader-stage {
        grid-template-columns: 1fr;
    }

    .flip-arrow {
        display: none;
    }

    .flip-book-shell {
        padding: 14px;
        border-radius: 16px;
    }

    .book-reader-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .book-flip-sheet {
        display: none !important;
    }

    .book-gutter,
    .book-page-right {
        display: none;
    }

    .article-media-grid {
        grid-template-columns: 1fr;
    }

    .page-hero.page-hero-tech-radar {
        padding: 16px 14px;
    }

    .page-hero-tech-radar .page-hero-banner {
        margin-bottom: 14px;
    }

    .page-hero-tech-radar .page-hero-banner img {
        min-height: 0;
        max-height: none;
        height: auto;
        object-fit: contain;
        background: #ffffff;
    }

    .page-hero-tech-radar .muted {
        max-width: none;
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .post-card,
    .daily-news-item,
    .event-card,
    .exclusive-item {
        grid-template-columns: 1fr !important;
    }

    .post-card img,
    .post-card-image-link img,
    .daily-news-thumb img,
    .event-card-thumb img,
    .exclusive-thumb img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: 240px;
        object-fit: cover;
        display: block;
    }

    .post-card .body,
    .daily-news-copy,
    .event-card-body,
    .exclusive-copy {
        min-width: 0;
    }

    .article-panel {
        padding: 18px 16px;
    }

    .article-cover {
        max-height: none;
    }

    .tech-expert-signature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tech-expert-signature-avatar {
        justify-self: center;
    }

    .tech-expert-signature-contact {
        justify-content: center;
    }

    .author-post-card {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .author-post-thumb {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .author-post-thumb img,
    .author-post-fallback {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: 220px;
        display: block;
    }

    .author-post-body,
    .author-post-body h3,
    .author-post-body .muted,
    .author-post-meta {
        width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .author-post-body h3 {
        font-size: 1.2rem;
        line-height: 1.28;
    }
}

@media (max-width: 560px) {
    .market-inner {
        gap: 6px;
        padding: 6px 0 8px;
    }

    .live-pill {
        padding: 6px 9px;
        font-size: 0.69rem;
        letter-spacing: 0.05em;
    }

    .market-rate-list {
        padding-right: 10px;
    }

    .market-rate-chip {
        gap: 4px;
        padding: 6px 8px;
        font-size: 0.8rem;
    }

    .market-rate-chip strong {
        font-size: 0.84rem;
    }

    .chatbot-shell {
        right: 10px;
        bottom: 10px;
    }

    .chatbot-toggle.whatsapp-chat-link {
        max-width: min(190px, calc(100vw - 20px));
        padding: 10px 12px;
    }

    .whatsapp-chat-link-label {
        font-size: 0.85rem;
    }
}
