:root {
  --ink: #181716;
  --muted: #6d6761;
  --line: #e8e1d8;
  --paper: #fffaf3;
  --surface: #ffffff;
  --accent: #e83f5f;
  --accent-dark: #8b1e3f;
  --sage: #71816d;
  --sky: #dcecf2;
  --shadow: 0 24px 70px rgba(43, 34, 28, 0.12);
  font-family:
    "Inter", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

body.dark-mode {
  --ink: #f8f3ec;
  --muted: #c6bbb0;
  --line: rgba(255, 255, 255, 0.16);
  --paper: #141312;
  --surface: #1e1b19;
  --accent: #ff6f8d;
  --accent-dark: #ffc3cf;
  --sage: #a9bea5;
  --sky: #1b282c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

body.dark-mode .site-header {
  background: rgba(20, 19, 18, 0.88);
  border-bottom-color: var(--line);
}

body.dark-mode .brand-mark {
  color: #181716;
  background: url("../img/vivid-mark.svg") center / contain no-repeat;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 40px;
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid rgba(232, 225, 216, 0.84);
  backdrop-filter: blur(18px);
}

body.nav-open .site-header {
  z-index: 1200;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: url("../img/vivid-mark.svg") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(217, 87, 112, 0.16);
  font-size: 0;
  overflow: hidden;
}

.brand-mark::before {
  display: none;
  width: 18px;
  height: 20px;
  content: "";
  background: #fff;
  clip-path: polygon(0 0, 34% 0, 50% 58%, 66% 0, 100% 0, 64% 100%, 36% 100%);
}

.brand-mark::after {
  display: none;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 6px;
  height: 6px;
  content: "";
  background: #ffdbe3;
  border-radius: 50%;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.global-nav a:hover {
  color: var(--accent);
}

.global-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav-links li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-head,
.mobile-nav-categories,
.mobile-nav-actions,
.nav-backdrop {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition:
    transform 0.24s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 72px));
  padding: 112px 40px 48px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 23, 22, 0.72), rgba(24, 23, 22, 0.18) 58%, rgba(24, 23, 22, 0.04)),
    linear-gradient(0deg, rgba(24, 23, 22, 0.52), rgba(24, 23, 22, 0.02) 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-content {
  align-self: center;
  width: min(680px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #ffdbe3;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-primary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.button-primary {
  color: var(--ink);
  background: #fff;
}

.button-ghost {
  color: #fff;
}

.hero-pick {
  align-self: end;
  justify-self: end;
  width: min(360px, 100%);
  padding: 22px;
  color: #fff;
  background: rgba(24, 23, 22, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.hero-pick span {
  color: #ffdbe3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-pick h2 {
  margin: 10px 0 14px;
  font-size: 20px;
  line-height: 1.45;
}

.hero-pick p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.search-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 24px;
  align-items: end;
  padding: 44px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.result-count {
  grid-column: 2;
  margin: -14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-band h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbf6ef;
  font: inherit;
  font-size: 15px;
}

.category-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 40px;
  overflow-x: auto;
  background: var(--surface);
}

.category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.category-chip.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.trend-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff3f0;
}

.trend-board article {
  min-height: 190px;
  border-right: 1px solid rgba(139, 30, 63, 0.14);
}

.trend-board a {
  display: block;
  height: 100%;
  padding: 28px;
}

.trend-board article:last-child {
  border-right: 0;
}

.trend-board span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.trend-board p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trend-board h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.feature-section,
.content-layout,
.archive-section,
.editorial-section,
.topics-section {
  padding: 82px 40px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto 34px;
}

.section-heading a {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.section-heading.compact {
  display: block;
  margin-bottom: 24px;
}

.section-heading.compact h2 {
  font-size: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}

.feature-card {
  min-height: 280px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card.large {
  grid-row: span 2;
  min-height: 584px;
}

.feature-card a {
  position: relative;
  display: block;
  height: 100%;
}

.feature-card a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(24, 23, 22, 0.78), rgba(24, 23, 22, 0.02) 62%);
}

.feature-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 26px;
  color: #fff;
}

.feature-card p,
.article-row p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 2.8vw, 38px);
  line-height: 1.3;
}

.feature-card:not(.large) h3 {
  font-size: 22px;
}

.feature-card span,
.article-row span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 52px;
  max-width: 1320px;
  margin: 0 auto;
}

.article-list {
  display: grid;
  gap: 16px;
}

.article-row {
  display: block;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.article-row > a {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
}

.article-row:hover,
.archive-card:hover,
.bento-card:hover {
  transform: translateY(-3px);
}

.empty-message {
  grid-column: 1 / -1;
  padding: 22px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.8;
}

body.dark-mode .empty-message {
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.article-row.is-hidden,
.feature-card.is-hidden,
.archive-card.is-hidden {
  display: none;
}

.article-row img {
  aspect-ratio: 1.35 / 1;
  border-radius: 6px;
}

.article-row h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.45;
}

.article-row span {
  color: var(--muted);
}

.side-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 26px;
  background: #f0f6f3;
  border: 1px solid #dbe7df;
  border-radius: 8px;
}

body.dark-mode .side-panel {
  color: #fff;
  background: #181f1d;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
}

.ranking-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ranking-list a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.ranking-list span {
  color: var(--sage);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.ranking-list p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

body.dark-mode .ranking-list p {
  color: rgba(255, 255, 255, 0.82);
}

.archive-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.archive-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(43, 34, 28, 0.11);
}

.archive-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.archive-card img {
  aspect-ratio: 1.25 / 1;
}

.archive-card div {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 18px;
}

.archive-card p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-card h3 {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.48;
}

.archive-card span {
  align-self: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.editorial-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.22;
  overflow-wrap: keep-all;
  word-break: keep-all;
}

.editorial-copy p:last-child {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.editorial-cards {
  display: grid;
  gap: 14px;
}

.editorial-cards a {
  display: block;
  padding: 24px;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
}

.editorial-cards p {
  margin: 0 0 10px;
  color: #ffc3cf;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-cards h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.topics-section {
  background: var(--sky);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 40px 56px;
  background:
    radial-gradient(circle at 84% 16%, rgba(232, 63, 95, 0.18), transparent 34%),
    linear-gradient(135deg, var(--surface), var(--paper));
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  content: "";
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 42% 58% 54% 46%;
  filter: blur(10px);
  opacity: 0.65;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: end;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--accent-dark);
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.04;
}

.article-hero {
  padding-top: 58px;
  padding-bottom: 58px;
}

.article-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  width: min(1180px, calc(100% - 80px));
  max-width: none;
  align-items: start;
}

.article-hero .breadcrumb,
.article-hero .section-kicker,
.article-hero h1,
.article-hero .page-lead,
.article-hero .page-meta {
  max-width: 980px;
}

.article-hero h1 {
  max-width: 960px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.article-hero .page-lead {
  font-size: 18px;
}

.article-hero .intent-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  gap: 14px;
  margin-top: 36px;
}

.article-hero .intent-panel div {
  display: block;
  min-height: 124px;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(232, 63, 95, 0.08), rgba(255, 255, 255, 0.72)),
    var(--paper);
  border-radius: 8px;
}

.article-hero .intent-panel span {
  margin-bottom: 18px;
}

.article-hero .intent-panel strong {
  font-size: 19px;
  line-height: 1.45;
  overflow-wrap: normal;
}

.article-hero .hero-dashboard {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  height: clamp(340px, 36vw, 460px);
  min-height: 0;
  margin-top: 40px;
}

.article-hero .hero-dashboard img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.article-hero .hero-dashboard::before {
  background:
    linear-gradient(90deg, rgba(24, 23, 22, 0.04), rgba(24, 23, 22, 0.8)),
    linear-gradient(135deg, rgba(232, 63, 95, 0.18), transparent 46%);
}

.article-hero .hero-dashboard-panel {
  position: relative !important;
  inset: auto !important;
  grid-column: 2;
  display: grid;
  align-content: end;
  z-index: 2;
  min-height: 300px;
  padding: 34px;
  color: #fff;
  opacity: 1;
  visibility: visible;
}

.article-hero .hero-dashboard-panel strong {
  font-size: clamp(34px, 5vw, 60px);
}

.article-hero .hero-dashboard-panel span {
  color: #ffdbe3;
}

.article-hero .hero-dashboard-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.article-hero-card {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 0;
  padding: 34px;
  color: #fff;
}

.article-hero-card span {
  display: block;
  margin-bottom: 12px;
  color: #ffdbe3;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-hero-card[style] span {
  display: block !important;
  margin-bottom: 12px !important;
  color: #ffdbe3 !important;
}

.article-hero-card strong {
  display: block;
  max-width: 420px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.04;
}

.article-hero-card[style] strong {
  display: block !important;
  max-width: 420px !important;
  color: #fff !important;
  font-size: clamp(34px, 4.6vw, 56px) !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
}

.article-hero-card p {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.article-hero-card[style] p {
  max-width: 420px !important;
  margin: 16px 0 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.page-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-meta span {
  padding: 8px 12px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-share--compact {
  margin-top: 18px;
}

.article-share--block {
  align-items: stretch;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  margin: 48px 0 0;
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.11), rgba(255, 255, 255, 0.76)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-share__heading {
  display: grid;
  gap: 6px;
  min-width: 170px;
}

.article-share__heading span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-share__heading strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.article-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-share--block .article-share__buttons {
  align-content: center;
  justify-content: flex-end;
}

.article-share__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.article-share__button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 62, 103, 0.42);
}

.article-share__button--copy.is-copied {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.mobile-article-utility {
  display: none;
}

.article-share--sidebar,
.article-share--mobile {
  display: grid;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.1), rgba(255, 255, 255, 0.8)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.toc-box + .article-share--sidebar {
  margin-top: 18px;
}

.article-share--sidebar + * {
  margin-top: 18px;
}

.article-share--sidebar .article-share__heading,
.article-share--mobile .article-share__heading {
  min-width: 0;
}

.article-share--sidebar .article-share__heading strong,
.article-share--mobile .article-share__heading strong {
  font-size: 18px;
}

.article-share--sidebar .article-share__buttons,
.article-share--mobile .article-share__buttons {
  display: grid;
  grid-template-columns: repeat(5, 48px);
  gap: 10px;
}

.article-share--sidebar .article-share__button,
.article-share--mobile .article-share__button {
  position: relative;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  box-shadow: 0 12px 28px rgba(20, 18, 17, 0.12);
}

.article-share__button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.article-share__button img {
  display: block;
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.article-share__button span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.article-share__button--x,
.article-share__button--threads,
.article-share__button--copy {
  color: #fff;
  background: #000;
}

.article-share__button--x img {
  width: 17px;
  height: 17px;
  filter: invert(1);
}

.article-share__button--line {
  color: #fff;
  background: #06c755;
}

.article-share__button--line img {
  width: 27px;
  height: 27px;
}

.article-share__button--facebook {
  color: #fff;
  background: #1877f2;
}

.article-share__button--facebook img {
  width: 25px;
  height: 25px;
}

.article-share__button--copy.is-copied {
  width: auto;
  min-width: 74px;
  padding: 0 14px;
  font-size: 12px;
}

.intent-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 560px;
  margin-top: 30px;
}

.intent-panel div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

body.dark-mode .intent-panel div {
  background: rgba(255, 255, 255, 0.07);
}

body.dark-mode .article-hero .intent-panel div {
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.16), rgba(255, 255, 255, 0.06)),
    #1c1816;
  border-color: rgba(255, 255, 255, 0.14);
}

.intent-panel span,
.bento-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.intent-panel span {
  margin-bottom: 0;
}

.intent-panel strong {
  display: block;
  min-height: 0;
  font-size: 16px;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero-dashboard {
  grid-column: 2;
  grid-row: 1 / span 6;
  align-self: stretch;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: #181716;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

body.dark-mode .hero-dashboard,
body.dark-mode .bento-card {
  background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .bento-card.dark {
  background: #050505;
}

.sub-column > :not(:first-child) {
  margin-top: 20px;
}

.sub-column > .theme-toggle + * {
  margin-top: 0;
}

.hero-dashboard img {
  position: absolute;
  inset: 0;
  height: 100%;
  transform: scale(1.04);
  transition: transform 400ms ease;
}

.hero-dashboard:hover img {
  transform: scale(1.08);
}

.hero-dashboard::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(0deg, rgba(24, 23, 22, 0.78), rgba(24, 23, 22, 0.08) 58%),
    linear-gradient(135deg, rgba(232, 63, 95, 0.42), transparent 46%);
}

.hero-dashboard::after {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 72px;
  height: 72px;
  content: "2026";
  display: grid;
  place-items: center;
  color: #181716;
  background: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.hero-dashboard-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
}

.hero-dashboard-panel span,
.side-card span,
.side-card-head span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-dashboard-panel span {
  color: #ffdbe3;
}

.hero-dashboard-panel strong {
  display: block;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
}

.hero-dashboard-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.article-shell,
.listing-shell,
.static-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 68px 0 86px;
}

.article-main,
.static-main {
  min-width: 0;
}

.article-cover {
  overflow: hidden;
  margin-bottom: 38px;
  border-radius: 8px;
}

.article-cover img {
  aspect-ratio: 1.78 / 1;
}

.article-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 42px;
}

.article-summary div {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-summary span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.article-summary p {
  margin: 10px 0 0;
  font-weight: 900;
  line-height: 1.55;
}

.article-body {
  color: var(--ink);
  font-size: 18px;
  line-height: 2.05;
}

.article-body h2 {
  position: relative;
  margin: 64px 0 22px;
  padding: 24px 28px;
  font-size: 32px;
  line-height: 1.38;
  background:
    linear-gradient(135deg, rgba(232, 63, 95, 0.12), rgba(255, 255, 255, 0.72)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-body h2::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 5px;
  background: var(--accent);
  border-radius: 0 999px 999px 0;
}

.article-body h3 {
  position: relative;
  margin: 42px 0 16px;
  padding: 0 0 12px;
  font-size: 25px;
  line-height: 1.45;
  border-bottom: 1px solid var(--line);
}

.article-body h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 72px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body ul {
  display: grid;
  gap: 12px;
  padding: 18px 22px;
  margin: 0 0 28px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-body ol {
  display: grid;
  gap: 12px;
  padding: 18px 22px 18px 44px;
  margin: 0 0 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-body li {
  position: relative;
  line-height: 1.85;
}

.article-body ul li {
  padding-left: 18px;
}

.article-body ul li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.article-body figure {
  margin: 38px 0;
}

.article-body .wp-block-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(28, 22, 18, 0.12);
}

.article-body img:not([class*="wp-image-"]) {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.article-body .wp-block-embed {
  margin: 38px 0;
}

.article-body .sns-reference-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(28, 22, 18, 0.08);
}

.article-body .sns-reference-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-body .sns-reference-card strong {
  font-size: 18px;
  line-height: 1.45;
}

.article-body .sns-reference-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.article-body .sns-reference-card a {
  justify-self: start;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}

.article-body blockquote {
  margin: 36px 0;
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: #fff3f0;
  border-radius: 8px;
  color: var(--accent-dark);
  font-weight: 800;
  line-height: 1.8;
}

.article-body table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.article-body th,
.article-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: #fbf6ef;
  font-weight: 900;
}

.article-body .wp-block-button {
  margin: 24px 0;
}

.article-body .wp-block-button__link {
  border-radius: 999px;
  font-weight: 900;
  padding: 12px 20px;
}

.quote-box {
  margin: 42px 0;
  padding: 28px;
  color: var(--accent-dark);
  background: #fff3f0;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.7;
}

body.dark-mode .quote-box {
  background: rgba(255, 111, 141, 0.12);
}

body.dark-mode .article-body h2,
body.dark-mode .article-body ul,
body.dark-mode .article-body ol {
  background: #1c1816;
  border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode .article-body blockquote {
  color: #fff7f2;
  background: rgba(255, 111, 141, 0.12);
}

body.dark-mode .article-body .wp-block-image img {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

body.dark-mode .article-body .sns-reference-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.16), rgba(255, 255, 255, 0.06)),
    #1c1816;
  border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode .article-body .sns-reference-card a {
  color: #181716;
  background: #fff7f2;
}

body.dark-mode .article-share--block,
body.dark-mode .article-share--sidebar,
body.dark-mode .article-share--mobile {
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.14), rgba(255, 255, 255, 0.05)),
    #1c1816;
  border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode .article-share__heading strong {
  color: #fff7f2;
}

body.dark-mode .article-share__button {
  border-color: transparent;
}

body.dark-mode .article-share__button--copy.is-copied {
  color: #181716;
  background: #fff7f2;
  border-color: #fff7f2;
}

.toc-box,
.profile-box,
.newsletter-box,
.filter-panel {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sub-column {
  position: sticky;
  top: 104px;
  align-self: start;
}

.sub-column > * + * {
  margin-top: 18px;
}

.widget-area > * + * {
  margin-top: 18px;
}

.toc-box + .profile-box,
.profile-box + .newsletter-box,
.newsletter-box + .smart-reco,
.smart-reco + .side-card,
.filter-panel .side-card,
.filter-panel .filter-block,
.newsletter-box .side-card,
.newsletter-box .filter-block {
  margin-top: 18px;
}

.toc-box h2,
.profile-box h2,
.newsletter-box h2,
.filter-panel h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.toc-box ol,
.filter-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc-box a,
.filter-panel a {
  color: var(--muted);
  font-weight: 800;
}

.profile-box {
  margin-top: 0;
}

.profile-box p,
.newsletter-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.newsletter-box {
  margin-top: 0;
  background: #f0f6f3;
}

body.dark-mode .newsletter-box {
  background: #23302d;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.theme-toggle {
  width: 100%;
  min-height: 44px;
  margin-bottom: 14px;
  color: #181716;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(43, 34, 28, 0.12);
}

body.dark-mode .theme-toggle {
  color: #181716;
  background: #ffdbe3;
  border-color: #ffdbe3;
  box-shadow: 0 0 0 3px rgba(255, 219, 227, 0.18);
}

.newsletter-form input,
.contact-form input,
.contact-form textarea,
.search-page-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 170px;
  padding-top: 14px;
  resize: vertical;
}

.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

body.dark-mode .solid-button {
  color: #181716;
  background: #ffffff;
}

.listing-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.category-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 16px;
  margin-bottom: 18px;
}

.category-feature-main {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
}

.category-feature-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(24, 23, 22, 0.82), rgba(24, 23, 22, 0.08) 62%);
}

.category-feature-main div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 30px;
}

.category-feature-main span,
.category-feature-stack span,
.category-lanes span {
  display: block;
  margin-bottom: 9px;
  color: #ffdbe3;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-feature-main h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
}

.category-feature-main p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

.category-feature-stack {
  display: grid;
  gap: 12px;
}

.category-feature-stack a {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 132px;
  padding: 20px;
  overflow: hidden;
  color: #fff;
  background: #181716;
  border-radius: 8px;
}

.category-feature-stack a::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(24, 23, 22, 0.82), rgba(24, 23, 22, 0.18) 62%),
    linear-gradient(135deg, rgba(232, 63, 95, 0.28), transparent);
}

.category-feature-stack img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.category-feature-stack span,
.category-feature-stack strong {
  position: relative;
  z-index: 1;
}

.category-feature-stack strong {
  font-size: 20px;
  line-height: 1.4;
}

.category-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 30px;
}

.category-lanes a {
  min-height: 150px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-lanes span {
  color: var(--accent);
}

.category-lanes strong {
  display: block;
  font-size: 22px;
  line-height: 1.35;
}

.category-lanes p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-nav-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-nav-card a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 8px;
}

.category-nav-card a.is-current {
  border-color: var(--accent);
  background: #fff3f0;
}

body.dark-mode .category-nav-card a.is-current {
  background: rgba(255, 111, 141, 0.12);
}

.category-nav-card a span {
  font-weight: 900;
}

.category-nav-card a em {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.category-nav-card a small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.bento-card {
  display: grid;
  align-content: space-between;
  min-height: 170px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.dark {
  color: #fff;
  background: #181716;
}

.bento-card strong {
  display: block;
  font-size: 23px;
  line-height: 1.35;
}

.bento-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.bento-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.listing-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pagination a,
.pagination span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  font-weight: 900;
}

.pagination span {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.search-page-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 24px;
  margin-bottom: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.query-cloud,
.policy-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.query-cloud a,
.policy-index a,
.filter-block a,
.smart-reco a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: var(--accent-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.filter-block {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.filter-block h2 {
  flex-basis: 100%;
}

.related-section {
  margin-top: 64px;
}

.side-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

body.dark-mode .side-card {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.side-card h2,
.side-card-head strong {
  display: block;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
}

.side-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

body.dark-mode .side-card p {
  color: rgba(255, 255, 255, 0.74);
}

.side-card > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 18px;
  padding: 0 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.side-rank > a {
  display: grid;
}

body.dark-mode .side-card:not(.side-rank) > a {
  color: #181716;
  background: #fff;
}

.side-rank {
  display: grid;
  gap: 12px;
}

.side-rank a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  min-height: auto;
  padding-top: 12px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  color: inherit;
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.side-rank em {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.side-rank p {
  font-weight: 900;
  line-height: 1.5;
}

.sponsor-card,
.editor-note {
  background:
    linear-gradient(135deg, rgba(232, 63, 95, 0.13), transparent),
    var(--surface);
}

body.dark-mode .sponsor-card,
body.dark-mode .editor-note {
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.18), rgba(255, 255, 255, 0.05)),
    #231818;
  border-color: rgba(255, 141, 164, 0.2);
}

.search-assist {
  display: grid;
  gap: 12px;
}

.search-assist label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-grid a,
.smart-reco {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.related-grid span,
.smart-reco p {
  display: block;
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-grid strong {
  line-height: 1.55;
}

.smart-reco {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.smart-reco h2 {
  flex-basis: 100%;
  margin: 0 0 8px;
  font-size: 20px;
}

.static-main {
  padding: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.static-main h2 {
  margin: 40px 0 14px;
  font-size: 28px;
}

.static-main h2:first-child {
  margin-top: 0;
}

.static-main p,
.static-main li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.static-main ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-intents {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  gap: 14px;
  margin: 0 0 34px;
}

.contact-intents div {
  display: block;
  min-height: 118px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(232, 63, 95, 0.08), transparent 62%),
    var(--paper);
  border-radius: 8px;
}

.contact-intents span {
  margin-bottom: 16px;
}

.contact-intents strong {
  font-size: 20px;
  line-height: 1.35;
  overflow-wrap: normal;
}

body.dark-mode .contact-intents div {
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.16), rgba(255, 255, 255, 0.05)),
    #181412;
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  padding: 14px 16px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.form-message-success {
  color: #315c41;
  background: #eef8f1;
}

.form-message-error {
  color: #8b1e3f;
  background: #fff3f0;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
}

.topic-cloud a {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 23, 22, 0.08);
  border-radius: 999px;
  font-weight: 800;
}

.site-footer {
  padding: 64px 40px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(232, 63, 95, 0.26), transparent 34%),
    linear-gradient(135deg, #141312 0%, #1d1918 52%, #0f1718 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.dark-mode .site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 111, 141, 0.24), transparent 34%),
    linear-gradient(135deg, #070707 0%, #171211 52%, #071213 100%);
  border-top-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  width: fit-content;
  color: #fff;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: url("../img/vivid-mark.svg") center / contain no-repeat;
}

.site-footer p {
  margin: 14px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-badges span,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(280px, 0.9fr);
  gap: 34px;
  padding: 38px 0;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #ff8da4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 10px;
}

.footer-column nav ul,
.footer-column nav li {
  display: contents;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 800;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact p {
  margin-top: 0;
}

.footer-cta {
  width: fit-content;
  margin-top: 18px;
  color: #181716 !important;
  background: #fff;
  border-color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
}

body.dark-mode .editorial-cards a {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.18), rgba(255, 255, 255, 0.07)),
    #171412;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

body.dark-mode .editorial-cards a p {
  color: #ff8da4;
}

body.dark-mode .topics-section {
  background: #171412;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.dark-mode .button-primary {
  color: #181716;
  background: #fff7f2;
  border-color: #fff7f2;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

body.dark-mode .button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

body.dark-mode .button-ghost:hover {
  background: rgba(255, 111, 141, 0.16);
  border-color: rgba(255, 141, 164, 0.48);
}

body.dark-mode .search-band {
  background: #181412;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

body.dark-mode .search-band h2 {
  color: #fff7f2;
}

body.dark-mode .search-box {
  color: rgba(255, 255, 255, 0.78);
}

body.dark-mode .category-strip {
  background: #151312;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.dark-mode .category-chip {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .category-chip:hover {
  color: #fff;
  background: rgba(255, 111, 141, 0.16);
  border-color: rgba(255, 141, 164, 0.38);
}

body.dark-mode .category-chip.is-active {
  color: #181716;
  background: #fff7f2;
  border-color: #fff7f2;
}

body.dark-mode .topic-cloud a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .topic-cloud a:hover {
  background: rgba(255, 111, 141, 0.18);
  border-color: rgba(255, 141, 164, 0.38);
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1230;
    display: grid;
    place-content: center;
    box-shadow: 0 14px 34px rgba(43, 34, 28, 0.12);
  }

  .menu-toggle span {
    margin: 3px auto;
  }

  body.nav-open .menu-toggle {
    color: #fff;
    background: #181716;
    border-color: rgba(255, 255, 255, 0.16);
  }

  body.nav-open .menu-toggle span {
    background: #fff;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 72px 0 0;
    z-index: 1210;
    display: block;
    padding: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 18% 12%, rgba(232, 63, 95, 0.18), transparent 30%),
      rgba(24, 23, 22, 0.48);
    border: 0;
    opacity: 0;
    backdrop-filter: blur(8px);
    transition: opacity 0.24s ease;
  }

  body.nav-open .nav-backdrop {
    pointer-events: auto;
    opacity: 1;
  }

  .global-nav {
    position: fixed;
    top: 84px;
    right: 14px;
    bottom: 14px;
    z-index: 1220;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    width: min(390px, calc(100vw - 28px));
    padding: 22px;
    color: var(--ink);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 249, 0.76)),
      var(--surface);
    border: 1px solid rgba(232, 225, 216, 0.9);
    border-radius: 18px;
    box-shadow: 0 34px 90px rgba(43, 34, 28, 0.28);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(22px) scale(0.98);
    transition:
      opacity 0.24s ease,
      transform 0.28s ease;
  }

  body.nav-open .global-nav {
    position: fixed !important;
    inset: 84px 14px 14px 14px !important;
    display: grid !important;
    width: auto !important;
    height: calc(100dvh - 98px) !important;
    min-height: 480px;
    max-height: calc(100dvh - 98px);
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  .global-nav::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
      linear-gradient(120deg, rgba(232, 63, 95, 0.1), transparent 42%),
      linear-gradient(0deg, rgba(113, 129, 109, 0.08), transparent 58%);
  }

  .mobile-nav-head {
    display: block;
    padding: 8px 2px 18px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-head span {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-nav-head strong {
    display: block;
    max-width: 260px;
    margin-top: 10px;
    font-size: 25px;
    line-height: 1.22;
  }

  .global-nav-links {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px 0;
    overflow-y: auto;
  }

  .global-nav-links li {
    display: block;
  }

  .global-nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
  }

  .global-nav-links a::after {
    content: ">";
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    font-size: 13px;
    line-height: 1;
  }

  .mobile-nav-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .mobile-nav-categories a {
    display: inline-grid;
    min-height: 36px;
    place-items: center;
    padding: 0 13px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-nav-actions a {
    display: grid;
    min-height: 48px;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-nav-actions a:nth-child(2) {
    color: var(--ink);
    background: #ffdbe3;
  }

  body.dark-mode .global-nav {
    color: var(--ink);
    background:
      linear-gradient(145deg, rgba(44, 31, 35, 0.96), rgba(24, 23, 22, 0.92)),
      var(--surface);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  }

  body.dark-mode .global-nav-links a,
  body.dark-mode .mobile-nav-categories a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }

  body.dark-mode .global-nav-links a::after {
    color: #181716;
    background: #fff7f2;
  }

  body.dark-mode .mobile-nav-actions a:nth-child(2) {
    color: #181716;
    background: #ffdbe3;
  }

  .hero {
    min-height: 680px;
    padding: 88px 20px 28px;
  }

  .hero-pick {
    justify-self: stretch;
    margin-top: 34px;
  }

  .search-band {
    grid-template-columns: 1fr;
    padding: 34px 20px;
  }

  .result-count {
    grid-column: auto;
    margin-top: 0;
  }

  .category-strip {
    padding: 18px 20px;
  }

  .feature-section,
  .content-layout,
  .archive-section,
  .editorial-section,
  .page-hero,
  .topics-section {
    padding: 58px 20px;
  }

  .article-shell,
  .listing-shell,
  .static-shell {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    padding: 48px 0 64px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .article-hero .hero-dashboard {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }

  .article-hero .hero-dashboard img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 230px;
    min-height: 0;
    object-fit: cover;
  }

  .article-hero .hero-dashboard-panel {
    grid-column: auto;
    min-height: auto;
  }

  .article-hero .intent-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-hero .intent-panel div {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    min-height: 68px;
    padding: 14px 16px;
    border-radius: 999px;
  }

  .article-hero .intent-panel span {
    margin-bottom: 0;
  }

  .article-hero .intent-panel strong {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .article-hero-card {
    grid-column: auto;
    height: auto;
    min-height: auto;
    padding: 28px;
  }

  .article-hero-card[style] {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-height: auto !important;
    padding: 28px !important;
  }

  .article-body .wp-block-image img {
    height: 280px;
  }

  .sub-column {
    position: static;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-feature,
  .category-lanes {
    grid-template-columns: 1fr;
  }

  .intent-panel,
  .article-summary,
  .related-grid {
    grid-template-columns: 1fr;
  }

  body.category .page-hero .intent-panel {
    grid-template-columns: 1fr;
  }

  body.category .page-hero .intent-panel div {
    grid-template-columns: 112px minmax(0, 1fr);
    align-content: center;
    min-height: 58px;
    padding: 12px 16px;
    border-radius: 999px;
  }

  body.category .page-hero .intent-panel span {
    margin-bottom: 0;
  }

  body.category .page-hero .intent-panel strong {
    font-size: 16px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.wide {
    grid-column: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 14px;
  }

  .feature-grid,
  .content-layout,
  .editorial-section,
  .footer-main,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-main {
    align-items: start;
  }

  .footer-badges {
    justify-content: flex-start;
  }

  .trend-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .trend-board article {
    border-bottom: 1px solid rgba(139, 30, 63, 0.14);
  }

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card.large {
    min-height: 440px;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  body.nav-open .global-nav {
    inset: 82px 10px 10px 10px !important;
    height: calc(100dvh - 92px) !important;
    min-height: 420px;
    max-height: calc(100dvh - 92px);
    padding: 20px;
    border-radius: 16px;
  }

  .mobile-nav-head strong {
    font-size: 22px;
  }

  .global-nav-links a {
    min-height: 52px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .article-row {
    grid-template-columns: 112px 1fr;
    gap: 14px;
    padding: 12px;
  }

  .article-row > a {
    grid-template-columns: 112px 1fr;
    gap: 14px;
  }

  .article-row h3 {
    font-size: 16px;
  }

  .article-row span {
    font-size: 12px;
  }

  .site-footer {
    padding: 44px 20px 28px;
  }

  .footer-main {
    gap: 24px;
    padding-bottom: 30px;
  }

  .footer-columns {
    gap: 28px;
    padding: 30px 0;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-badges span {
    min-height: 34px;
    padding: 0 12px;
  }

  .trend-board {
    grid-template-columns: 1fr;
  }

  .trend-board article {
    min-height: auto;
    border-right: 0;
  }

  .trend-board a {
    padding: 22px 20px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-card div {
    min-height: auto;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .article-hero h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .article-hero-inner {
    width: 100%;
  }

  .page-lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .article-body {
    font-size: 16px;
    line-height: 1.95;
  }

  .article-body h2 {
    margin: 48px 0 18px;
    padding: 20px 22px;
    font-size: 24px;
    line-height: 1.45;
  }

  .article-body h2::before {
    top: 18px;
    bottom: 18px;
    width: 4px;
  }

  .article-body h3 {
    margin: 34px 0 14px;
    font-size: 20px;
    line-height: 1.5;
  }

  .article-body li {
    font-size: 15px;
    line-height: 1.8;
  }

  .article-share--block {
    display: grid;
    padding: 20px;
  }

  .article-share__heading strong {
    font-size: 20px;
  }

  .article-share__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .article-share--compact .article-share__buttons {
    display: flex;
  }

  .article-share__button {
    min-height: 42px;
  }

  .mobile-article-utility {
    display: grid;
    gap: 16px;
    margin-top: 18px;
  }

  .sub-column > .toc-box,
  .sub-column > .article-share--sidebar {
    display: none;
  }

  .article-share--mobile .article-share__buttons {
    grid-template-columns: repeat(5, 48px);
    justify-content: start;
  }

  .article-share--mobile .article-share__button {
    width: 48px;
    min-width: 48px;
  }

  .article-hero .hero-dashboard img {
    height: 190px;
  }

  .article-hero-card[style] strong {
    font-size: 28px !important;
    line-height: 1.12 !important;
  }

  .article-hero-card[style] p {
    font-size: 13px !important;
  }

  .listing-grid,
  .search-page-form {
    grid-template-columns: 1fr;
  }

  .static-main {
    padding: 24px;
  }
}
