:root {
  --bg: #fff8f8;
  --paper: #fff;
  --pink: #f6afc3;
  --pink-soft: #fde9ef;
  --pink-pale: #fff4f7;
  --pink-dark: #a84f68;
  --lavender: #d9c7f2;
  --lavender-soft: #f4eeff;
  --gold: #8f6f2b;
  --ink: #3f3440;
  --muted: #7d6e78;
  --line: #f0dde5;
  --serif: "Noto Serif JP", YuMincho, "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --shadow: 0 10px 28px rgba(104, 67, 85, .07);
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 115px; }
body { margin: 0; padding-bottom: calc(58px + env(safe-area-inset-bottom)); background: #fffdfd; color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.8; -webkit-font-smoothing: antialiased; }
body.menu-is-open { overflow: hidden; }
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.shell { width: min(calc(100% - 32px), var(--shell)); margin-inline: auto; }
.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 { z-index: 9999; top: 8px; left: 8px; width: auto; height: auto; padding: 10px 16px; clip: auto; background: #fff; }
.eyebrow { display: block; margin-bottom: 5px; color: var(--pink-dark); font-family: Georgia, serif; font-size: .63rem; font-weight: 700; letter-spacing: .16em; }
.text-link { color: var(--pink-dark); font-size: .75rem; font-weight: 700; }

/* Header */
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .97); transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 5px 20px rgba(80, 49, 64, .08); }
.site-header__top { background: linear-gradient(90deg, #fde8ee, #fff2f5 55%, #f8efff); }
.site-header__inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 9px; min-width: 0; font-family: var(--serif); font-weight: 700; line-height: 1; }
.brand__mark { width: 30px; height: 30px; display: grid; flex: 0 0 30px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }
.brand__name { display: block; font-size: 1.05rem; letter-spacing: .06em; white-space: nowrap; }
.brand small { display: block; margin-top: 5px; color: var(--pink-dark); font-family: Georgia, serif; font-size: .48rem; font-weight: 600; letter-spacing: .17em; }
.custom-logo-link { display: flex; }
.custom-logo { width: auto; max-width: 180px; max-height: 42px; }
.header-search-desktop { display: none; width: min(360px, 34vw); margin-left: auto; }
.header-actions { display: flex; gap: 2px; align-items: center; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; font-size: 1.25rem; }
.header-actions .menu-toggle > span { display: block; width: 19px; height: 1px; background: var(--ink); }
.header-actions .menu-toggle > span + span { width: 14px; margin-top: 5px; justify-self: end; }
.header-actions .menu-toggle small { display: none; }
.search-form { position: relative; min-height: 46px; display: flex; width: 100%; padding: 4px 4px 4px 40px; border: 1px solid #ebcbd5; border-radius: 999px; background: #fff; }
.search-form__icon { position: absolute; top: 50%; left: 15px; transform: translateY(-50%); color: var(--pink-dark); }
.search-form input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: .75rem; }
.search-form input::placeholder { color: #a895a0; }
.search-form button { min-width: 58px; border: 0; border-radius: 999px; background: var(--pink-dark); color: #fff; font-size: .68rem; font-weight: 700; cursor: pointer; }
.header-search { position: absolute; inset: 64px 0 auto; padding: 12px 0; border-bottom: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.header-search[hidden] { display: none; }
.global-nav { overflow: hidden; border-top: 1px solid rgba(240, 221, 229, .75); background: #fff; }
.global-nav__frame { position: relative; }
.global-nav__inner { overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-padding-inline: 38px; touch-action: pan-x; }
.global-nav__inner::-webkit-scrollbar { display: none; }
.global-nav__inner:focus-visible { outline: 2px solid var(--pink-dark); outline-offset: -2px; }
.global-nav__list { width: max-content; min-width: 100%; display: flex; justify-content: flex-start; gap: 2px; margin: 0; padding: 0; list-style: none; }
.global-nav__list li { display: flex; }
.global-nav__list a { min-height: 44px; display: flex; align-items: center; padding: 0 17px; border-radius: 8px; color: #655761; font-size: .75rem; font-weight: 700; line-height: 1.35; white-space: nowrap; transition: color .18s, background-color .18s, box-shadow .18s; }
.global-nav__list a:hover { color: var(--pink-dark); background: var(--pink-pale); }
.global-nav__list a:focus-visible { outline: 2px solid var(--pink-dark); outline-offset: -2px; }
.global-nav__list .current-menu-item > a, .global-nav__list .current-category-ancestor > a, .global-nav__list a[aria-current="page"] { color: var(--pink-dark); background: var(--pink-pale); box-shadow: inset 0 -2px var(--pink-dark); }
.global-nav__control { position: absolute; z-index: 4; top: 50%; width: 34px; height: 34px; display: grid; place-items: center; padding: 0; transform: translateY(-50%); border: 1px solid #e9c6d1; border-radius: 50%; background: rgba(255, 255, 255, .98); box-shadow: 0 4px 13px rgba(104, 67, 85, .14); color: var(--pink-dark); cursor: pointer; transition: transform .18s, background-color .18s, box-shadow .18s; }
.global-nav__control[hidden] { display: none; }
.global-nav__control::before { content: ""; position: absolute; z-index: -1; top: -6px; bottom: -6px; width: 54px; pointer-events: none; }
.global-nav__control--prev { left: 1px; }
.global-nav__control--prev::before { left: -2px; background: linear-gradient(90deg, #fff 48%, rgba(255, 255, 255, 0)); }
.global-nav__control--next { right: 1px; }
.global-nav__control--next::before { right: -2px; background: linear-gradient(270deg, #fff 48%, rgba(255, 255, 255, 0)); }
.global-nav__control span { display: block; margin-top: -2px; font-size: 1.7rem; line-height: 1; }
.global-nav__control:hover { transform: translateY(-50%) scale(1.06); background: var(--pink-pale); box-shadow: 0 5px 16px rgba(104, 67, 85, .2); }
.global-nav__control:focus-visible { outline: 2px solid var(--pink-dark); outline-offset: 2px; }
.menu-drawer { position: fixed; z-index: 200; inset: 0; visibility: hidden; opacity: 0; transition: opacity .22s, visibility .22s; }
.menu-drawer[aria-hidden="false"] { visibility: visible; opacity: 1; }
.menu-drawer__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(63, 52, 64, .3); backdrop-filter: blur(3px); }
.menu-drawer__panel { position: absolute; top: 0; right: 0; width: min(88%, 390px); height: 100%; overflow-y: auto; padding: 24px 22px 90px; background: var(--bg); transform: translateX(100%); transition: transform .3s cubic-bezier(.22, .9, .3, 1); }
.menu-drawer[aria-hidden="false"] .menu-drawer__panel { transform: translateX(0); }
.menu-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.menu-drawer__title { margin: 24px 0 12px; font-family: var(--serif); font-weight: 700; }
.menu-drawer__links { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 24px; border-top: 1px solid var(--line); }
.menu-drawer__links a { min-width: 0; min-height: 48px; display: flex; gap: 8px; align-items: center; padding-inline: 2px; border-bottom: 1px solid var(--line); font-size: .82rem; line-height: 1.45; overflow-wrap: anywhere; }
.menu-drawer__links a span { color: var(--gold); }
.menu-drawer .text-link { display: inline-block; margin-top: 20px; }

/* Common layout */
.front-intro { display: flex; flex-direction: column; gap: 18px; padding-top: 34px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.front-intro h1, .listing-header h1 { margin: 0; font-family: var(--serif); font-size: 1.75rem; font-weight: 700; line-height: 1.45; }
.front-intro p, .listing-header p, .listing-header > div { margin: 6px 0 0; color: var(--muted); font-size: .78rem; }
.front-keywords { display: flex; gap: 8px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.front-keywords span, .front-keywords a { flex: 0 0 auto; font-size: .65rem; }
.front-keywords span { color: var(--muted); }
.front-keywords a { padding: 4px 9px; border-radius: 999px; background: var(--pink-soft); color: var(--pink-dark); }
.media-layout { display: block; padding-top: 28px; padding-bottom: 75px; }
.media-main { min-width: 0; }
.feed-section + .feed-section { margin-top: 58px; }
.feed-section--category { content-visibility: auto; contain-intrinsic-size: 620px; }
.site-footer { content-visibility: auto; contain-intrinsic-size: 720px; }
.media-section-heading { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 18px; padding: 9px 13px; border-left: 3px solid var(--pink-dark); background: linear-gradient(90deg, var(--pink-soft), rgba(253, 233, 239, .25)); }
.media-section-heading h2 { margin: 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }
.media-section-heading h2 span { margin-left: 7px; color: var(--pink-dark); font-family: Georgia, serif; font-size: .57rem; letter-spacing: .12em; }
.media-section-heading p, .media-section-heading > a { margin: 0; color: var(--muted); font-size: .67rem; }
.section.shell { padding-top: 50px; padding-bottom: 50px; }
.section.shell > .section-heading { margin-bottom: 18px; }
.section.shell > .section-heading h2 { margin: 0; font-family: var(--serif); font-size: 1.2rem; }
.card-grid { display: grid; gap: 18px; }
.article-card { min-width: 0; overflow: hidden; border: 1px solid rgba(240, 221, 229, .9); border-radius: 15px; background: var(--paper); box-shadow: 0 5px 18px rgba(104, 67, 85, .045); transition: transform .2s, box-shadow .2s, border-color .2s; }
.article-card:hover { transform: translateY(-3px); border-color: #eec4d0; box-shadow: var(--shadow); }
.article-card__image { display: block; aspect-ratio: auto; overflow: hidden; background: var(--lavender-soft); }
.article-card__image img { display: block; width: 100%; height: auto; object-fit: initial; transition: transform .35s; }
.article-card:hover .article-card__image img { transform: scale(1.025); }
.article-card__body { padding: 13px 14px 14px; }
.article-card__labels { min-height: 22px; display: flex; gap: 5px; align-items: center; overflow: hidden; white-space: nowrap; }
.category-label, .article-tag { display: inline-flex; align-items: center; min-height: 21px; padding: 2px 7px; border-radius: 4px; font-size: .57rem; font-weight: 700; line-height: 1.2; }
.category-label { background: var(--pink-soft); color: var(--pink-dark); }
.article-tag { background: var(--lavender-soft); color: #806aa0; }
.article-card__title { display: -webkit-box; margin: 8px 0 5px; overflow: hidden; font-family: var(--serif); font-size: .87rem; font-weight: 700; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.article-card__excerpt { display: -webkit-box; margin-top: 4px; overflow: hidden; color: var(--muted); font-size: .65rem; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.article-card__excerpt p { margin: 0; }
.article-card__meta { display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: center; margin-top: 9px; color: #9a8792; font-size: .56rem; }
.post-date + .post-date::before { content: "/ "; color: var(--line); }
.more-button { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; border: 1px solid #f0b9c8; border-radius: 999px; background: linear-gradient(90deg, #f7b4c7, #ed9eb8); box-shadow: 0 8px 20px rgba(201, 108, 134, .14); color: #fff; font-size: .8rem; font-weight: 700; transition: transform .2s, box-shadow .2s; }
.more-button:hover { transform: translateY(-2px); box-shadow: 0 11px 24px rgba(201, 108, 134, .22); }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.category-tile { min-height: 90px; display: flex; gap: 10px; align-items: center; padding: 13px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.category-tile__icon { color: var(--gold); }
.category-tile strong { display: block; font-family: var(--serif); font-size: .82rem; }
.category-tile small { display: block; color: var(--muted); font-size: .58rem; line-height: 1.5; }
.category-tile__arrow { margin-left: auto; color: var(--pink-dark); }

/* Sidebar */
.media-sidebar { display: grid; gap: 20px; margin-top: 55px; align-content: start; }
.sidebar-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.sidebar-panel > h2 { margin: 0; padding: 10px 12px; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, var(--pink-soft), #fff8fa); font-family: var(--serif); font-size: .88rem; font-weight: 700; }
.sidebar-panel > h2 span { margin-left: 6px; color: var(--pink-dark); font-family: Georgia, serif; font-size: .5rem; letter-spacing: .1em; }
.sidebar-post-list { padding: 0 11px; }
.sidebar-post-list article { display: grid; grid-template-columns: 96px 1fr; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.sidebar-post-list article:last-child { border-bottom: 0; }
.sidebar-post-list__image { display: block; width: 96px; border-radius: 7px; background: var(--lavender-soft); }
.sidebar-post-list__image img { display: block; width: 100%; height: auto; border-radius: 7px; }
.sidebar-post-list h3, .sidebar-ranking h3 { display: -webkit-box; margin: 0 0 4px; overflow: hidden; font-size: .66rem; font-weight: 600; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.sidebar-post-list .post-date, .sidebar-ranking .post-date { color: #9a8792; font-size: .52rem; }
.sidebar-chip-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; padding: 12px; }
.sidebar-chip-grid a { min-width: 0; min-height: 34px; display: flex; align-items: center; justify-content: center; padding: 5px 7px; border: 1px solid var(--line); border-radius: 6px; background: var(--pink-pale); color: var(--muted); font-size: .63rem; font-weight: 600; line-height: 1.35; text-align: center; overflow-wrap: anywhere; }
.sidebar-chip-grid a::before { content: "✦"; margin-right: 5px; color: var(--gold); font-size: .5rem; }
.sidebar-ranking { margin: 0; padding: 0 11px; list-style: none; counter-reset: rank; }
.sidebar-ranking li { position: relative; display: grid; grid-template-columns: 88px 1fr; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.sidebar-ranking li:last-child { border-bottom: 0; }
.sidebar-ranking__number { position: absolute; z-index: 2; top: 6px; left: -4px; width: 23px; height: 23px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; background: var(--pink-dark); color: #fff; font-family: Georgia, serif; font-size: .65rem; font-weight: 700; }
.sidebar-ranking li:nth-child(1) .sidebar-ranking__number { background: var(--gold); }
.sidebar-ranking li:nth-child(2) .sidebar-ranking__number { background: #bbaec1; }
.sidebar-ranking li:nth-child(3) .sidebar-ranking__number { background: #c88f74; }
.sidebar-ranking__image { display: block; width: 88px; border-radius: 7px; background: var(--lavender-soft); }
.sidebar-ranking__image img { display: block; width: 100%; height: auto; border-radius: 7px; }
.sidebar-panel .tag-cloud { padding: 12px; }
.sidebar-panel--search { padding-bottom: 12px; }
.sidebar-panel--search .search-form { width: calc(100% - 24px); margin: 12px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-cloud a { min-height: 29px; display: inline-flex; align-items: center; padding: 3px 9px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); font-size: .61rem; }
.tag-cloud a:hover { border-color: var(--pink); color: var(--pink-dark); }

/* Breadcrumb and listing pages */
.breadcrumb { padding-top: 13px; overflow: hidden; color: var(--muted); font-size: .6rem; }
.breadcrumb ol { display: flex; gap: 7px; margin: 0; padding: 0; list-style: none; white-space: nowrap; }
.breadcrumb li { max-width: 55vw; overflow: hidden; text-overflow: ellipsis; }
.breadcrumb li + li::before { content: "/"; margin-right: 7px; color: #d9c9d1; }
.archive-main, .search-page, .page-layout, .error-page { padding-top: 32px; }
.listing-header { margin-bottom: 28px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(125deg, var(--pink-pale), #fff 65%, var(--lavender-soft)); }
.listing-header--term { position: relative; }
.listing-header__count { display: inline-block; margin-top: 12px; color: var(--pink-dark); font-size: .65rem; font-weight: 700; }
.feed-section--popular { margin-bottom: 50px; }
.navigation.pagination { margin-top: 35px; }
.nav-links { display: flex; gap: 7px; align-items: center; justify-content: center; }
.page-numbers { min-width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--muted); font-size: .7rem; }
.page-numbers.current { border-color: var(--pink-dark); background: var(--pink-dark); color: #fff; }
.page-numbers.dots { border: 0; }
.archive-links { display: grid; gap: 28px; margin-top: 50px; padding: 25px 0; border-top: 1px solid var(--line); }
.archive-links h2 { margin: 0 0 12px; font-family: var(--serif); font-size: .95rem; }
.simple-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.simple-links a { display: flex; justify-content: space-between; padding: 10px 2px; border-bottom: 1px solid var(--line); font-size: .72rem; }
.simple-links span { color: var(--pink-dark); }
.term-intent-nav { margin: -8px 0 34px; padding: 22px; border: 1px solid #efd0da; border-radius: 16px; background: linear-gradient(135deg, #fff, var(--pink-pale) 58%, var(--lavender-soft)); box-shadow: 0 12px 32px rgba(173, 95, 123, .08); }
.term-intent-nav__head h2 { margin: 5px 0 6px; font-family: var(--serif); font-size: 1.08rem; line-height: 1.55; }
.term-intent-nav__head p { margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.8; }
.term-intent-nav__grid { display: grid; gap: 10px; margin-top: 16px; }
.term-intent-nav__grid a { min-height: 48px; display: flex; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid rgba(229, 138, 168, .32); border-radius: 12px; background: rgba(255, 255, 255, .86); color: var(--ink); font-size: .76rem; font-weight: 700; line-height: 1.55; box-shadow: 0 6px 16px rgba(173, 95, 123, .05); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.term-intent-nav__grid a:hover { transform: translateY(-2px); border-color: var(--pink); box-shadow: 0 10px 22px rgba(173, 95, 123, .12); color: var(--pink-dark); }
.term-intent-nav__grid span { color: var(--gold); }
.term-intent-nav__grid b { margin-left: auto; color: var(--pink-dark); font-size: 1rem; transition: transform .18s ease; }
.term-intent-nav__grid a:hover b { transform: translateX(3px); }
.category-pillar { margin: -8px 0 38px; padding: 24px; border: 1px solid #efd0da; border-radius: 18px; background: linear-gradient(145deg, #fff 0%, #fff9fb 54%, #f8f3ff 100%); box-shadow: 0 14px 38px rgba(126, 79, 105, .08); }
.category-pillar__head { max-width: 720px; }
.category-pillar__head h2 { margin: 6px 0 8px; font-family: var(--serif); font-size: 1.26rem; line-height: 1.5; }
.category-pillar__head > p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.9; }
.category-pillar__jump { display: flex; gap: 8px; margin: 18px -4px 0; padding: 4px; overflow-x: auto; scrollbar-width: none; }
.category-pillar__jump::-webkit-scrollbar { display: none; }
.category-pillar__jump a { min-height: 38px; display: flex; align-items: center; flex: 0 0 auto; padding: 7px 12px; border: 1px solid rgba(211, 148, 172, .42); border-radius: 999px; background: rgba(255, 255, 255, .9); color: var(--ink); font-size: .66rem; font-weight: 700; white-space: nowrap; }
.category-pillar__jump a:hover { border-color: var(--pink); color: var(--pink-dark); }
.category-pillar__clusters { display: grid; gap: 20px; margin-top: 24px; }
.category-pillar__cluster { scroll-margin-top: 125px; padding-top: 20px; border-top: 1px solid rgba(225, 189, 202, .65); }
.category-pillar__cluster-head { display: grid; grid-template-columns: 35px 1fr; gap: 10px; align-items: start; }
.category-pillar__cluster-head > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--pink-soft); color: var(--pink-dark); font-family: Georgia, serif; font-size: .66rem; }
.category-pillar__cluster h3 { margin: 0; font-family: var(--serif); font-size: .98rem; line-height: 1.55; }
.category-pillar__cluster-head p { margin: 4px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.7; }
.category-pillar__links { display: grid; gap: 9px; margin-top: 13px; }
.category-pillar__links > a { min-height: 116px; display: flex; flex-direction: column; padding: 14px; border: 1px solid rgba(226, 194, 207, .8); border-radius: 12px; background: rgba(255, 255, 255, .92); box-shadow: 0 6px 18px rgba(116, 77, 98, .045); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.category-pillar__links > a:hover { transform: translateY(-2px); border-color: var(--pink); box-shadow: 0 10px 24px rgba(151, 91, 118, .1); }
.category-pillar__links strong { color: var(--ink); font-family: var(--serif); font-size: .78rem; line-height: 1.6; }
.category-pillar__links small { display: block; margin-top: 6px; color: var(--muted); font-size: .65rem; line-height: 1.65; }
.category-pillar__links b { margin-top: auto; padding-top: 9px; color: var(--pink-dark); font-size: .62rem; }
.category-pillar__links b span { display: inline-block; transition: transform .18s ease; }
.category-pillar__links > a:hover b span { transform: translateX(3px); }
.term-diagnosis-cta { display: grid; gap: 16px; margin: 40px 0 0; padding: 24px; overflow: hidden; position: relative; border: 1px solid #ecc6d2; border-radius: 18px; background: linear-gradient(135deg, #fff7fb, #fff 52%, #f4edff); box-shadow: 0 16px 36px rgba(185, 82, 118, .1); }
.term-diagnosis-cta::before { content: ""; position: absolute; inset: 0 auto 0 -25%; width: 34%; transform: skewX(-18deg); background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent); animation: ctaShine 4.8s ease-in-out infinite; pointer-events: none; }
.term-diagnosis-cta h2 { margin: 6px 0 8px; font-family: var(--serif); font-size: 1.08rem; line-height: 1.55; }
.term-diagnosis-cta p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.85; }
.term-diagnosis-cta a { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 999px; background: linear-gradient(135deg, var(--pink-dark), #e589a5); color: #fff; font-size: .82rem; font-weight: 700; box-shadow: 0 12px 26px rgba(184, 79, 114, .24); transition: transform .18s ease, box-shadow .18s ease; }
.term-diagnosis-cta a:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(184, 79, 114, .3); }
.term-diagnosis-cta b { font-size: 1.2rem; transition: transform .18s ease; }
.term-diagnosis-cta a:hover b { transform: translateX(3px); }
@keyframes ctaShine {
  0%, 55% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  70% { opacity: .75; }
  100% { transform: translateX(420%) skewX(-18deg); opacity: 0; }
}
@keyframes navCueNudge {
  0%, 100% { transform: translateX(0); }
  38% { transform: translateX(3px); }
  65% { transform: translateX(0); }
}
.term-seo-text { margin: 34px 0 0; padding: 22px 24px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--muted); font-size: .82rem; line-height: 1.95; }
.term-seo-text p { margin: 0 0 1em; }
.term-seo-text p:last-child { margin-bottom: 0; }
.empty-state { padding: 45px 20px; border-radius: 13px; background: var(--pink-pale); text-align: center; }
.search-header .search-form { max-width: 620px; margin-top: 18px; }
.no-results { padding: 35px 20px; text-align: center; }
.no-results__symbol { color: var(--gold); font-size: 2.8rem; }
.no-results h2 { margin: 4px 0; font-family: var(--serif); font-size: 1.25rem; }
.no-results p { color: var(--muted); font-size: .75rem; }

/* Article */
.media-layout--single { padding-top: 30px; }
.single-post { min-width: 0; }
.single-post__header { max-width: 760px; margin: 0 auto 23px; }
.single-post__header h1 { margin: 10px 0 13px; font-family: var(--serif); font-size: clamp(1.45rem, 6vw, 2.1rem); font-weight: 700; line-height: 1.55; }
.single-post__byline { display: flex; flex-wrap: wrap; gap: 12px 22px; align-items: center; justify-content: space-between; padding-top: 11px; border-top: 1px solid var(--line); }
.single-post__meta { display: flex; flex-wrap: wrap; gap: 6px 12px; color: var(--muted); font-size: .62rem; }
.post-author { display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; line-height: 1.3; }
.post-author img { width: 30px; height: 30px; border-radius: 50%; }
.post-author small { display: block; color: var(--muted); font-size: .52rem; }
.post-author a { color: inherit; text-decoration: none; }
.post-author a:hover { color: var(--pink-dark); }
.post-author a:focus-visible { border-radius: 3px; outline: 2px solid var(--pink); outline-offset: 3px; }
.single-post__visual { max-width: 820px; aspect-ratio: auto; margin: 0 auto 28px; overflow: hidden; border-radius: 12px; background: var(--lavender-soft); }
.single-post__visual img { width: 100%; height: 100%; object-fit: cover; }
.single-post__content, .single-post__footer { max-width: 720px; margin-inline: auto; }
.entry-content { color: #493e49; font-size: .95rem; line-height: 2.05; }
.entry-content > p:first-of-type { font-size: 1rem; font-weight: 500; }
.entry-content p { margin: 0 0 1.65em; }
.entry-content h2 { position: relative; margin: 3em 0 1.25em; padding: 15px 16px 15px 21px; border-top: 1px solid #efbcc9; border-bottom: 1px solid #efbcc9; background: linear-gradient(90deg, var(--pink-pale), #fff); font-family: var(--serif); font-size: 1.22rem; font-weight: 700; line-height: 1.65; }
.entry-content h2::before { content: ""; position: absolute; top: -1px; bottom: -1px; left: 0; width: 4px; background: var(--pink-dark); }
.entry-content h3 { position: relative; margin: 2.4em 0 1.05em; padding: 0 0 9px 17px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.06rem; font-weight: 700; }
.entry-content h3::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .65em; }
.entry-content h4 { margin-top: 2em; font-size: 1rem; }
.entry-content a { color: var(--pink-dark); text-decoration: underline; text-underline-offset: 3px; }
.entry-content strong { background: linear-gradient(transparent 65%, rgba(246, 175, 195, .38) 0); }
.entry-content ul, .entry-content ol { margin: 0; padding: 18px 18px 18px 36px; border-radius: 10px; background: var(--pink-pale); }
.entry-content .wp-block-list { padding-left: 36px; }
.entry-content li { margin: 0; }
.entry-content ul li::marker { content: "✓  "; color: var(--pink-dark); font-weight: 700; }
.entry-content blockquote { margin: 2em 0; padding: 20px 20px 20px 45px; border: 0; border-radius: 11px; background: var(--lavender-soft); color: #665c6e; }
.entry-content blockquote::before { content: "“"; float: left; margin-left: -28px; color: #9d84c0; font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content img { display: block; margin-inline: auto; border-radius: 10px; }
.entry-content table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; font-size: .8rem; }
.entry-content th, .entry-content td { padding: 10px; border: 1px solid var(--line); }
.entry-content th { background: var(--pink-soft); }
.toc { margin: 28px 0 38px; padding: 0 18px 16px; border: 1px solid #edc8d2; border-radius: 11px; background: var(--pink-pale); }
.toc__toggle { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0; border: 0; border-bottom: 1px solid #efcdd6; background: transparent; color: var(--ink); font-family: var(--serif); font-size: .94rem; font-weight: 700; cursor: pointer; }
.toc__star, .toc__chevron { color: var(--pink-dark); }
.toc__list, .entry-content .toc__list { margin-block: 0; padding: 12px 0 0; list-style: none; counter-reset: toc-h2; border-radius: 0; background: transparent; color: #493e49; font-size: clamp(.89rem, 2.6vw, .94rem); line-height: 1.65; }
.toc__item { position: relative; margin: 0; }
.toc__item a { min-height: 36px; display: flex; align-items: center; padding: 7px 6px; color: inherit; line-height: 1.65; text-decoration: none; transition: color .18s ease, background-color .18s ease; }
.toc__item a:hover { border-radius: 6px; background: rgba(255, 255, 255, .62); color: var(--pink-dark); }
.toc__item a:focus-visible { border-radius: 6px; outline: 2px solid rgba(201, 108, 134, .45); outline-offset: 1px; }
.toc__item--h2 { counter-increment: toc-h2; padding-left: 29px; color: #493e49; font-weight: 700; }
.toc__item--h2::before { content: counter(toc-h2, decimal-leading-zero); position: absolute; top: 50%; left: 2px; transform: translateY(-50%); color: var(--pink-dark); font-family: Georgia, serif; font-size: 18px; font-weight: 700; letter-spacing: .02em; }
.toc__item--h3 { margin-left: 12px !important; padding-left: 12px; border-left: 1px solid #e4bdc9; color: #665761; font-size: .95em; font-weight: 500; }
.toc__item--h3::before { content: ""; position: absolute; top: 50%; left: -15px; width: 5px; height: 5px; margin-left: 12px; transform: translateY(-50%); border-radius: 50%; background: #d79aab; }
.toc.is-closed .toc__list { display: none; }
.toc.is-closed .toc__toggle { border-bottom: 0; }
.toc.is-closed .toc__chevron { transform: rotate(180deg); }
.inline-related { display: grid; grid-template-columns: 82px 1fr; gap: 13px; align-items: center; margin: 32px 0; padding: 11px; border: 1px solid #efc6d1; border-radius: 11px; background: var(--pink-pale); }
.inline-related__image { display: block; border-radius: 7px; }
.inline-related__image img { display: block; width: 100%; height: auto; border-radius: 7px; }
.inline-related__content > span { color: var(--pink-dark); font-size: .59rem; font-weight: 700; }
.inline-related a { display: flex; gap: 10px; align-items: center; justify-content: space-between; color: var(--ink); font-family: var(--serif); font-size: .76rem; font-weight: 700; line-height: 1.55; text-decoration: none; }
.inline-related__content p { margin: 4px 0 0; color: var(--muted); font-family: var(--sans); font-size: .64rem; line-height: 1.55; }
.inline-related b { color: var(--pink-dark); }
.entry-content .article-context-links { margin: 32px 0; padding: 16px 18px; border: 1px solid #efc6d1; border-radius: 11px; background: linear-gradient(135deg, #fff8fa, var(--pink-pale)); }
.entry-content .article-context-links > p { margin: 0; color: var(--pink-dark); font-family: var(--serif); font-size: .76rem; line-height: 1.6; }
.entry-content .article-context-links ul { display: grid; gap: 8px; margin: 8px 0 0; padding: 0; list-style: none; }
.entry-content .article-context-links li { position: relative; margin: 0; padding: 0 0 0 15px; }
.entry-content .article-context-links li::before { content: "›"; position: absolute; top: .05em; left: 0; color: var(--pink-dark); font-weight: 800; }
.entry-content .article-context-links a { color: var(--ink); font-size: .72rem; font-weight: 700; line-height: 1.65; text-decoration-color: #dc9aae; text-underline-offset: 3px; }
.entry-content .article-context-links a:hover { color: var(--pink-dark); }
.entry-content .article-context-links a:focus-visible { border-radius: 3px; outline: 2px solid var(--pink-dark); outline-offset: 3px; }
.article-banner { margin: 34px 0; }
.sidebar-banner { display: block; background: #fff; }
.luna-banner {
  display: block;
  line-height: 0;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}
.luna-banner:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}
.luna-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 12px 26px rgba(104, 67, 85, .12);
}
.luna-banner--article img { border-radius: 0; }
.luna-banner--sidebar img { border-radius: 0; box-shadow: none; }
.floating-banner {
  position: fixed;
  z-index: 180;
  right: 14px;
  bottom: calc(72px + env(safe-area-inset-bottom));
  width: min(360px, calc(100vw - 28px));
  visibility: hidden;
  opacity: 0;
  transform: translate3d(16px, 18px, 0) scale(.96);
  transition: opacity .26s ease, transform .26s ease, visibility .26s ease;
}
.floating-banner.is-ready {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.floating-banner.is-hiding {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(16px, 18px, 0) scale(.96);
}
.floating-banner__close {
  position: absolute;
  z-index: 2;
  top: -10px;
  right: -8px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(201, 108, 134, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 7px 18px rgba(104, 67, 85, .16);
  color: var(--pink-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.floating-banner .luna-banner img {
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(104, 67, 85, .18);
}
.summary-box { display: flex; gap: 13px; margin-top: 45px; padding: 20px; border: 1px solid #ead6a6; border-radius: 11px; background: #fffdf6; }
.summary-box__icon { width: 32px; height: 32px; display: grid; flex: 0 0 32px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }
.summary-box h2 { margin: 0 0 5px; padding: 0; border: 0; background: none; font-size: .95rem; }
.summary-box h2::before { display: none; }
.summary-box p { margin: 0; color: var(--muted); font-size: .78rem; }
.single-post__footer { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.managed-cta { margin: 0 0 28px; }
.entry-content .article-affiliate-cta { margin: 36px 0; }
.single-post__referral-cta .managed-cta { margin: 24px 0 32px; }
.single-post__referral-cta .managed-cta__heading { font-size: 1.08rem; }
.single-post__referral-cta .article-cta-block__subtext { margin-bottom: 14px; }
.archive-main .managed-cta { margin: 40px 0 0; }
.managed-cta__heading { margin: 0 0 8px; font-family: var(--serif); font-size: 1rem; line-height: 1.55; }
.managed-cta__note { margin: 10px 0 0; color: var(--muted); font-size: .64rem; text-align: center; }
.post-tags > span { display: block; margin-bottom: 10px; font-size: .7rem; font-weight: 700; }
.share-links { display: flex; gap: 7px; align-items: center; margin-top: 20px; }
.share-links > span { margin-right: 3px; color: var(--muted); font-size: .65rem; }
.share-links a { min-width: 44px; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .68rem; font-weight: 700; }
.single-topic-links { margin: 28px 0; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(135deg, #fff, var(--pink-pale)); }
.single-topic-links h2 { margin: 5px 0 14px; font-family: var(--serif); font-size: 1rem; line-height: 1.55; }
.single-topic-links__grid { display: grid; gap: 8px; }
.single-topic-links__grid a { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 10px; background: rgba(255, 255, 255, .82); color: var(--ink); font-size: .72rem; font-weight: 700; line-height: 1.55; }
.single-topic-links__grid a:hover { color: var(--pink-dark); }
.single-topic-links__grid span { flex: 0 0 auto; color: var(--pink-dark); }
.single-topic-links__category { border: 1px solid rgba(229, 138, 168, .38); }
.category-return { margin-top: 22px; padding: 17px; border-radius: 10px; background: var(--pink-pale); }
.category-return > span { display: block; margin-bottom: 3px; color: var(--pink-dark); font-size: .59rem; font-weight: 700; }
.category-return a { display: flex; justify-content: space-between; gap: 12px; font-family: var(--serif); font-size: .82rem; font-weight: 700; }
.post-navigation { display: grid; gap: 10px; margin-top: 22px; }
.post-navigation a { min-height: 68px; display: flex; flex-direction: column; justify-content: center; padding: 12px 15px; border: 1px solid var(--line); border-radius: 10px; }
.post-navigation span { color: var(--pink-dark); font-size: .58rem; }
.post-navigation strong { margin-top: 2px; font-family: var(--serif); font-size: .72rem; line-height: 1.55; }
.post-navigation__next { text-align: right; }
.author-profile { max-width: 720px; margin: 42px auto 0; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.author-profile__heading { padding: 9px 14px; background: var(--pink-pale); }
.author-profile__heading .eyebrow { margin: 0; }
.author-profile__heading h2 { margin: 0; font-family: var(--serif); font-size: .9rem; }
.author-profile__body { display: grid; grid-template-columns: 70px 1fr; gap: 15px; padding: 16px; }
.author-profile__body img { width: 70px; height: 70px; border-radius: 50%; }
.author-profile__body h3 { margin: 0 0 4px; font-family: var(--serif); font-size: .85rem; }
.author-profile__body h3 a { color: inherit; text-decoration: none; }
.author-profile__body h3 a:hover { color: var(--pink-dark); }
.author-profile__body p { margin: 0; color: var(--muted); font-size: .7rem; }
.author-profile__more { display: inline-flex; align-items: center; gap: 5px; margin-top: 9px; color: var(--pink-dark); font-size: .68rem; font-weight: 700; text-decoration: none; }
.author-profile__more:hover { text-decoration: underline; text-underline-offset: 3px; }
.author-profile__more:focus-visible { border-radius: 3px; outline: 2px solid var(--pink); outline-offset: 3px; }
.post-related, .same-category { max-width: 820px; margin-inline: auto; padding-top: 52px; }
.post-related .section-heading, .same-category .section-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--pink-soft); }
.post-related .section-heading h2, .same-category .section-heading h2 { margin: 0; font-family: var(--serif); font-size: 1.05rem; }
.post-related .card-grid { gap: 12px; }
.same-category__list { display: grid; border-top: 1px solid var(--line); }
.same-category__list article { display: grid; grid-template-columns: 82px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.same-category__image { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 7px; }
.same-category__image img { width: 100%; height: 100%; object-fit: cover; }
.same-category__list h3 { margin: 2px 0 5px; font-family: var(--serif); font-size: .75rem; line-height: 1.55; }
.same-category__list .post-date { color: var(--muted); font-size: .55rem; }

/* Fixed and error pages */
.static-page { padding: 25px 20px 45px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.static-page > header { margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.static-page > header h1 { margin: 0; font-family: var(--serif); font-size: 1.65rem; }
.page-return { margin-top: 28px; text-align: center; }
.page-return p { font-family: var(--serif); }
.error-hero { padding: 35px 20px 50px; text-align: center; }
.error-hero__visual { display: flex; gap: 10px; align-items: center; justify-content: center; color: #e1c2cc; font-family: Georgia, serif; font-size: 3.7rem; line-height: 1; }
.error-hero__visual i { color: var(--gold); font-size: 2.8rem; font-style: normal; }
.error-hero h1 { margin: 18px 0 10px; font-family: var(--serif); font-size: 1.5rem; }
.error-hero > p { color: var(--muted); font-size: .75rem; }
.error-hero__search { max-width: 580px; margin: 24px auto 0; }

/* Footer and mobile navigation */
.site-footer { padding: 48px 0 88px; border-top: 1px solid var(--line); background: #fff9fb; }
.site-footer__grid { display: grid; gap: 30px; }
.brand--footer { margin-bottom: 13px; }
.site-footer__about p { max-width: 390px; margin: 0; color: var(--muted); font-size: .72rem; }
.site-footer__about .site-footer__disclosure { margin-top: 14px; color: #705d68; font-size: .61rem; font-weight: 500; letter-spacing: .01em; line-height: 1.5; }
.site-footer h2 { margin: 0 0 9px; color: var(--pink-dark); font-size: .7rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer__grid > div:not(:first-child) > ul, .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 5px 18px; font-size: .7rem; }
.tag-cloud--footer a { padding: 2px 0; border: 0; background: transparent; }
.site-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 14px; margin-top: 35px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .58rem; }
.site-footer__meta-links { display: flex; align-items: center; gap: 16px; }
.bottom-nav { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; height: calc(58px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: repeat(5, 1fr); padding: 5px 3px env(safe-area-inset-bottom); border-top: 1px solid var(--line); background: rgba(255, 255, 255, .97); box-shadow: 0 -5px 18px rgba(93, 59, 75, .06); }
.bottom-nav a, .bottom-nav button { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; padding: 0; border: 0; background: transparent; color: var(--muted); font-size: .52rem; }
.bottom-nav span { height: 21px; color: #9b8993; font-size: 1.08rem; }
.bottom-nav .is-current, .bottom-nav .is-current span { color: var(--pink-dark); }

@media (min-width: 600px) {
  .shell { width: min(calc(100% - 48px), var(--shell)); }
  .card-grid--feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-related .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .post-navigation { grid-template-columns: 1fr 1fr; }
  .post-navigation__next { grid-column: 2; }
  .archive-links { grid-template-columns: 1fr 1fr; gap: 45px; }
  .term-intent-nav__grid { grid-template-columns: 1fr 1fr; }
  .category-pillar { padding: 30px; }
  .category-pillar__links { grid-template-columns: 1fr 1fr; }
  .single-topic-links__grid { grid-template-columns: 1fr 1fr; }
  .single-topic-links__category { grid-column: 1 / -1; }
  .static-page { padding: 42px 48px 55px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .site-header__inner { height: 72px; }
  .brand__name { font-size: 1.3rem; }
  .header-search-desktop { display: block; }
  .header-actions .js-search-toggle { display: none; }
  .header-actions .menu-toggle { width: 54px; }
  .header-actions .menu-toggle > span, .header-actions .menu-toggle > span + span { display: none; }
  .header-actions .menu-toggle small { display: block; color: var(--muted); font-family: Georgia, serif; font-size: .52rem; letter-spacing: .12em; }
  .global-nav__list { justify-content: flex-start; }
  .global-nav__list a { min-height: 44px; padding-inline: 22px; font-size: .78rem; }
  .global-nav__control { width: 38px; height: 38px; }
  .header-search { inset: 72px 0 auto; }
  .front-intro { flex-direction: row; align-items: flex-end; justify-content: space-between; padding-top: 38px; padding-bottom: 23px; }
  .front-intro h1, .listing-header h1 { font-size: 2rem; }
  .media-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 30px; align-items: start; padding-top: 30px; }
  .media-layout--single { grid-template-columns: minmax(0, 860px) 280px; }
  .term-diagnosis-cta { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
  .card-grid--feed { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .article-card__excerpt { min-height: 3.3em; -webkit-line-clamp: 2; }
.media-sidebar { margin-top: 0; content-visibility: auto; contain-intrinsic-size: 900px; }
  .single-post__header h1 { font-size: 2rem; }
  .entry-content { font-size: .98rem; }
  .same-category__list { grid-template-columns: 1fr 1fr; column-gap: 22px; }
  .site-footer { padding: 55px 0 25px; }
  .site-footer__grid { grid-template-columns: 1.45fr 1fr 1fr; gap: 45px; }
  .site-footer__grid > div:not(:first-child) > ul, .footer-links { grid-template-columns: 1fr; }
  .bottom-nav { display: none; }
  .floating-banner {
    right: 24px;
    bottom: 24px;
    width: 280px;
  }
}

@media (min-width: 1280px) {
  .media-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 34px; }
  .media-layout--single { grid-template-columns: minmax(0, 880px) 290px; }
  .floating-banner { width: 300px; }
}

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