:root {
  --prisma-primary: #111111;
  --prisma-accent: #ffb000;
  --prisma-bg: #ffffff;
  --prisma-text: #111111;
  --prisma-muted: #69707c;
  --prisma-surface: #f3f4f6;
  --prisma-border: #dfe2e7;
  --prisma-radius: 16px;
  --prisma-shadow: 0 16px 50px rgba(17, 17, 17, 0.12);
  --prisma-body-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --prisma-heading-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --prisma-shell: 1280px;
  --prisma-wide: 1440px;
  --header-height: 98px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--prisma-bg);
  color: var(--prisma-text);
  font-family: var(--prisma-body-font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.search-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: #765100; text-decoration: none; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
a:hover, a:focus { color: #4f3600; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--prisma-accent); outline-offset: 3px; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .75em; font-family: var(--prisma-heading-font); line-height: 1.08; letter-spacing: -.025em; overflow-wrap: normal; word-break: normal; -webkit-hyphens: none; hyphens: none; }
p { margin: 0 0 1.25em; }

.site-shell { width: min(calc(100% - 48px), var(--prisma-shell)); margin-inline: auto; }
.wide-shell { width: min(calc(100% - 48px), var(--prisma-wide)); }
.narrow-shell { max-width: 900px; }
.site-main { min-height: 0; }
.front-page-main { overflow: hidden; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  top: 10px; left: 10px; z-index: 100000;
  width: auto; height: auto; clip: auto;
  padding: 12px 18px; margin: 0;
  background: #fff; color: #111; border-radius: 8px;
}

/* Header */
.site-header { position: relative; z-index: 1000; }
.prisma-sticky-header .site-header { position: sticky; top: 0; }
.admin-bar.prisma-sticky-header .site-header { top: 32px; }
.header-main { background: var(--prisma-primary); color: #fff; box-shadow: 0 5px 20px rgba(0,0,0,.22); }
.header-inner { min-height: var(--header-height); display: grid; grid-template-columns: minmax(260px, 390px) minmax(0, 1fr) auto; align-items: center; gap: 24px; }
.brand-group { min-width: 0; }
.site-logo { display: inline-flex; align-items: center; color: #fff; }
.site-logo img { width: auto; max-width: 360px; height: 88px; object-fit: contain; object-position: left center; }
.logo-mobile { display: none; }
.icon-button { display: inline-grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: inherit; }
.icon-button:hover { background: rgba(255,255,255,.12); }
.menu-toggle { display: none; }
.primary-navigation { min-width: 0; }
.primary-menu, .menu-fallback, .topics-menu, .footer-menu, .drawer-menu { list-style: none; margin: 0; padding: 0; }
.primary-menu, .primary-navigation > .menu-fallback { display: flex; align-items: center; justify-content: flex-start; gap: clamp(14px, 2vw, 30px); }
.primary-menu > li, .primary-navigation > .menu-fallback > li { position: relative; }
.primary-menu > li > a, .primary-navigation > .menu-fallback > li > a { display: block; color: #fff; font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding-block: 30px; white-space: nowrap; }
.primary-menu > li > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 3px; background: var(--prisma-accent); transition: right .2s ease; }
.primary-menu > li:hover > a::after, .primary-menu > li.current-menu-item > a::after { right: 0; }
.primary-menu .sub-menu { display: none; position: absolute; top: calc(100% - 14px); left: 0; min-width: 230px; list-style: none; margin: 0; padding: 10px; background: #fff; border-radius: 12px; box-shadow: var(--prisma-shadow); }
.primary-menu li:hover > .sub-menu, .primary-menu li:focus-within > .sub-menu { display: block; }
.primary-menu .sub-menu a { display: block; padding: 10px 12px; border-radius: 8px; color: #111; font-weight: 700; }
.primary-menu .sub-menu a:hover { background: var(--prisma-surface); }
.header-actions { display: flex; justify-content: flex-end; }
.topics-bar { background: #fff; border-bottom: 1px solid var(--prisma-border); }
.topics-inner { min-height: 42px; display: flex; align-items: center; gap: 18px; overflow-x: auto; scrollbar-width: none; }
.topics-inner::-webkit-scrollbar { display: none; }
.topics-label { flex: 0 0 auto; padding: 4px 9px; border-radius: 999px; background: var(--prisma-accent); color: #111; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.topics-menu { display: flex; gap: 22px; white-space: nowrap; }
.topics-menu a { color: #333; font-size: .82rem; font-weight: 750; }

/* Drawer and search */
.mobile-drawer, .search-panel { position: fixed; inset: 0; z-index: 5000; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.mobile-drawer[aria-hidden="false"], .search-panel[aria-hidden="false"] { visibility: visible; opacity: 1; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); }
.drawer-panel { position: absolute; top: 0; bottom: 0; left: 0; width: min(92vw, 420px); padding: 22px; overflow-y: auto; background: #111; color: #fff; transform: translateX(-102%); transition: transform .25s ease; }
.mobile-drawer[aria-hidden="false"] .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.drawer-logo img { height: 58px; max-width: 225px; }
.drawer-menu > li { border-bottom: 1px solid rgba(255,255,255,.13); }
.drawer-menu a { display: block; color: #fff; padding: 14px 4px; font-weight: 800; }
.drawer-menu .sub-menu { list-style: none; margin: -4px 0 10px; padding-left: 18px; }
.drawer-menu .sub-menu a { padding: 8px 4px; font-size: .9rem; color: #d8d8d8; }
.drawer-panel .search-form { margin-bottom: 20px; }
.drawer-panel .social-links { margin-top: 24px; }
.search-panel { display: grid; place-items: start center; padding-top: 10vh; background: rgba(0,0,0,.92); color: #fff; }
.search-panel-inner { position: relative; max-width: 850px; padding: 64px 0 30px; }
.search-close { position: absolute; top: 0; right: 0; }
.search-panel-title { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.search-form { display: flex; gap: 10px; }
.search-field { width: 100%; min-width: 0; height: 54px; padding: 0 18px; border: 1px solid #cfd3da; border-radius: 10px; background: #fff; color: #111; }
.search-submit, .button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--prisma-accent); color: #111; font-weight: 900; text-decoration: none; white-space: nowrap; }
.search-submit:hover, .button:hover { color: #111; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* Advertising */
.ad-slot { width: min(calc(100% - 48px), var(--prisma-shell)); min-height: 100px; margin: 24px auto; padding: 10px; border: 1px dashed #c5c9d0; border-radius: 12px; text-align: center; background: #fafafa; overflow: hidden; }
.ad-label { display: block; margin-bottom: 6px; color: #7b818c; font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; }
.ad-content { display: grid; place-items: center; min-height: 70px; }
.ad-content > * { max-width: 100%; }
.ad-slot-inline { width: 100%; margin: 36px 0; }
.ad-slot-sidebar { width: 100%; min-height: 250px; margin: 28px 0; }

/* Hero */
.hero-section { padding-top: 24px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(390px, 1fr); gap: 16px; }
.hero-secondary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.hero-card { position: relative; min-height: 0; margin: 0; overflow: hidden; border-radius: var(--prisma-radius); background: #111; box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.hero-card-large { height: 580px; }
.hero-card-small { min-height: 282px; }
.hero-card-link { position: absolute; inset: 0; color: #fff; }
.hero-card-link:hover { color: #fff; }
.hero-card-media, .hero-card-media img { width: 100%; height: 100%; }
.hero-card-media img { object-fit: cover; transition: transform .45s ease; }
.hero-card:hover .hero-card-media img { transform: scale(1.035); }
.hero-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04) 20%, rgba(0,0,0,.82) 100%); }
.hero-card-content { position: absolute; inset: auto 0 0; padding: clamp(20px, 4vw, 44px); }
.hero-card-small .hero-card-content { padding: 20px; }
.hero-card h2 { max-width: 790px; margin: 8px 0 12px; color: #fff; font-size: clamp(1.5rem, 2.35vw, 2.7rem); line-height: 1.1; overflow-wrap: normal; word-break: normal; -webkit-hyphens: none; hyphens: none; text-wrap: wrap; }
.hero-card-small h2 { font-size: clamp(.98rem, 1.08vw, 1.2rem); }
.eyebrow { display: inline-block; color: #855b00; font-size: .72rem; font-weight: 900; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.hero-card .eyebrow, .video-section .eyebrow, .most-read-band .eyebrow { color: var(--prisma-accent); }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--prisma-muted); font-size: .74rem; font-weight: 700; }
.hero-card .card-meta { color: rgba(255,255,255,.8); }


.home-banner { margin-top: 34px; overflow: hidden; border-radius: var(--prisma-radius); }
.home-banner a, .home-banner picture { display: block; }
.home-banner img { width: 100%; max-height: 360px; object-fit: cover; }

/* Section structure */
.home-section { padding: clamp(32px, 4vw, 58px) 0; }
.home-section + .home-section { border-top: 1px solid var(--prisma-border); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); }
.section-heading h2::before { content: ""; display: inline-block; width: 8px; height: .78em; margin-right: 12px; border-radius: 4px; background: var(--prisma-accent); }
.section-heading a { flex: 0 0 auto; color: #3c2a00; font-size: .83rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.section-heading.light h2, .section-heading.light a { color: #fff; }
.section-heading.compact h2 { font-size: 1.65rem; }
.section-heading.compact h2::before { width: 6px; }

.latest-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(28px, 5vw, 66px); align-items: start; }
.latest-list { display: grid; gap: 0; }
.content-card { position: relative; min-width: 0; }
.content-card-media, .content-card-body { min-width: 0; }
.content-card-media { position: relative; display: block; overflow: hidden; border-radius: var(--prisma-radius); background: #e7e9ed; aspect-ratio: 16 / 9; }
.content-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.content-card:hover .content-card-media img { transform: scale(1.03); }
.content-card-title { margin: 8px 0; font-size: clamp(1rem, 1.25vw, 1.25rem); line-height: 1.22; overflow-wrap: normal; word-break: normal; -webkit-hyphens: none; hyphens: none; }
.content-card-title a { color: var(--prisma-text); }
.content-card-title a:hover { color: #805800; }
.content-card-excerpt { margin: 0 0 12px; color: #555d68; font-size: .91rem; line-height: 1.5; }
.content-card-list { display: grid; grid-template-columns: minmax(190px, 34%) 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--prisma-border); }
.content-card-list:first-child { padding-top: 0; }
.content-card-list .content-card-title { font-size: clamp(1.08rem, 1.45vw, 1.5rem); }
.content-card-list .content-card-media { min-height: 170px; }
.content-card-standard .content-card-body, .content-card-video .content-card-body { padding-top: 14px; }
.content-card-video .content-card-title a { color: #fff; }
.content-card-video .card-meta { color: #aab0b8; }
.play-badge { position: absolute; left: 14px; bottom: 14px; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--prisma-accent); color: #111; box-shadow: 0 8px 25px rgba(0,0,0,.25); }
.play-badge svg { width: 26px; height: 26px; }
.card-grid { display: grid; gap: 28px 20px; }
.card-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.home-sidebar { position: sticky; top: calc(var(--header-height) + 68px); }
.sidebar-compact-block { margin-top: 36px; }
.sidebar-compact-list { display: grid; gap: 16px; }
.sidebar-compact-item { display: grid; grid-template-columns: 108px 1fr; gap: 14px; align-items: start; }
.sidebar-compact-thumb { display: block; overflow: hidden; border-radius: 12px; background: #e7e9ed; aspect-ratio: 16 / 9; }
.sidebar-compact-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-compact-title { margin: 6px 0 0; font-size: 1rem; line-height: 1.2; }
.sidebar-compact-title a { color: var(--prisma-text); }
.sidebar-compact-title a:hover { color: #805800; }
.ranked-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--prisma-border); }
.ranked-list li { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--prisma-border); }
.rank-number { color: var(--prisma-accent); font-family: var(--prisma-heading-font); font-size: 1.6rem; font-weight: 950; line-height: 1; }
.ranked-list a { display: block; color: var(--prisma-text); font-weight: 850; line-height: 1.25; }
.ranked-list small { display: block; margin-top: 7px; color: var(--prisma-muted); }
.widget { margin: 28px 0; }
.widget-title { font-size: 1.35rem; }

.video-section, .most-read-band { border-top: 0 !important; background: #151515; color: #fff; }
.horizontal-scroller { position: relative; }
.scroller-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 380px); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; padding-bottom: 20px; }
.scroller-track > * { scroll-snap-align: start; }
.scroller-controls { display: flex; justify-content: flex-end; gap: 10px; margin-top: 15px; }
.scroller-controls button { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: transparent; color: #fff; font-size: 1.2rem; }
.scroller-controls button:hover { background: #fff; color: #111; }

.rank-card-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.rank-card { display: grid; grid-template-columns: auto 1fr; gap: 14px; min-height: 170px; padding: 28px 22px; border-right: 1px solid rgba(255,255,255,.15); }
.rank-card:last-child { border-right: 0; }
.rank-card > span { color: var(--prisma-accent); font-size: 2.4rem; font-weight: 950; line-height: .9; }
.rank-card small { display: block; margin-bottom: 8px; color: #aeb4bd; font-weight: 800; text-transform: uppercase; }
.rank-card a { color: #fff; font-weight: 850; line-height: 1.25; }

.newsletter-section { border-top: 0 !important; }
.newsletter-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(34px, 5vw, 66px); border-radius: calc(var(--prisma-radius) + 8px); background: var(--prisma-accent); color: #111; box-shadow: var(--prisma-shadow); }
.newsletter-card h2 { max-width: 760px; margin: 8px 0 12px; font-size: clamp(2rem, 5vw, 4rem); }
.newsletter-card p { max-width: 650px; margin: 0; }
.newsletter-card .eyebrow { color: #111; }
.button-light { background: #111; color: #fff; }
.button-light:hover { color: #fff; }

/* Archives */
.archive-page { padding: 36px 0 90px; }
.breadcrumbs { margin: 8px 0 30px; overflow-x: auto; }
.breadcrumbs ol { display: flex; align-items: center; gap: 9px; list-style: none; margin: 0; padding: 0; white-space: nowrap; color: var(--prisma-muted); font-size: .78rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 9px; color: #b4b8bf; }
.breadcrumbs a { color: #555d68; }
.archive-header { max-width: 900px; margin: 45px 0 48px; }
.archive-header h1 { margin: 10px 0 16px; font-size: clamp(3rem, 7vw, 6.5rem); }
.archive-header p, .archive-description { color: #555d68; font-size: 1.1rem; }
.archive-search-form { max-width: 650px; margin-top: 26px; }
.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 24px; }
.pagination { margin-top: 55px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.page-numbers { display: grid; place-items: center; min-width: 44px; min-height: 44px; padding: 0 12px; border: 1px solid var(--prisma-border); border-radius: 999px; color: #222; font-weight: 800; }
.page-numbers.current, .page-numbers:hover { border-color: var(--prisma-primary); background: var(--prisma-primary); color: #fff; }
.author-header { display: flex; align-items: center; gap: 28px; margin: 42px 0 60px; padding: 34px; border-radius: var(--prisma-radius); background: var(--prisma-surface); }
.author-header img { border-radius: 50%; }
.author-header h1 { margin: 8px 0; font-size: clamp(2.2rem, 5vw, 4rem); }
.author-header p { margin: 0; color: #555d68; }

/* Article */
.single-post-main { padding: 20px 0 58px; }
.article-header-shell { max-width: 1050px; }
.article-header { margin: 12px 0 28px; }
.article-header h1 { max-width: 980px; margin: 8px 0 18px; font-size: clamp(1.75rem, 3.2vw, 3.2rem); line-height: 1.1; overflow-wrap: normal; word-break: normal; -webkit-hyphens: none; hyphens: none; text-wrap: wrap; }
.article-subtitle { max-width: 900px; color: #555d68; font-size: clamp(1.15rem, 2.4vw, 1.65rem); line-height: 1.45; }
.article-meta { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--prisma-border); color: var(--prisma-muted); font-size: .88rem; }
.article-meta-main { display: flex; align-items: center; flex-wrap: nowrap; gap: 12px; min-width: 0; }
.author-chip { display: inline-flex; flex: 1 1 0; min-width: 0; align-items: center; gap: 10px; color: var(--prisma-text); white-space: nowrap; }
.author-chip img { border-radius: 50%; }
.author-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; font-weight: 800; color: var(--prisma-text); }
.article-meta-separator { color: #9aa1aa; font-size: 1rem; line-height: 1; }
.article-published { flex: 0 0 auto; color: var(--prisma-muted); font-weight: 600; white-space: nowrap; }
.share-row { display: flex; flex-wrap: nowrap; align-items: center; gap: 10px; margin-top: 24px; }
.share-icon-button { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--prisma-border); border-radius: 50%; background: transparent; color: var(--prisma-text); }
.share-icon-button:hover, .share-icon-button:focus-visible, .copy-link-button:hover, .copy-link-button:focus-visible { border-color: var(--prisma-accent); background: var(--prisma-accent); color: #111; }
.copy-link-button { cursor: pointer; }
.copy-link-button.is-copied { border-color: var(--prisma-accent); background: var(--prisma-accent); color: #111; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.article-featured { margin-top: 25px; margin-bottom: 45px; }
.article-featured img { width: 100%; max-height: 820px; border-radius: var(--prisma-radius); object-fit: cover; }
.article-featured figcaption { margin-top: 9px; color: var(--prisma-muted); font-size: .78rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 800px) 340px; justify-content: center; gap: clamp(35px, 6vw, 80px); align-items: start; }
.article-layout-single { grid-template-columns: minmax(0, 860px); gap: 0; }
.article-sidebar { position: sticky; top: calc(var(--header-height) + 68px); }
.entry-content { font-size: clamp(1.05rem, 1.5vw, 1.18rem); line-height: 1.75; overflow-wrap: anywhere; }
.entry-content > * { max-width: 100%; }
.entry-content h2 { margin-top: 2em; font-size: clamp(1.9rem, 4vw, 3rem); }
.entry-content h3 { margin-top: 1.8em; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.entry-content a { color: #795300; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.entry-content blockquote { margin: 2em 0; padding: 20px 26px; border-left: 6px solid var(--prisma-accent); background: var(--prisma-surface); font-size: 1.25em; }
.entry-content figure { margin: 2.2em 0; }
.entry-content figcaption { margin-top: 8px; color: var(--prisma-muted); font-size: .78rem; }
.entry-content table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.entry-content th, .entry-content td { padding: 10px 12px; border: 1px solid var(--prisma-border); }
.responsive-embed { position: relative; aspect-ratio: 16 / 9; margin-bottom: 32px; overflow: hidden; border-radius: var(--prisma-radius); background: #111; }
.responsive-embed iframe { width: 100%; height: 100%; border: 0; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 38px 0; padding-top: 24px; border-top: 1px solid var(--prisma-border); }
.article-tags a { padding: 7px 11px; border-radius: 999px; background: var(--prisma-surface); color: var(--prisma-text); font-size: .78rem; font-weight: 800; }
.author-box { display: grid; grid-template-columns: 88px 1fr; gap: 22px; margin: 45px 0; padding: 28px; border-radius: var(--prisma-radius); background: var(--prisma-surface); }
.author-box img { border-radius: 50%; }
.author-box h2 { margin: 7px 0; font-size: 1.55rem; }
.author-box h2 a { color: var(--prisma-text); }
.author-box p { margin: 0; color: #555d68; }
.post-navigation-custom { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 30px 0; border-top: 1px solid var(--prisma-border); border-bottom: 1px solid var(--prisma-border); }
.post-navigation-custom > div:last-child { text-align: right; }
.post-navigation-custom small { display: block; color: var(--prisma-muted); font-size: .72rem; text-transform: uppercase; }
.post-navigation-custom a { color: var(--prisma-text); font-weight: 850; }
.related-section { padding-bottom: 50px; }
.comments-shell { max-width: 900px; }
.comments-area { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--prisma-border); }
.comment-list { list-style: none; padding: 0; }
.comment-body { margin: 20px 0; padding: 20px; border: 1px solid var(--prisma-border); border-radius: 12px; }
.comment-author { display: flex; align-items: center; gap: 10px; }
.comment-author img { border-radius: 50%; }
.comment-form label { display: block; font-weight: 800; }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; padding: 12px; border: 1px solid #cfd3da; border-radius: 8px; }
.comment-form input[type="submit"] { min-height: 48px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--prisma-accent); font-weight: 900; }

/* Dark article mode */
.prisma-article-dark .single-post-main { background: #111; color: #f7f7f7; }
.prisma-article-dark .article-header h1, .prisma-article-dark .content-card-title a, .prisma-article-dark .author-chip, .prisma-article-dark .author-name, .prisma-article-dark .share-icon-button, .prisma-article-dark .copy-link-button, .prisma-article-dark .article-tags a, .prisma-article-dark .author-box h2 a, .prisma-article-dark .post-navigation-custom a, .prisma-article-dark .ranked-list a { color: #fff; }
.prisma-article-dark .article-subtitle, .prisma-article-dark .article-meta, .prisma-article-dark .article-published, .prisma-article-dark .article-featured figcaption, .prisma-article-dark .entry-content figcaption, .prisma-article-dark .author-box p, .prisma-article-dark .ranked-list small { color: #b7bdc6; }
.prisma-article-dark .entry-content a { color: #ffd061; }
.prisma-article-dark .entry-content blockquote, .prisma-article-dark .author-box, .prisma-article-dark .article-tags a { background: #222; }
.prisma-article-dark .article-sidebar, .prisma-article-dark .article-main-column { color: #f7f7f7; }
.prisma-article-dark .article-meta, .prisma-article-dark .share-icon-button, .prisma-article-dark .copy-link-button, .prisma-article-dark .article-tags, .prisma-article-dark .post-navigation-custom, .prisma-article-dark .ranked-list, .prisma-article-dark .ranked-list li { border-color: #343434; }
.prisma-article-dark .related-section { background: #181818; border-top-color: #333; }
.prisma-article-dark .related-section .section-heading h2 { color: #fff; }

/* Pages and forms */
.standard-page, .institutional-page { padding: 38px 0 90px; }
.page-shell { max-width: 1020px; }
.page-header { max-width: 900px; margin: 42px 0; }
.page-header h1 { font-size: clamp(3rem, 7vw, 6rem); }
.page-header p { color: #555d68; font-size: 1.25rem; }
.page-featured { margin: 0 0 40px; }
.page-featured img { width: 100%; border-radius: var(--prisma-radius); }
.institutional-hero { margin-top: -38px; padding: 90px 0; background: #151515; color: #fff; }
.institutional-hero h1 { margin: 10px 0; font-size: clamp(3rem, 7vw, 6rem); }
.institutional-hero p { max-width: 760px; color: #d4d7dc; font-size: 1.2rem; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 540px); gap: 60px; align-items: start; }
.contact-form-card { padding: 30px; border-radius: var(--prisma-radius); background: var(--prisma-surface); }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 6px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid #cfd3da; border-radius: 8px; background: #fff; }
.honeypot { position: absolute; left: -9999px; }
.form-message { margin-bottom: 18px; padding: 12px 14px; border-radius: 8px; font-weight: 800; }
.form-message.success { background: #e2f7e9; color: #155a2b; }
.form-message.error { background: #ffe7e7; color: #8b1e1e; }
.error-page { display: grid; place-items: center; min-height: 65vh; padding: 70px 0; text-align: center; }
.error-shell { max-width: 720px; }
.error-code { display: block; color: var(--prisma-accent); font-size: clamp(6rem, 20vw, 14rem); font-weight: 950; line-height: .8; }
.error-shell h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
.error-shell .search-form { margin: 28px 0 20px; }
.empty-state { padding: 70px 20px; border-radius: var(--prisma-radius); background: var(--prisma-surface); text-align: center; }
.empty-state .search-form { max-width: 620px; margin: 20px auto 0; }

/* Footer */
.site-footer { background: #0c0c0c; color: #fff; }
.footer-minimal-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 38px 0 24px; text-align: center; }
.footer-logo img { width: auto; height: 70px; max-width: min(310px, 84vw); object-position: center; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a { padding: 7px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #fff; font-size: .75rem; font-weight: 800; }
.social-links a:hover { border-color: var(--prisma-accent); color: var(--prisma-accent); }
.footer-copyright { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); color: #aeb3bb; font-size: .8rem; }
.footer-copyright p { margin: 0; }
.footer-copyright a { color: #fff; }

/* WordPress utility classes */
.alignleft { float: left; margin: .5em 1.5em 1em 0; }
.alignright { float: right; margin: .5em 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { width: min(1100px, calc(100vw - 48px)); max-width: none !important; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: none !important; margin-left: 50%; transform: translateX(-50%); }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--prisma-muted); font-size: .78rem; }
.sticky { position: relative; }
.bypostauthor { outline: 0; }

@media (max-width: 1180px) {
  :root { --header-height: 84px; }
  .header-inner { grid-template-columns: minmax(230px, 330px) minmax(0, 1fr) auto; gap: 16px; }
  .site-logo img { max-width: 320px; height: 76px; }
  .primary-menu, .primary-navigation > .menu-fallback { gap: 13px; }
  .primary-menu > li > a, .primary-navigation > .menu-fallback > li > a { font-size: .77rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(330px, 1fr); }
  .hero-card-large { height: 520px; }
  .hero-card-small { min-height: 252px; }
  .card-grid-four { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rank-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rank-card:nth-child(3) { border-right: 0; }
  .rank-card:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.15); }
  .article-layout { grid-template-columns: minmax(0, 760px) 310px; gap: 45px; }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .brand-group { justify-self: center; }
  .primary-navigation { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card-large { height: min(62vw, 580px); min-height: 430px; }
  .hero-secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-layout, .article-layout { grid-template-columns: 1fr; }
  .home-sidebar, .article-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
  .ad-slot-sidebar { margin: 0; }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
  .admin-bar.prisma-sticky-header .site-header { top: 46px; }
}

@media (max-width: 720px) {
  :root { --header-height: 78px; }
  .site-shell, .wide-shell { width: min(calc(100% - 28px), var(--prisma-shell)); }
  .header-inner { gap: 8px; min-height: var(--header-height); }
  .logo-desktop { display: none; }
  .logo-mobile { display: block; }
  .site-logo img { height: 62px; max-width: 235px; }
  .icon-button { width: 42px; height: 42px; }
  .topics-inner { min-height: 38px; }
  .ad-slot { width: min(calc(100% - 28px), var(--prisma-shell)); margin: 16px auto; min-height: 80px; }
  .hero-section { padding-top: 18px; }
  .hero-card-large { min-height: 390px; height: 105vw; max-height: 540px; }
  .hero-secondary-grid { grid-template-columns: 1fr; }
  .hero-card-small { min-height: 300px; }
  .hero-card-large h2 { font-size: clamp(1.3rem, 5.5vw, 1.85rem); line-height: 1.12; }
  .hero-card-small h2 { font-size: 1.08rem; }
  .home-section { padding: 34px 0; }
  .section-heading { align-items: center; margin-bottom: 22px; }
  .section-heading h2 { font-size: clamp(1.8rem, 8vw, 2.7rem); }
  .section-heading a { font-size: .7rem; }
  .content-card-list { grid-template-columns: 138px 1fr; gap: 14px; padding: 16px 0; }
  .content-card-list .content-card-media { min-height: 110px; height: 110px; aspect-ratio: auto; }
  .content-card-list .content-card-excerpt { display: none; }
  .content-card-list .content-card-title { margin-top: 5px; font-size: .98rem; }
  .content-card-list .card-meta span:last-child { display: none; }
  .home-sidebar { grid-template-columns: 1fr; }
  .card-grid-four, .archive-grid { grid-template-columns: 1fr 1fr; gap: 30px 14px; }
  .rank-card-grid { grid-template-columns: 1fr; }
  .rank-card, .rank-card:nth-child(3) { border-right: 0; border-top: 1px solid rgba(255,255,255,.15); min-height: 0; }
  .rank-card:first-child { border-top: 0; }
  .newsletter-card { display: grid; padding: 32px 24px; }
  .newsletter-card .button { justify-self: start; }
  .archive-page { padding-top: 20px; }
  .archive-header { margin: 30px 0 38px; }
  .archive-header h1 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .article-header h1 { font-size: clamp(1.45rem, 6.2vw, 2.15rem); line-height: 1.12; }
  .article-meta { margin-top: 22px; padding-top: 18px; font-size: .8rem; }
  .article-meta-main { align-items: center; gap: 9px; }
  .author-chip { gap: 8px; }
  .author-chip img { width: 40px; height: 40px; flex: 0 0 40px; }
  .article-featured { width: 100%; margin-top: 18px; }
  .article-featured img { border-radius: 0; }
  .entry-content { font-size: 1.06rem; }
  .post-navigation-custom { grid-template-columns: 1fr; }
  .post-navigation-custom > div:last-child { text-align: left; }
  .author-header { align-items: flex-start; padding: 24px; }
  .author-header img { width: 84px; height: 84px; }
  .footer-minimal-inner { padding-top: 32px; }
  .footer-logo img { height: 62px; }
}

@media (max-width: 520px) {
  .site-logo img { height: 58px; max-width: 220px; }
  .hero-card-small { min-height: 270px; }
  .card-grid-four, .archive-grid { grid-template-columns: 1fr; }
  .content-card-standard { display: grid; grid-template-columns: 132px 1fr; gap: 13px; }
  .content-card-standard .content-card-media { min-height: 100px; height: 100px; aspect-ratio: auto; }
  .content-card-standard .content-card-body { padding-top: 0; }
  .content-card-standard .content-card-excerpt { display: none; }
  .content-card-standard .content-card-title { font-size: .98rem; }
  .content-card-standard .card-meta span:last-child { display: none; }
  .scroller-track { grid-auto-columns: 84vw; }
  .search-form { flex-direction: column; }
  .search-submit { width: 100%; }
  .article-meta-main { gap: 6px; }
  .article-meta-separator { display: none; }
  .author-chip img { width: 36px; height: 36px; flex: 0 0 36px; }
  .author-name { font-size: .78rem; }
  .article-published { font-size: .69rem; }
  .share-row { gap: 8px; }
  .share-icon-button { width: 40px; height: 40px; }
  .author-box { grid-template-columns: 64px 1fr; padding: 20px; }
  .author-box img { width: 64px; height: 64px; }
  .author-header { display: grid; }
  .contact-form-card { padding: 22px; }
}

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