:root {
  --wb-primary: #3b1747;
  --wb-primary-deep: #24102c;
  --wb-accent: #f05f4b;
  --wb-surface: #fff8ef;
  --wb-highlight: #e3b341;
  --wb-ink: #1f1b24;
  --wb-muted: #6f6873;
  --wb-line: #e8dfe8;
  --wb-white: #ffffff;
  --wb-shadow: 0 18px 50px rgba(44, 25, 49, 0.11);
  --wb-radius: 20px;
  --wb-radius-small: 12px;
  --wb-container: 1180px;
  --wb-serif: Georgia, "Times New Roman", serif;
  --wb-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fffdf9;
  color: var(--wb-ink);
  font-family: var(--wb-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: #8b2f5b; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--wb-accent); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.site-shell { min-height: 100vh; overflow: clip; }
.container { width: min(calc(100% - 40px), var(--wb-container)); margin-inline: auto; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus, .skip-link:focus {
  clip: auto !important; clip-path: none; display: block; height: auto; left: 12px; top: 12px; width: auto;
  z-index: 99999; background: #fff; color: var(--wb-primary); padding: 12px 16px; border-radius: 8px; box-shadow: var(--wb-shadow);
}

/* Header */
.topbar { background: var(--wb-primary-deep); color: #fff; font-size: 13px; letter-spacing: 0.02em; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; opacity: 0.78; }
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.site-header { position: relative; z-index: 50; background: #fff; border-bottom: 1px solid var(--wb-line); }
.header-main { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-branding { min-width: 0; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-height: 64px; width: auto; }
.text-logo { display: inline-flex; align-items: center; gap: 12px; color: var(--wb-ink); text-decoration: none; }
.logo-mark { width: 47px; height: 47px; border-radius: 50% 50% 50% 18%; display: grid; place-items: center; background: var(--wb-accent); color: #fff; font-family: var(--wb-serif); font-size: 27px; font-weight: 700; transform: rotate(-4deg); }
.logo-words { display: flex; align-items: baseline; gap: 2px; line-height: 1; }
.logo-words strong { font-family: var(--wb-serif); font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.03em; }
.logo-words small { color: var(--wb-accent); font-weight: 800; font-size: 12px; }
.header-actions { display: flex; gap: 8px; margin-left: auto; }
.icon-button { width: 44px; height: 44px; display: grid; place-items: center; background: var(--wb-surface); color: var(--wb-primary); border: 1px solid transparent; border-radius: 50%; }
.icon-button:hover { border-color: var(--wb-accent); color: var(--wb-accent); }
.menu-toggle { display: none; }
.menu-bars { width: 21px; display: grid; gap: 4px; }
.menu-bars i { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-wrap { border-top: 1px solid var(--wb-line); }
.primary-navigation ul { list-style: none; margin: 0; padding: 0; }
.primary-menu, .primary-navigation > .menu { display: flex; align-items: center; gap: 30px; min-height: 52px; }
.primary-navigation li { position: relative; }
.primary-navigation a { display: block; color: var(--wb-ink); text-decoration: none; font-size: 14px; font-weight: 750; }
.primary-navigation a:hover, .primary-navigation .current-menu-item > a, .primary-navigation .current-menu-ancestor > a { color: var(--wb-accent); }
.primary-navigation .menu-item-has-children > a::after { content: "⌄"; margin-left: 7px; color: var(--wb-muted); }
.primary-navigation .sub-menu { position: absolute; top: calc(100% + 15px); left: -18px; width: 230px; padding: 10px; background: #fff; border: 1px solid var(--wb-line); border-radius: 14px; box-shadow: var(--wb-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; }
.primary-navigation li:hover > .sub-menu, .primary-navigation li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-navigation .sub-menu::before { content: ""; position: absolute; height: 18px; left: 0; right: 0; top: -18px; }
.primary-navigation .sub-menu a { padding: 9px 10px; border-radius: 8px; font-weight: 650; }
.primary-navigation .sub-menu a:hover { background: var(--wb-surface); }
.search-panel { background: var(--wb-primary); color: #fff; }
.search-panel[hidden] { display: none; }
.search-panel-inner { padding-block: 26px; }
.search-label { margin: 0 0 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.72); }
.search-form { display: flex; gap: 10px; width: 100%; }
.search-form label { flex: 1; }
.search-field, .archive-search input, .hero-search input { width: 100%; min-height: 48px; border: 1px solid var(--wb-line); border-radius: 12px; padding: 0 15px; color: var(--wb-ink); background: #fff; }
.search-submit, .archive-search button, .hero-search button { min-height: 48px; border: 0; border-radius: 12px; padding: 0 22px; background: var(--wb-accent); color: #fff; font-weight: 800; }
.search-submit:hover, .archive-search button:hover, .hero-search button:hover { filter: brightness(.94); }

/* Shared typography */
h1, h2, h3, h4, h5, h6 { margin-top: 0; color: var(--wb-ink); font-family: var(--wb-serif); line-height: 1.15; letter-spacing: -0.025em; }
.section-kicker, .eyebrow { display: inline-block; color: var(--wb-accent); font-size: 12px; line-height: 1.2; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; }
.section-kicker.light { color: var(--wb-highlight); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.section-heading h2 { margin: 5px 0 0; font-size: clamp(31px, 4vw, 46px); }
.section-heading > a { color: var(--wb-primary); text-decoration: none; font-weight: 800; white-space: nowrap; }
.section-heading > a:hover { color: var(--wb-accent); }
.section-heading.compact { margin-bottom: 20px; }
.section-heading.compact h2 { font-size: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border-radius: 10px; text-decoration: none; font-weight: 800; }
.button-primary { color: #fff; background: var(--wb-accent); }
.button-primary:hover { color: #fff; filter: brightness(.93); }
.text-link { font-weight: 850; text-decoration: none; }

/* Homepage */
.home-hero { position: relative; background: linear-gradient(110deg, var(--wb-surface) 0%, #fff 55%, #f9eef8 100%); border-bottom: 1px solid var(--wb-line); }
.home-hero::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -120px; top: -120px; border: 60px solid rgba(240, 95, 75, .08); pointer-events: none; }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px, 6vw, 84px); align-items: center; min-height: 620px; padding-block: 68px; }
.hero-intro h1 { max-width: 660px; margin: 12px 0 20px; font-size: clamp(45px, 6vw, 76px); }
.hero-intro > p { max-width: 590px; margin: 0 0 28px; color: var(--wb-muted); font-size: 18px; }
.hero-search { display: flex; align-items: center; gap: 9px; max-width: 560px; padding: 7px; background: #fff; border: 1px solid var(--wb-line); border-radius: 16px; box-shadow: 0 10px 30px rgba(53, 25, 56, .08); }
.hero-search input { border: 0; outline: 0; min-height: 46px; }
.hero-search button { min-height: 46px; }
.hero-links { display: flex; gap: 22px; margin-top: 18px; }
.hero-links a { color: var(--wb-primary); font-size: 13px; font-weight: 800; text-decoration: none; border-bottom: 1px solid rgba(59,23,71,.25); }
.feature-story { overflow: hidden; position: relative; min-height: 510px; background: var(--wb-primary); border-radius: 28px; box-shadow: var(--wb-shadow); }
.feature-image { position: absolute; inset: 0; display: block; }
.feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(21, 8, 25, .95) 0%, rgba(31, 10, 37, .18) 63%, rgba(0,0,0,.03) 100%); }
.feature-image img, .feature-image .image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.feature-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(26px, 4vw, 42px); color: #fff; }
.feature-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--wb-highlight); color: #3c2910; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.feature-content h2 { margin: 14px 0 10px; color: #fff; font-size: clamp(31px, 4vw, 48px); }
.feature-content h2 a, .feature-content .text-link { color: #fff; text-decoration: none; }
.feature-content p { margin: 0 0 14px; color: rgba(255,255,255,.82); }
.feature-placeholder { position: relative; }
.feature-placeholder .image-placeholder { position: absolute; inset: 0; }
.trending-strip { padding-block: 48px; background: var(--wb-primary); color: #fff; }
.trending-strip h2 { color: #fff; }
.trending-strip .section-heading > a { color: #fff; }
.trending-scroller { display: grid; grid-auto-columns: minmax(118px, 1fr); grid-auto-flow: column; gap: 20px; overflow-x: auto; padding-bottom: 10px; scrollbar-color: rgba(255,255,255,.3) transparent; }
.trend-person { min-width: 116px; color: #fff; text-align: center; text-decoration: none; }
.trend-image { display: block; width: 100px; height: 100px; margin: 0 auto 11px; border-radius: 50%; padding: 4px; border: 2px solid var(--wb-highlight); }
.trend-image img, .trend-image .image-placeholder { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.trend-person strong { display: block; line-height: 1.25; font-size: 14px; }
.trend-person small { display: block; margin-top: 4px; color: rgba(255,255,255,.64); font-size: 11px; }
.home-section { padding-block: clamp(68px, 8vw, 108px); }
.latest-section { background: #fffdf9; }
.profiles-section { background: #f8f1f7; border-block: 1px solid var(--wb-line); }
.story-grid { display: grid; gap: 28px; }
.story-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.story-card { overflow: hidden; display: flex; flex-direction: column; min-width: 0; background: #fff; border: 1px solid var(--wb-line); border-radius: var(--wb-radius); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.story-card:hover { transform: translateY(-5px); border-color: rgba(240,95,75,.45); box-shadow: var(--wb-shadow); }
.story-card-image { display: block; aspect-ratio: 16 / 10.2; overflow: hidden; background: var(--wb-surface); text-decoration: none; }
.story-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.story-card:hover .story-card-image img { transform: scale(1.035); }
.story-card-body { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.card-topline { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 20px; }
.card-figure { color: var(--wb-primary); font-size: 12px; font-weight: 850; }
.story-card-title { margin: 12px 0 10px; font-size: 25px; }
.story-card-title a { color: var(--wb-ink); text-decoration: none; }
.story-card-title a:hover { color: var(--wb-accent); }
.story-card-excerpt { margin: 0 0 18px; color: var(--wb-muted); font-size: 14px; line-height: 1.65; }
.story-card-meta { display: flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--wb-line); color: #807884; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.image-placeholder { display: grid; place-items: center; width: 100%; height: 100%; min-height: 180px; background: radial-gradient(circle at 30% 20%, #ffd8cf, transparent 35%), linear-gradient(135deg, var(--wb-surface), #e9d8ec); color: var(--wb-primary); }
.image-placeholder span { display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50% 50% 50% 18%; background: rgba(255,255,255,.82); font-family: var(--wb-serif); font-size: 42px; font-weight: 700; }
.image-placeholder.large { min-height: 510px; }
.image-placeholder.round { min-height: 0; }
.image-placeholder.round span { width: 100%; height: 100%; font-size: 32px; }
.empty-state { padding: 60px 30px; text-align: center; background: #fff; border: 1px dashed #d4c3d7; border-radius: var(--wb-radius); }
.empty-state-icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--wb-surface); color: var(--wb-accent); font-size: 25px; }
.empty-state h2, .empty-state h3 { margin-bottom: 8px; font-size: 30px; }
.empty-state p { max-width: 620px; margin: 0 auto 20px; color: var(--wb-muted); }
.profiles-onboarding { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.profiles-onboarding > div { padding: 30px; background: #fff; border: 1px solid var(--wb-line); border-radius: var(--wb-radius); }
.profiles-onboarding span { display: inline-block; margin-bottom: 30px; color: var(--wb-accent); font-weight: 900; }
.profiles-onboarding h3 { margin-bottom: 8px; font-size: 25px; }
.profiles-onboarding p { margin: 0; color: var(--wb-muted); font-size: 14px; }
.category-section { background: #fff; }
.category-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; padding: clamp(36px, 6vw, 70px); background: var(--wb-primary); border-radius: 28px; color: #fff; }
.category-copy h2 { margin: 10px 0 16px; color: #fff; font-size: clamp(34px, 4vw, 50px); }
.category-copy p { margin: 0; color: rgba(255,255,255,.7); }
.category-cloud { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.category-cloud a, .category-demo { display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 58px; padding: 0 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: #fff; text-decoration: none; background: rgba(255,255,255,.06); }
.category-cloud a:hover { border-color: var(--wb-highlight); background: rgba(255,255,255,.11); }
.category-cloud span { font-weight: 800; }
.category-cloud small { display: grid; place-items: center; min-width: 28px; height: 28px; padding: 0 8px; border-radius: 999px; background: var(--wb-accent); color: #fff; font-weight: 850; }

/* Archives */
.archive-main { padding-block: 62px 100px; }
.archive-header { max-width: 800px; margin-bottom: 42px; }
.archive-header h1 { margin: 8px 0 12px; font-size: clamp(44px, 6vw, 70px); }
.archive-header p, .archive-description { color: var(--wb-muted); font-size: 18px; }
.archive-header-split { max-width: none; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 35px; }
.archive-search { display: flex; gap: 8px; min-width: min(100%, 400px); }
.nav-links { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 44px; }
.page-numbers { display: grid; place-items: center; min-width: 42px; min-height: 42px; padding: 0 12px; border: 1px solid var(--wb-line); border-radius: 9px; color: var(--wb-primary); text-decoration: none; font-weight: 800; background: #fff; }
.page-numbers.current, .page-numbers:hover { background: var(--wb-primary); color: #fff; border-color: var(--wb-primary); }

/* Single content */
.single-main, .profile-main { padding-block: 34px 100px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: #8a818d; font-size: 12px; font-weight: 700; }
.breadcrumbs a { color: var(--wb-primary); text-decoration: none; }
.content-layout { display: grid; grid-template-columns: minmax(0, 790px) minmax(250px, 1fr); gap: 55px; align-items: start; }
.article-shell { min-width: 0; }
.article-header h1 { margin: 10px 0 18px; font-size: clamp(44px, 6vw, 72px); }
.article-deck { margin: 0 0 22px; color: var(--wb-muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.article-byline, .profile-meta-line { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: #7f7682; font-size: 13px; font-weight: 650; }
.article-featured-image { margin: 34px 0; }
.article-featured-image img { width: 100%; border-radius: var(--wb-radius); }
.article-featured-image figcaption { margin-top: 8px; color: var(--wb-muted); font-size: 12px; }
.article-content { font-family: var(--wb-serif); color: #29242c; font-size: 19px; line-height: 1.85; }
.article-content > * { max-width: 760px; }
.article-content > .alignwide { max-width: 980px; margin-left: 50%; transform: translateX(-50%); width: min(980px, calc(100vw - 50px)); }
.article-content > .alignfull { max-width: none; width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.article-content h2 { scroll-margin-top: 35px; margin: 2.2em 0 .7em; font-size: clamp(30px, 4vw, 42px); }
.article-content h3 { scroll-margin-top: 35px; margin: 1.8em 0 .6em; font-size: 28px; }
.article-content h4 { font-size: 23px; }
.article-content p { margin: 0 0 1.35em; }
.article-content a { color: #8b2f5b; font-weight: 650; }
.article-content blockquote { margin: 2em 0; padding: 24px 30px; border-left: 5px solid var(--wb-accent); background: var(--wb-surface); font-size: 22px; font-style: italic; }
.article-content blockquote p:last-child { margin-bottom: 0; }
.article-content ul, .article-content ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.article-content li { margin-bottom: .45em; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.8em 0; font-family: var(--wb-sans); font-size: 15px; }
.article-content th, .article-content td { padding: 13px 15px; text-align: left; border: 1px solid var(--wb-line); }
.article-content th { background: var(--wb-primary); color: #fff; }
.article-content img { border-radius: 14px; }
.toc-box { margin: 30px 0; border: 1px solid var(--wb-line); border-radius: 14px; background: var(--wb-surface); }
.toc-box.is-empty { display: none; }
.toc-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border: 0; background: transparent; color: var(--wb-primary); font-weight: 850; }
.toc-list { display: grid; gap: 6px; padding: 0 18px 16px; }
.toc-list[hidden] { display: none; }
.toc-list a { color: var(--wb-ink); text-decoration: none; font-size: 14px; }
.toc-list a:hover { color: var(--wb-accent); }
.toc-list a.toc-h3 { padding-left: 18px; color: var(--wb-muted); }
.article-sidebar { min-width: 0; }
.sidebar-sticky { position: sticky; top: 24px; display: grid; gap: 20px; }
.widget { padding: 24px; background: #fff; border: 1px solid var(--wb-line); border-radius: var(--wb-radius-small); }
.widget-title { margin: 0 0 14px; font-size: 24px; }
.widget p { color: var(--wb-muted); font-size: 14px; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li + li { border-top: 1px solid var(--wb-line); }
.widget li a { display: block; padding: 10px 0; color: var(--wb-primary); text-decoration: none; font-size: 14px; font-weight: 750; }
.sidebar-about { background: var(--wb-primary); color: #fff; border-color: var(--wb-primary); }
.sidebar-about .widget-title { color: #fff; }
.sidebar-about p { color: rgba(255,255,255,.72); }
.article-footer { margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--wb-line); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 28px; font-family: var(--wb-sans); font-size: 13px; }
.tag-list a { padding: 6px 10px; border-radius: 999px; background: var(--wb-surface); color: var(--wb-primary); text-decoration: none; }
.article-author-box { display: flex; gap: 17px; padding: 24px; background: #f8f1f7; border-radius: var(--wb-radius-small); }
.article-author-box img { width: 72px; height: 72px; border-radius: 50%; }
.article-author-box span { color: var(--wb-accent); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.article-author-box h2 { margin: 2px 0 5px; font-size: 24px; }
.article-author-box p { margin: 0; color: var(--wb-muted); font-size: 14px; }
.related-section { padding-top: 80px; }
.comments-area { margin-top: 45px; }
.comment-list { list-style: none; padding: 0; }
.comment-body { margin-bottom: 15px; padding: 20px; background: #fff; border: 1px solid var(--wb-line); border-radius: 12px; }
.comment-author { display: flex; align-items: center; gap: 10px; }
.comment-author img { border-radius: 50%; }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; border: 1px solid var(--wb-line); border-radius: 9px; padding: 12px; }
.comment-form input[type="submit"] { border: 0; border-radius: 10px; padding: 12px 20px; background: var(--wb-accent); color: #fff; font-weight: 800; }

/* Profile page */
.profile-hero { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); gap: clamp(35px, 6vw, 78px); align-items: center; margin-bottom: 56px; padding: clamp(26px, 5vw, 58px); background: var(--wb-primary); border-radius: 28px; color: #fff; overflow: hidden; position: relative; }
.profile-hero::after { content: ""; position: absolute; width: 250px; height: 250px; right: -110px; bottom: -130px; border-radius: 50%; border: 45px solid rgba(227,179,65,.18); }
.profile-photo { position: relative; z-index: 1; aspect-ratio: 4 / 4.7; border-radius: 20px; overflow: hidden; background: #fff; }
.profile-photo img, .profile-placeholder { width: 100%; height: 100%; object-fit: cover; }
.profile-placeholder { min-height: 450px; }
.profile-intro { position: relative; z-index: 1; }
.profile-label-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.profile-label, .profile-rank { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.profile-rank { background: var(--wb-highlight); color: #3b2607; }
.profile-intro h1 { margin: 16px 0; color: #fff; font-size: clamp(45px, 6vw, 76px); }
.profile-deck { margin: 0 0 24px; color: rgba(255,255,255,.72); font-size: 18px; }
.headline-figure { display: inline-flex; flex-direction: column; min-width: min(100%, 310px); padding: 20px 24px; background: #fff; border-radius: 15px; color: var(--wb-primary); }
.headline-figure span { font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; color: var(--wb-accent); }
.headline-figure strong { margin-top: 4px; font-family: var(--wb-serif); font-size: clamp(30px, 4vw, 44px); line-height: 1; }
.profile-meta-line { margin-top: 20px; color: rgba(255,255,255,.6); }
.profile-facts { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; margin: 0 0 56px; padding: 30px; border: 1px solid var(--wb-line); border-radius: 20px; background: #fff; }
.facts-title h2 { margin: 6px 0 0; font-size: 34px; }
.facts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; }
.facts-grid > div { padding: 14px 20px; border-left: 1px solid var(--wb-line); border-bottom: 1px solid var(--wb-line); }
.facts-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.facts-grid dt { color: var(--wb-muted); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.facts-grid dd { margin: 3px 0 0; font-weight: 750; }
.profile-content-layout { display: grid; grid-template-columns: minmax(0, 790px) minmax(260px, 1fr); gap: 55px; align-items: start; }
.profile-side-column { position: sticky; top: 24px; display: grid; gap: 20px; }
.profile-disclaimer, .profile-share, .source-note { padding: 24px; border: 1px solid var(--wb-line); border-radius: 15px; background: #fff; }
.profile-disclaimer { background: var(--wb-surface); }
.disclaimer-icon { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 15px; border-radius: 50%; background: var(--wb-highlight); color: #3f2b0c; font-weight: 900; }
.profile-disclaimer h2, .profile-share h2, .source-note h2 { margin-bottom: 8px; font-size: 23px; }
.profile-disclaimer p, .source-note p { margin: 0; color: var(--wb-muted); font-size: 13px; }
.profile-share { display: grid; gap: 8px; }
.profile-share a { display: flex; align-items: center; min-height: 40px; padding: 0 12px; border: 1px solid var(--wb-line); border-radius: 9px; color: var(--wb-primary); text-decoration: none; font-size: 13px; font-weight: 800; }
.profile-share a:hover { background: var(--wb-primary); color: #fff; border-color: var(--wb-primary); }
.source-note { margin-top: 35px; border-left: 4px solid var(--wb-highlight); }

/* Footer */
.site-footer { background: var(--wb-primary-deep); color: #fff; }
.footer-accent { height: 7px; background: linear-gradient(90deg, var(--wb-accent) 0 55%, var(--wb-highlight) 55% 72%, var(--wb-primary) 72%); }
.footer-main { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 55px; padding-block: 65px; }
.text-logo-footer { color: #fff; }
.footer-brand p { max-width: 390px; margin: 17px 0 0; color: rgba(255,255,255,.62); font-size: 14px; }
.footer-widgets { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 25px; }
.footer-widget-title { color: #fff; font-size: 21px; }
.footer-widget a, .footer-widget p { color: rgba(255,255,255,.65); }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li + li { margin-top: 9px; }
.footer-menu a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; }
.footer-menu a:hover { color: var(--wb-highlight); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: 12px; }
.footer-bottom p { margin: 0; }

/* Error */
.error-main { padding-block: 90px; }
.error-panel { max-width: 760px; text-align: center; }
.error-code { display: block; color: var(--wb-accent); font-family: var(--wb-serif); font-size: 110px; line-height: 1; font-weight: 700; }
.error-panel h1 { margin: 10px 0; font-size: 48px; }
.error-panel p { color: var(--wb-muted); }
.error-panel .search-form { margin: 25px auto; max-width: 650px; }

/* WordPress elements */
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--wb-muted); font-size: 12px; }
.sticky { position: relative; }
.sticky::before { content: "Featured"; position: absolute; z-index: 3; top: 12px; left: 12px; padding: 5px 9px; border-radius: 999px; background: var(--wb-highlight); color: #32220c; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.bypostauthor { border-color: var(--wb-accent); }
.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; }

@media (max-width: 1020px) {
  .home-hero-grid, .profile-hero { grid-template-columns: 1fr; }
  .hero-intro { max-width: 800px; }
  .feature-story { min-height: 560px; }
  .story-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-layout, .profile-content-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .profile-side-column { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-photo { max-width: 540px; width: 100%; }
  .profile-facts { grid-template-columns: 1fr; }
  .facts-grid > div:first-child, .facts-grid > div:nth-child(3) { border-left: 0; }
  .category-panel { grid-template-columns: 1fr; gap: 35px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-navigation { grid-column: 1 / -1; }
  .footer-menu { display: flex; flex-wrap: wrap; gap: 10px 25px; }
  .footer-menu li + li { margin-top: 0; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--wb-container)); }
  .topbar p { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .header-main { min-height: 78px; }
  .menu-toggle { display: grid; }
  .nav-wrap { display: none; }
  .nav-wrap.is-open { display: block; }
  .primary-navigation { padding-block: 10px 18px; }
  .primary-menu, .primary-navigation > .menu { display: grid; gap: 0; }
  .primary-navigation li { border-bottom: 1px solid var(--wb-line); }
  .primary-navigation a { padding: 13px 4px; }
  .primary-navigation .sub-menu { position: static; width: 100%; padding: 0 0 8px 15px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: block; }
  .home-hero-grid { min-height: 0; padding-block: 54px; }
  .hero-intro h1 { font-size: clamp(42px, 11vw, 62px); }
  .archive-header-split { grid-template-columns: 1fr; align-items: start; }
  .archive-search { width: 100%; }
  .article-header h1, .profile-intro h1 { font-size: clamp(40px, 10vw, 60px); }
}

@media (max-width: 640px) {
  .logo-mark { width: 41px; height: 41px; font-size: 23px; }
  .logo-words strong { font-size: 20px; }
  .logo-words small { display: none; }
  .header-actions { gap: 5px; }
  .icon-button { width: 40px; height: 40px; }
  .hero-search, .search-form, .archive-search { align-items: stretch; flex-direction: column; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .hero-search input { border: 1px solid var(--wb-line); }
  .feature-story, .image-placeholder.large { min-height: 470px; }
  .feature-content p { display: none; }
  .feature-content h2 { font-size: 34px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .section-heading h2 { font-size: 36px; }
  .story-grid-three, .profiles-onboarding, .category-cloud, .facts-grid, .profile-side-column { grid-template-columns: 1fr; }
  .home-section { padding-block: 62px; }
  .category-panel { padding: 30px 22px; border-radius: 20px; }
  .profile-hero { padding: 20px; border-radius: 20px; }
  .profile-photo { aspect-ratio: 4 / 4.3; }
  .profile-facts { padding: 22px; }
  .facts-grid > div { border-left: 0; border-bottom: 1px solid var(--wb-line) !important; padding-inline: 0; }
  .facts-grid > div:last-child { border-bottom: 0 !important; }
  .article-content { font-size: 18px; }
  .article-content h2 { font-size: 31px; }
  .article-content > .alignwide { width: calc(100vw - 28px); }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-widgets { grid-template-columns: 1fr; }
  .footer-navigation { grid-column: auto; }
  .footer-menu { display: grid; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .error-code { font-size: 86px; }
  .error-panel h1 { font-size: 38px; }
}

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