:root {
  --pink: #ff2f78;
  --pink-strong: #ff1f68;
  --pink-soft: #fff0f6;
  --blue: #315ee9;
  --ink: #17151b;
  --muted: #69606d;
  --line: #f4ccd9;
  --shadow: 0 14px 34px rgba(255, 49, 123, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

@keyframes heroImageIn {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroCopyIn {
  from {
    transform: translateY(16px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(255, 47, 120, 0.34);
  }

  50% {
    box-shadow: 0 14px 36px rgba(255, 47, 120, 0.46);
  }
}

.page-shell {
  width: min(100%, 1122px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.site-header {
  min-height: 80px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #f0eef2;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100% - 56px, 1066px);
  min-height: 80px;
  margin: 0 auto;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  min-width: 258px;
}

.brand-main {
  display: block;
  color: var(--pink);
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
}

.brand-main span {
  color: var(--blue);
  font-size: 23px;
  margin-left: 1px;
}

.brand-sub {
  display: block;
  margin-top: 9px;
  color: #2c2a31;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: 30px;
  color: #121014;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  padding: 30px 0 27px;
}

.locale-en .global-nav {
  gap: 22px;
  margin-left: 14px;
  font-size: 11px;
}

.locale-en .brand-sub {
  white-space: normal;
}

.locale-en .card-body h3 {
  font-size: 10.2px;
}

.locale-en .card-body p {
  font-size: 9px;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 174px;
  height: 42px;
  margin-left: 0;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff3a7d 0%, #ff276f 100%);
  box-shadow: 0 8px 22px rgba(255, 47, 120, 0.32);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 47, 120, 0.38);
}

.heart-mark {
  font-size: 15px;
  line-height: 1;
}

.arrow-mark {
  margin-left: 2px;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.header-cta:hover .arrow-mark,
.read-more:hover span,
.side-button:hover span {
  transform: translateX(2px);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid #ffd0df;
  border-radius: 999px;
  background: #fff7fb;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 27px;
  height: 18px;
  padding: 0 6px;
  color: #7a6470;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.language-switcher a:hover,
.language-switcher a.is-current {
  color: #fff;
  background: var(--pink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid #ffd1df;
  border-radius: 999px;
  background: #fff;
}

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

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

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

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

.hero-image {
  position: relative;
  overflow: hidden;
  background: #120612;
}

.hero-image--visual {
  min-height: 420px;
  background-image: url("./assets/kawaii-hero-desktop-imagegen.png");
  background-position: center;
  background-size: cover;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 4, 11, 0.92) 0%, rgba(10, 4, 11, 0.72) 33%, rgba(10, 4, 11, 0.1) 63%, rgba(10, 4, 11, 0.05) 100%),
    linear-gradient(180deg, rgba(10, 4, 11, 0.08), rgba(10, 4, 11, 0.28));
  content: "";
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: clamp(420px, 48vw, 540px);
  object-fit: cover;
  object-position: center;
}

.motion-ready .hero-image--visual img {
  animation: heroImageIn 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-ready .hero-copy > * {
  animation: heroCopyIn 0.55s ease both;
}

.motion-ready .hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.motion-ready .hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.motion-ready .hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-copy {
  position: absolute;
  top: 36px;
  left: 44px;
  z-index: 2;
  width: 520px;
  max-width: calc(100% - 88px);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin: 0 0 21px;
  padding: 0 17px;
  color: #ff4d89;
  border: 1.6px solid #ff3d80;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-kicker,
.hero-heading {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
}

.hero-kicker {
  font-size: 32px;
}

.hero-heading {
  margin-top: 2px;
  font-size: 43px;
}

.locale-en .hero-heading {
  max-width: 620px;
  font-size: 39px;
  line-height: 1.14;
}

.hero-heading span {
  color: #ff3b7d;
  font-size: 54px;
  font-style: italic;
}

.hero-lead {
  width: 500px;
  margin: 18px 0 20px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.85;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: grid;
  grid-template-columns: 42px 82px;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ff3b7d;
  border: 2px solid #ff3b7d;
  border-radius: 999px;
  font-size: 23px;
  line-height: 1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
}

.hero-primary {
  gap: 10px;
  min-width: 230px;
  height: 48px;
  color: #fff;
  background: linear-gradient(180deg, #ff6b9a, #ff2f78);
  box-shadow: 0 12px 28px rgba(255, 47, 120, 0.36);
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.motion-ready .hero-primary {
  animation: softPulse 2.8s ease-in-out infinite;
}

.hero-primary:hover,
.hero-primary:focus-visible,
.hero-secondary:hover,
.hero-secondary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.side-button:hover,
.side-button:focus-visible,
.bottom-button:hover,
.bottom-button:focus-visible {
  filter: saturate(1.08);
  transform: translateY(-1px);
}

.hero-primary:active,
.hero-secondary:active,
.header-cta:active,
.side-button:active,
.bottom-button:active,
.read-more:active {
  transform: translateY(1px) scale(0.985);
}

.hero-primary span {
  font-size: 18px;
}

.hero-secondary {
  min-width: 150px;
  height: 38px;
  color: #fff;
  border: 1.4px solid rgba(255, 255, 255, 0.72);
  background: rgba(22, 8, 18, 0.24);
  font-size: 12px;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.discovery-panel,
.route-board {
  width: min(100% - 80px, 1042px);
  margin: 16px auto 0;
}

.discovery-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 14px 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid #ffd3e1;
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 47, 120, 0.14), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fff5f9 100%);
  box-shadow: 0 14px 34px rgba(255, 49, 123, 0.08);
}

.discovery-copy {
  display: grid;
  gap: 5px;
}

.discovery-copy span,
.discovery-search span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.discovery-copy h2 {
  margin: 0;
  color: #18151b;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}

.discovery-copy p,
.discovery-status {
  margin: 0;
  color: #514650;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.7;
}

.discovery-search {
  display: grid;
  gap: 8px;
}

.discovery-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  color: #18151b;
  border: 1.5px solid #ffbad0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.discovery-search input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 47, 120, 0.12);
}

.discovery-chips {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 8px;
}

.discovery-chips button,
.search-cluster-term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  color: #a30e46;
  border: 1px solid #ffbad0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.discovery-chips button:hover,
.discovery-chips button:focus-visible,
.discovery-chips button.is-active,
.search-cluster-term:hover,
.search-cluster-term:focus-visible {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
  transform: translateY(-1px);
}

.discovery-status {
  grid-column: 1 / -1;
}

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

.route-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 136px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #ffd3e1;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 246, 0.94)),
    #fff;
  box-shadow: 0 12px 28px rgba(29, 9, 17, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.route-card::after {
  position: absolute;
  inset: auto -20% -44% 42%;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 47, 120, 0.13);
  content: "";
  filter: blur(12px);
  transform: rotate(-12deg);
}

.route-card:hover,
.route-card:focus-visible {
  border-color: #ff9cbd;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.route-card span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
}

.route-card strong {
  color: #18151b;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.route-card small {
  color: #514650;
  font-size: 11.5px;
  font-weight: 750;
  line-height: 1.75;
}

.main-wrap {
  padding: 24px 0 12px;
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 47, 120, 0.07), transparent 25%),
    #fff;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 772px) 260px;
  gap: 10px;
  width: min(100% - 80px, 1042px);
  margin: 0 auto;
}

.article-column {
  min-width: 0;
}

.article-section + .article-section {
  margin-top: -7px;
}

.article-section.latest-section {
  margin-top: 18px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 33px;
  margin-bottom: 10px;
}

.section-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #18151b;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--pink);
  font-size: 18px;
  line-height: 1;
}

.section-icon.clock {
  border: 2px solid var(--pink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.section-head a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 18px;
  color: var(--pink);
  font-size: 11.5px;
  font-weight: 900;
}

.section-head a span {
  font-size: 18px;
  line-height: 1;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.post-card {
  position: relative;
  display: block;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 304px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(29, 9, 17, 0.035);
  cursor: pointer;
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.motion-ready .post-card,
.motion-ready .featured-pick-frame,
.motion-ready .next-read-card,
.motion-ready .taxonomy-card,
.motion-ready .article-takeaways,
.motion-ready .article-safety-check,
.motion-ready .article-inline-note {
  opacity: 1;
  transform: translateY(16px);
}

.motion-ready .post-card.is-visible,
.motion-ready .featured-pick-frame.is-visible,
.motion-ready .next-read-card.is-visible,
.motion-ready .taxonomy-card.is-visible,
.motion-ready .article-takeaways.is-visible,
.motion-ready .article-safety-check.is-visible,
.motion-ready .article-inline-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .post-card,
.motion-ready .featured-pick-frame,
.motion-ready .next-read-card {
  transition-delay: calc(var(--reveal-index, 0) * 40ms);
}

.post-card.is-filter-hidden {
  display: none;
}

.post-card::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
}

.post-card::before {
  position: absolute;
  top: 96px;
  left: 9px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: calc(100% - 18px);
  height: 24px;
  padding: 0 11px;
  overflow: hidden;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5a92 0%, #ff2670 100%);
  box-shadow: 0 5px 12px rgba(255, 47, 120, 0.3);
  content: attr(data-label);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-card:nth-child(2n)::before,
.latest-section .post-card:nth-child(4n)::before {
  background: linear-gradient(180deg, #8e62ff 0%, #6845d7 100%);
}

.post-card:hover,
.post-card:focus-visible {
  border-color: #ff9cbd;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.motion-ready .post-card.is-visible:hover,
.motion-ready .post-card.is-visible:focus-visible,
.motion-ready .featured-pick-frame.is-visible:hover,
.motion-ready .featured-pick-frame.is-visible:focus-within,
.motion-ready .next-read-card.is-visible:hover,
.motion-ready .next-read-card.is-visible:focus-visible {
  transform: translateY(-3px);
}

.post-card:focus-visible {
  outline: 3px solid rgba(255, 47, 120, 0.34);
  outline-offset: 3px;
}

.post-card > img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.post-card:hover > img,
.post-card:focus-visible > img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 176px;
  padding: 10px 11px 10px;
}

.card-body h3 {
  display: -webkit-box;
  min-height: 31px;
  max-height: 45px;
  margin: 0 0 6px;
  overflow: hidden;
  color: #18151b;
  font-size: 10.6px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow-wrap: anywhere;
}

.card-body p {
  display: -webkit-box;
  min-height: 40px;
  max-height: 45px;
  margin: 0 0 7px;
  overflow: hidden;
  color: #332e38;
  font-size: 9.4px;
  font-weight: 600;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow-wrap: anywhere;
}

.card-body time {
  margin-top: auto;
  color: #7b737e;
  font-size: 10.8px;
  font-weight: 600;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  align-self: flex-end;
  min-width: 105px;
  height: 28px;
  margin-top: 9px;
  color: var(--pink);
  border: 1.5px solid var(--pink);
  border-radius: 999px;
  background: #fff;
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.post-card:hover .read-more,
.post-card:focus-visible .read-more {
  color: #fff;
  background: var(--pink);
}

.read-more span,
.side-button span {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.post-card:hover .read-more span,
.post-card:focus-visible .read-more span {
  transform: translateX(2px);
}

.latest-section {
  padding-top: 0;
}

.latest-section .post-card {
  height: 290px;
}

.latest-section .card-body {
  height: 162px;
}

.bottom-banner {
  position: relative;
  display: block;
  overflow: hidden;
  width: calc(100% + 10px);
  margin-top: 14px;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(94, 41, 201, 0.18);
}

.bottom-banner img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.bottom-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(68, 24, 147, 0.45), rgba(255, 47, 120, 0.18));
  content: "";
}

.bottom-copy,
.bottom-button {
  position: absolute;
  z-index: 1;
}

.bottom-copy {
  top: 15px;
  left: 132px;
  color: #fff;
}

.bottom-copy strong,
.bottom-copy small {
  display: block;
  line-height: 1.2;
}

.bottom-copy strong {
  font-size: 16px;
  font-weight: 900;
}

.bottom-copy small {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 800;
}

.bottom-button {
  top: 18px;
  right: 155px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 170px;
  height: 38px;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 72, 137, 0.94), rgba(255, 39, 112, 0.92));
  box-shadow: 0 0 18px rgba(255, 47, 120, 0.72);
  font-size: 11.5px;
  font-weight: 900;
}

.bottom-button b {
  font-size: 16px;
  line-height: 1;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.welcome-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(21, 4, 12, 0.15);
}

.welcome-card img {
  width: 100%;
  height: 224px;
  object-fit: cover;
}

.welcome-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 3, 11, 0.3), rgba(7, 3, 11, 0.72));
  content: "";
}

.welcome-copy {
  position: absolute;
  inset: 24px 22px 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.welcome-copy strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.welcome-copy small {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.85;
}

.welcome-copy em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 34px;
  margin-top: 16px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff4c8b, #ff2d75);
  box-shadow: 0 0 16px rgba(255, 47, 120, 0.5);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.side-panel {
  padding: 18px 18px 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, #fff3f8 0%, #ffe8f1 100%);
}

.side-panel h2 {
  margin: 0 0 10px;
  color: #1a161d;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.category-list {
  display: grid;
  gap: 7px;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.category-list li {
  min-width: 0;
}

.category-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #2d2730;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.category-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  color: var(--pink);
  font-size: 15px;
  line-height: 1;
}

.side-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 180px;
  height: 32px;
  margin: 0 auto;
  color: var(--pink);
  border: 1.5px solid var(--pink);
  border-radius: 999px;
  background: #fff7fb;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.tag-panel {
  padding-bottom: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 7px;
  margin: 9px 0 11px;
}

.tag-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  color: var(--pink);
  border: 1.4px solid #ff8bb0;
  border-radius: 999px;
  background: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid #f1e7ec;
  background: linear-gradient(180deg, #fff 0%, #fff7fa 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(130px, 0.5fr) 266px;
  gap: 34px;
  align-items: start;
  width: min(100% - 80px, 1042px);
  min-height: 156px;
  margin: 0 auto;
  padding: 0;
}

.footer-logo {
  min-width: 0;
}

.footer-brand,
.footer-links {
  padding-top: 19px;
}

.footer-logo .brand-main {
  font-size: 29px;
}

.footer-logo .brand-main span {
  font-size: 20px;
}

.footer-logo .brand-sub {
  margin-top: 8px;
  font-size: 10px;
}

.socials {
  display: none;
  margin-top: 21px;
}

.socials img {
  width: 180px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}

.footer-language {
  margin-top: 12px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: #1b171e;
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.2;
}

.footer-links a {
  display: block;
  color: #2f2933;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.82;
}

.footer-links-divider {
  display: block;
  width: 38px;
  height: 1px;
  margin: 7px 0;
  background: #f3bfd0;
}

.footer-neon {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  margin-top: 0;
}

.footer-neon img {
  width: 266px;
  height: 155px;
  object-fit: cover;
}

.footer-neon::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42));
  content: "";
}

.footer-neon span {
  position: absolute;
  top: 31px;
  right: 20px;
  left: 20px;
  z-index: 1;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 12px #ff2f78, 0 0 22px #ff2f78;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.7;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  border-top: 1px solid #f3edf1;
  background: #fff;
}

.footer-bottom p {
  margin: 0;
  color: #625b65;
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom a {
  position: absolute;
  right: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #554d57;
  font-size: 10.5px;
  font-weight: 800;
}

.footer-bottom span {
  color: var(--pink);
  font-size: 18px;
  line-height: 1;
}

.archive-page,
.article-page {
  padding: 36px 0 44px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 47, 120, 0.07), transparent 24%),
    #fff;
}

.archive-hero,
.article-detail {
  width: min(100% - 80px, 1042px);
  margin: 0 auto;
}

.archive-hero {
  margin-bottom: 24px;
}

.archive-hero h1,
.article-detail-hero h1 {
  margin: 12px 0;
  color: #17121a;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.18;
}

.archive-hero p:not(.hero-pill),
.article-detail-hero > p:not(.hero-pill) {
  max-width: 660px;
  margin: 0;
  color: #342d38;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.archive-page .article-section {
  width: min(100% - 80px, 1042px);
  margin: 0 auto;
}

.taxonomy-section {
  width: min(100% - 80px, 1042px);
  margin: 0 auto;
}

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

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

.taxonomy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(29, 9, 17, 0.035);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.taxonomy-card:hover {
  border-color: #ff9cbd;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.taxonomy-card span {
  color: #18151b;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.taxonomy-card small {
  margin-top: 8px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
}

.article-detail {
  max-width: 930px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.article-back span,
.article-bottom-nav span {
  font-size: 16px;
  line-height: 1;
}

.article-detail-hero {
  padding-bottom: 26px;
  border-bottom: 1px solid #f5d7e2;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.article-meta time,
.article-meta span,
.article-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: var(--pink);
  border: 1px solid #ff9fc0;
  border-radius: 999px;
  background: #fff7fa;
  font-size: 11px;
  font-weight: 900;
}

.article-trust-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 47, 120, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 36px rgba(255, 47, 120, 0.09);
}

.article-trust-meta div {
  min-width: 0;
}

.article-trust-meta span {
  display: block;
  color: #7d6874;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.3;
}

.article-trust-meta strong {
  display: block;
  margin-top: 4px;
  color: #1e1720;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.article-trust-meta p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #3a3038;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.article-trust-checks {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.article-trust-checks span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--pink);
  border: 1px solid rgba(255, 47, 120, 0.38);
  border-radius: 999px;
  background: #fff7fb;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.article-detail-hero img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(31, 10, 18, 0.08);
}

.article-takeaways {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid #ffd0df;
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 47, 120, 0.12), transparent 34%),
    linear-gradient(135deg, #fff7fb 0%, #fff 100%);
  box-shadow: 0 14px 32px rgba(255, 47, 120, 0.08);
}

.article-takeaways span,
.article-section-title span,
.article-inline-note span,
.article-toc p,
.search-cluster-map > p {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 5px 10px;
  color: var(--pink);
  border: 1px solid #ff9fc0;
  border-radius: 999px;
  background: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.article-takeaways h2,
.article-section-title h2 {
  margin: 10px 0 0;
  color: #17121a;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.article-takeaways ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-takeaways li {
  position: relative;
  min-height: 36px;
  padding: 9px 12px 9px 34px;
  border: 1px solid #f8d8e3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #2f2933;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.article-takeaways li::before {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff5a92 0%, #ff2670 100%);
  box-shadow: 0 0 0 4px #ffe5ee;
  content: "";
}

.article-safety-check {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid #ead9c6;
  border-radius: 10px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 197, 78, 0.16), transparent 35%),
    linear-gradient(135deg, #fffaf2 0%, #fff 100%);
  box-shadow: 0 12px 28px rgba(94, 54, 12, 0.06);
}

.article-safety-check span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  color: #8d4d00;
  border: 1px solid #efc782;
  border-radius: 999px;
  background: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.article-safety-check strong {
  display: block;
  color: #17121a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.article-safety-check ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-safety-check li {
  position: relative;
  padding-left: 22px;
  color: #3c333d;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.75;
}

.article-safety-check li::before {
  position: absolute;
  top: 0.7em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb340;
  box-shadow: 0 0 0 4px #fff1d8;
  content: "";
}

.article-guide-layout {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.article-guide-layout--single {
  grid-template-columns: 1fr;
}

.article-guide-sidebar {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.article-toc,
.search-cluster-map {
  min-width: 0;
  padding: 15px;
  border: 1px solid #f4ccd9;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(29, 9, 17, 0.045);
}

.article-toc a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-top: 11px;
  color: #2f2933;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.55;
}

.article-toc a:hover,
.article-toc a:focus-visible,
.article-toc a.is-active {
  color: var(--pink);
}

.article-toc a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
  color: #fff;
  border-radius: 999px;
  background: #1b141d;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.article-toc a.is-active span {
  background: var(--pink);
  transform: scale(1.06);
}

.search-cluster {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.search-cluster strong {
  color: #18151b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.search-cluster div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.search-cluster div span,
.search-cluster div .search-cluster-term {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: #9b164b;
  border-radius: 999px;
  background: #ffe8f1;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.search-cluster div .search-cluster-term {
  border-color: transparent;
}

.search-cluster small {
  color: #6f6470;
  font-size: 10.5px;
  font-weight: 750;
  line-height: 1.65;
}

.article-guide-main {
  min-width: 0;
}

.article-body {
  padding: 0 0 8px;
}

.article-body section {
  scroll-margin-top: 88px;
}

.article-body section + section {
  margin-top: 32px;
}

.article-body h2 {
  margin: 0 0 10px;
  color: #17121a;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.article-body p {
  margin: 0;
  color: #2f2933;
  font-size: 15px;
  font-weight: 650;
  line-height: 2;
}

.article-body p + p {
  margin-top: 10px;
}

.article-inline-note {
  display: grid;
  gap: 8px;
  margin: 22px 0 4px;
  padding: 15px 16px;
  border: 1px solid #f6cbd9;
  border-left: 5px solid var(--pink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #fff5f9 0%, #fff 100%);
}

.article-inline-note strong {
  color: #18151b;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.article-inline-note p {
  margin: 0;
  color: #4a3f49;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.8;
}

.article-section-title {
  display: grid;
  gap: 0;
  margin-bottom: 14px;
}

.article-faq,
.article-next-reads {
  margin: 26px 0 28px;
  padding-top: 22px;
  border-top: 1px solid #f5d7e2;
}

.article-faq details {
  overflow: hidden;
  border: 1px solid #f4ccd9;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(29, 9, 17, 0.035);
}

.article-faq details + details {
  margin-top: 10px;
}

.article-faq summary {
  cursor: pointer;
  padding: 15px 18px;
  color: #18151b;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.article-faq summary::marker {
  color: var(--pink);
}

.article-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: #3c333d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
}

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

.next-read-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #f4ccd9;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(29, 9, 17, 0.045);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.next-read-card:hover,
.next-read-card:focus-visible {
  border-color: #ff9cbd;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.next-read-card:focus-visible {
  outline: 3px solid rgba(255, 47, 120, 0.34);
  outline-offset: 3px;
}

.next-read-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.next-read-card span {
  width: max-content;
  max-width: calc(100% - 22px);
  margin: 11px 11px 0;
  padding: 5px 9px;
  overflow: hidden;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5a92 0%, #ff2670 100%);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.next-read-card strong {
  display: -webkit-box;
  margin: 9px 11px 0;
  overflow: hidden;
  color: #18151b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.next-read-card small {
  display: -webkit-box;
  margin: 7px 11px 13px;
  overflow: hidden;
  color: #4a424c;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-picks {
  margin: 10px 0 28px;
  padding: 22px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 15, 22, 0.96) 0%, rgba(57, 19, 41, 0.95) 54%, rgba(255, 47, 120, 0.86) 100%),
    #17121a;
  box-shadow: 0 18px 42px rgba(31, 10, 18, 0.16);
}

.featured-picks-head {
  display: grid;
  gap: 7px;
  max-width: 620px;
  margin-bottom: 18px;
}

.featured-picks-head p {
  width: max-content;
  margin: 0;
  padding: 5px 11px;
  color: #ffdbe7;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.featured-picks-head h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.32;
}

.featured-picks-head span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.8;
}

.featured-picks-disclosure {
  display: block;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.7;
}

.featured-picks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.featured-compare {
  display: grid;
  gap: 0;
  margin: 0 0 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.featured-compare-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) minmax(160px, 1fr) minmax(180px, 1.2fr);
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 760;
  line-height: 1.55;
}

.featured-compare-row + .featured-compare-row {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.featured-compare-head {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.3;
}

.featured-compare-row strong,
.featured-compare-row small {
  min-width: 0;
}

.featured-compare-row strong {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.featured-compare-row small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.55;
}

.featured-pick-frame {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 8px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.featured-pick-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 10px;
  min-width: 0;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.featured-pick-card:hover,
.featured-pick-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.featured-pick-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.34);
  outline-offset: 3px;
}

.featured-pick-rank {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, #1a151d 0%, #39212d 100%);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.featured-pick-badge {
  align-self: center;
  width: max-content;
  max-width: 100%;
  padding: 4px 9px;
  overflow: hidden;
  color: #a30e46;
  border-radius: 999px;
  background: #ffe6ee;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-pick-card strong {
  color: #18151b;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.featured-pick-card p,
.featured-pick-card small,
.featured-pick-cta {
  grid-column: 1 / -1;
}

.featured-pick-card p {
  margin: 2px 0 0;
  color: #2f2933;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.75;
}

.featured-pick-card small {
  color: #6a5d66;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.65;
}

.featured-pick-checks {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.featured-pick-checks li {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: #9b164b;
  border-radius: 999px;
  background: #ffe8f1;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.featured-pick-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  min-width: 132px;
  min-height: 32px;
  margin-top: 3px;
  padding: 0 14px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5a92 0%, #ff2670 100%);
  box-shadow: 0 9px 18px rgba(255, 47, 120, 0.22);
  font-size: 11px;
  font-weight: 900;
}

.featured-pick-cta span {
  font-size: 15px;
  line-height: 1;
}

.pick-save {
  justify-self: start;
  min-height: 30px;
  padding: 0 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.pick-save:hover,
.pick-save:focus-visible,
.pick-save.is-saved {
  color: #a30e46;
  background: #fff;
  transform: translateY(-1px);
}

.featured-buy-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.featured-buy-flow strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.featured-buy-flow span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), #8e62ff);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.pick-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 10px;
  align-items: center;
  width: min(360px, calc(100vw - 36px));
  padding: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(23, 18, 26, 0.92);
  box-shadow: 0 18px 42px rgba(31, 10, 18, 0.26);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.pick-dock.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pick-dock strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.pick-dock small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10.5px;
  font-weight: 750;
  line-height: 1.55;
}

.pick-dock button {
  min-height: 30px;
  padding: 0 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 47, 120, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}

.interaction-toast {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 75;
  max-width: min(320px, calc(100vw - 36px));
  padding: 10px 13px;
  color: #fff;
  border-radius: 999px;
  background: rgba(23, 18, 26, 0.92);
  box-shadow: 0 14px 30px rgba(31, 10, 18, 0.2);
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.interaction-toast.is-open {
  opacity: 1;
  transform: translateY(0);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 24px;
}

.article-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid #f5d7e2;
}

.article-bottom-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5a92 0%, #ff2670 100%);
  box-shadow: 0 10px 22px rgba(255, 47, 120, 0.22);
  font-size: 12px;
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.motion-ready .reveal {
  opacity: 1;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  .header-inner {
    width: min(100% - 32px, 1066px);
    gap: 18px;
  }

  .global-nav {
    gap: 22px;
    margin-left: 8px;
  }

  .brand {
    min-width: 232px;
  }

  .brand-main {
    font-size: 31px;
  }

  .brand-main span {
    font-size: 21px;
  }

  .header-cta {
    width: 158px;
  }

  .header-actions {
    flex-basis: 158px;
  }

  .content-layout,
  .discovery-panel,
  .route-board,
  .footer-inner,
  .archive-hero,
  .archive-page .article-section,
  .taxonomy-section,
  .article-detail {
    width: min(100% - 36px, 1042px);
  }
}

@media (min-width: 941px) {
  .side-panel {
    height: 225px;
  }

  .tag-panel {
    height: 202px;
  }
}

@media (max-width: 940px) {
  .site-header {
    min-height: 72px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-sub {
    white-space: normal;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transform: translateY(-50%);
  }

  .nav-toggle span {
    width: 20px;
    margin: 0;
  }

  .global-nav {
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    z-index: 10;
    display: grid;
    width: fit-content;
    min-width: 176px;
    max-width: calc(100vw - 24px);
    margin: 0;
    padding: 5px;
    border: 1px solid #ffd4e1;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(31, 10, 18, 0.12);
    opacity: 0;
    transform: translateY(-6px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .global-nav.is-open {
    gap: 0;
    justify-content: stretch;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .global-nav a {
    min-width: 164px;
    min-height: 31px;
    padding: 6px 10px;
    border-radius: 8px;
    line-height: 1.2;
  }

  .global-nav a::after {
    display: none;
  }

  .global-nav a:hover,
  .global-nav a.is-active {
    color: var(--pink);
    background: #fff2f7;
  }

  .header-cta {
    width: 46px;
    min-width: 46px;
    padding: 0;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-left: auto;
    padding-right: 52px;
  }

  .header-actions .language-switcher {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .hero-image img {
    height: 250px;
    object-fit: cover;
    object-position: 62% center;
  }

  .hero-image::after {
    background:
      linear-gradient(90deg, rgba(10, 4, 11, 0.92) 0%, rgba(10, 4, 11, 0.78) 38%, rgba(10, 4, 11, 0.18) 72%, rgba(10, 4, 11, 0.08) 100%),
      linear-gradient(180deg, rgba(10, 4, 11, 0.08), rgba(10, 4, 11, 0.24));
  }

  .hero-copy {
    top: 30px;
    left: 36px;
    width: 430px;
    max-width: 52%;
  }

  .hero-pill {
    min-height: 30px;
    margin-bottom: 17px;
    padding: 0 15px;
    font-size: 12px;
  }

  .hero-kicker {
    font-size: 29px;
  }

  .hero-heading {
    font-size: 34px;
  }

  .hero-heading span {
    font-size: 45px;
  }

  .hero-lead {
    width: 410px;
    max-width: 100%;
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.65;
  }

  .hero-points {
    display: none;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .welcome-card {
    grid-row: span 2;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 20px;
  }

  .footer-neon {
    display: none;
  }

  .article-guide-layout {
    grid-template-columns: 1fr;
  }

  .article-guide-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    width: min(100% - 24px, 1066px);
  }

  .brand {
    min-width: 0;
  }

  .brand-main {
    font-size: 28px;
  }

  .brand-main span {
    font-size: 18px;
  }

  .brand-sub {
    display: none;
  }

  .main-wrap {
    padding-top: 18px;
  }

  .hero-image img {
    height: 190px;
  }

  .hero-copy {
    top: 28px;
    left: 20px;
    max-width: 235px;
  }

  .hero-pill {
    min-height: 25px;
    margin-bottom: 13px;
    padding: 0 13px;
    font-size: 10px;
  }

  .hero-kicker {
    font-size: 24px;
  }

  .hero-heading {
    font-size: 25px;
  }

  .hero-heading span {
    font-size: 34px;
  }

  .hero-lead,
  .hero-points {
    display: none;
  }

  .content-layout,
  .discovery-panel,
  .route-board,
  .footer-inner {
    width: min(100% - 24px, 1042px);
  }

  .discovery-panel {
    grid-template-columns: 1fr;
    margin-top: 12px;
    padding: 15px;
  }

  .route-board {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .route-card {
    min-height: 108px;
    padding: 15px;
  }

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

  .article-section.latest-section {
    margin-top: 34px;
  }

  .latest-section .article-grid {
    display: flex;
    gap: 14px;
    margin-right: -12px;
    padding: 2px 12px 12px 0;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .latest-section .article-grid::-webkit-scrollbar {
    height: 6px;
  }

  .latest-section .article-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #ff9cbd;
  }

  .post-card,
  .latest-section .post-card {
    height: auto;
  }

  .latest-section .post-card {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: start;
  }

  .post-card > img {
    height: 34vw;
    max-height: 156px;
    min-height: 116px;
  }

  .card-body,
  .latest-section .card-body {
    height: auto;
    min-height: 168px;
  }

  .post-card::before {
    top: 10px;
  }

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

  .welcome-card {
    grid-row: auto;
    max-width: 360px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2px;
    padding: 7px 12px;
  }

  .footer-bottom a {
    position: static;
  }

  .archive-page,
  .article-page {
    padding-top: 28px;
  }

  .archive-hero h1,
  .article-detail-hero h1 {
    font-size: 30px;
  }

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

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

  .article-body h2 {
    font-size: 20px;
  }

  .article-body p {
    font-size: 14px;
    line-height: 1.9;
  }

  .article-takeaways {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .article-safety-check {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .article-trust-meta {
    grid-template-columns: 1fr;
    padding: 13px;
  }

  .article-guide-sidebar {
    grid-template-columns: 1fr;
  }

  .next-read-grid {
    grid-template-columns: 1fr;
  }

  .next-read-card {
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: start;
  }

  .next-read-card img {
    grid-row: span 4;
    height: 100%;
    min-height: 132px;
  }

  .next-read-card span,
  .next-read-card strong,
  .next-read-card small {
    margin-left: 12px;
    margin-right: 12px;
  }

  .featured-picks {
    padding: 16px;
  }

  .featured-picks-head h2 {
    font-size: 21px;
  }

  .featured-picks-grid {
    grid-template-columns: 1fr;
  }

  .featured-compare-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

}

@media (max-width: 480px) {
  .header-inner {
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  .article-grid {
    display: flex;
    gap: 14px;
    width: auto;
    max-width: none;
    margin-right: -12px;
    padding: 2px 12px 12px 0;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .article-grid.has-scroll-hint {
    padding-bottom: 14px;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 44px), transparent 100%);
  }

  .article-grid.has-scroll-hint.is-scroll-end {
    mask-image: none;
  }

  .article-grid .post-card + .post-card {
    margin-top: 0;
  }

  .article-grid::-webkit-scrollbar {
    height: 6px;
  }

  .article-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #ff9cbd;
  }

  .post-card,
  .latest-section .post-card {
    flex: 0 0 min(78vw, 300px);
    width: auto;
    max-width: none;
    scroll-snap-align: start;
  }

  .pick-dock {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .interaction-toast {
    right: 12px;
    bottom: 78px;
  }

  .section-head h2 {
    font-size: 20px;
  }

  .section-head a {
    padding-right: 0;
  }

  .post-card > img {
    width: 100%;
    height: auto;
    aspect-ratio: 183 / 128;
    max-height: none;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .card-body,
  .latest-section .card-body {
    min-height: 168px;
  }

  .card-body h3,
  .card-body p {
    display: block;
    overflow: visible;
    max-height: none;
    -webkit-line-clamp: unset;
  }

  .read-more {
    align-self: flex-start;
    min-width: 128px;
  }

  .bottom-copy {
    top: 12px;
    left: 18px;
    right: 18px;
  }

  .bottom-copy strong {
    font-size: 13px;
  }

  .bottom-copy small {
    display: none;
  }

  .bottom-button {
    top: 36px;
    right: 18px;
    min-width: 152px;
    height: 28px;
    font-size: 10px;
  }

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

  .archive-grid {
    display: flex;
  }

  .archive-hero,
  .archive-page .article-section,
  .taxonomy-section,
  .article-detail {
    width: min(100% - 24px, 1042px);
  }

  .taxonomy-link-grid {
    grid-template-columns: 1fr;
  }

  .archive-hero h1,
  .article-detail-hero h1 {
    font-size: 26px;
  }

  .article-detail-hero img {
    max-height: 310px;
  }

  .article-takeaways h2,
  .article-section-title h2 {
    font-size: 20px;
  }

  .article-toc,
  .search-cluster-map,
  .article-inline-note {
    padding: 14px;
  }

  .next-read-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .next-read-card img {
    min-height: 128px;
  }

  .article-bottom-nav a {
    width: 100%;
  }
}

.hero-image--reference::after {
  display: none;
}

.hero-image--reference img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-image--visual {
  min-height: 420px;
}

.hero-image--visual picture {
  display: block;
}

.hero-image--visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) saturate(1.04);
}

.hero-image--visual::after {
  background:
    linear-gradient(90deg, rgba(12, 5, 13, 0.7) 0%, rgba(12, 5, 13, 0.45) 34%, rgba(12, 5, 13, 0.04) 62%, transparent 100%),
    linear-gradient(180deg, rgba(12, 5, 13, 0.04), rgba(12, 5, 13, 0.12));
}

@media (max-width: 940px) {
  .hero-image--visual {
    min-height: 390px;
  }

  .hero-image--visual img {
    height: 390px;
    object-position: 57% center;
  }

  .hero-image--visual .hero-copy {
    max-width: min(440px, calc(100% - 56px));
  }

  .hero-image--visual .hero-heading {
    font-size: 38px;
  }

  .hero-image--visual .hero-heading span {
    font-size: 50px;
  }
}

@media (max-width: 720px) {
  .hero-image--visual {
    min-height: 520px;
  }

  .hero-image--visual img {
    height: 520px;
    object-position: 50% 22%;
  }

  .hero-image--visual::after {
    background:
      linear-gradient(180deg, rgba(12, 5, 13, 0.72) 0%, rgba(12, 5, 13, 0.42) 42%, rgba(12, 5, 13, 0.1) 76%, transparent 100%),
      linear-gradient(90deg, rgba(12, 5, 13, 0.42), transparent 72%);
  }

  .hero-image--visual .hero-copy {
    top: 34px;
    left: 22px;
    width: auto;
    max-width: min(330px, calc(100% - 44px));
  }

  .hero-image--visual .hero-pill {
    margin-bottom: 14px;
  }

  .hero-image--visual .hero-heading {
    font-size: 31px;
    line-height: 1.12;
  }

  .hero-image--visual .hero-heading span {
    font-size: 42px;
  }

  .hero-image--visual .hero-lead {
    display: block;
    width: auto;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-primary {
    min-width: 230px;
    height: 44px;
    font-size: 13px;
  }

  .hero-secondary {
    min-width: 132px;
  }

  .bottom-banner {
    width: 100%;
  }

  .bottom-banner img {
    height: 96px;
  }

  .bottom-copy {
    top: 17px;
    left: 22px;
    right: 245px;
  }

  .bottom-button {
    top: 29px;
    right: 22px;
    min-width: 190px;
  }
}

@media (max-width: 480px) {
  .hero-image--visual {
    min-height: 540px;
  }

  .hero-image--visual img {
    height: 540px;
  }

  .hero-image--visual .hero-copy {
    top: 28px;
    left: 18px;
    max-width: calc(100% - 36px);
  }

  .hero-image--visual .hero-heading {
    font-size: 27px;
  }

  .hero-image--visual .hero-heading span {
    font-size: 38px;
  }

  .hero-image--visual .hero-lead {
    max-width: 300px;
  }

  .bottom-banner img {
    height: 92px;
  }

  .bottom-copy {
    top: 12px;
    left: 18px;
    right: 18px;
  }

  .bottom-button {
    top: 51px;
    right: auto;
    left: 18px;
    min-width: 184px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .motion-ready .reveal,
  .motion-ready .post-card,
  .motion-ready .featured-pick-frame,
  .motion-ready .next-read-card,
  .motion-ready .taxonomy-card,
  .motion-ready .article-takeaways,
  .motion-ready .article-safety-check,
  .motion-ready .article-inline-note,
  .motion-ready .hero-copy > * {
    opacity: 1;
    transform: none;
  }
}
