:root {
  color-scheme: light;
  --ink: #203038;
  --muted: #637982;
  --soft: #fff4df;
  --panel: #fffdf8;
  --line: #eadfcb;
  --accent: #4f8fd8;
  --accent-dark: #2867a8;
  --accent-soft: #eef6ff;
  --sky: #eef8fb;
  --coral: #ff7a59;
  --cream: #fff8ec;
  --cream-deep: #f8ecd8;
  --bg: #fff9ef;
  --shadow: 0 18px 54px rgba(123, 93, 54, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(255, 236, 198, 0.9), transparent 28rem),
    radial-gradient(circle at 96% 10%, rgba(207, 226, 255, 0.58), transparent 24rem),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 46%, #fffdf8 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: #0066cc;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:hover {
  opacity: 0.78;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(174, 137, 82, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 188px;
  min-height: 44px;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.button,
.chip-grid a,
.article-list a,
.category-card a,
.footer-links a,
.sidebar-box a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin: 22px clamp(14px, 4vw, 48px) 0;
  border: 1px solid rgba(79, 143, 216, 0.16);
  border-radius: 24px;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 64px) 44px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 246, 232, 0.96) 52%, rgba(235, 249, 245, 0.94) 100%);
  box-shadow: var(--shadow);
}

.hero-banner {
  display: block;
  position: relative;
  max-width: 1536px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.hero-banner::before,
.hero-banner::after {
  content: none;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-banner-links {
  position: absolute;
  right: 0;
  bottom: 6.6%;
  left: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  height: 17.8%;
  z-index: 2;
}

.hero-banner-links a {
  display: block;
  min-height: 44px;
  border: 1px solid transparent;
  text-decoration: none;
}

.hero-banner-links a:focus-visible {
  outline: 3px solid rgba(79, 143, 216, 0.86);
  outline-offset: -6px;
}

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

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  right: -80px;
  top: -70px;
  width: 280px;
  height: 280px;
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(135deg, rgba(79, 143, 216, 0.18), rgba(255, 122, 89, 0.12));
}

.hero::after {
  left: clamp(20px, 5vw, 64px);
  bottom: 22px;
  width: 220px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 122, 89, 0.78), transparent);
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

h3 {
  margin: 0;
  font-size: 20px;
}

.article-main h1,
.section-head h2,
.article-section h2,
.category-card h3,
.ranking-grid h3,
.sidebar-box h2,
.product-card h3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.article-main h1::before,
.section-head h2::before,
.article-section h2::before,
.category-card h3::before,
.ranking-grid h3::before,
.sidebar-box h2::before,
.product-card h3::before {
  flex: 0 0 auto;
  color: var(--accent);
  line-height: inherit;
}

.article-main h1::before {
  content: "■";
}

.section-head h2::before,
.article-section h2::before,
.sidebar-box h2::before {
  content: "●";
}

.category-card h3::before,
.ranking-grid h3::before,
.product-card h3::before {
  content: "◆";
  color: var(--coral);
}

.lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #f05f45);
  box-shadow: 0 10px 24px rgba(255, 122, 89, 0.22);
}

.button.secondary {
  color: var(--accent-dark);
  border: 1px solid rgba(79, 143, 216, 0.18);
  background: #ffffff;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: var(--soft);
  box-shadow: 0 24px 72px rgba(25, 80, 84, 0.16);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  position: relative;
  padding: clamp(42px, 7vw, 78px) clamp(20px, 5vw, 64px);
  scroll-margin-top: 112px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

.chip-grid a,
.chip-grid .coming-soon,
.article-list a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--panel);
  color: var(--accent-dark);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(25, 80, 84, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.chip-grid a:hover,
.article-list a:hover,
.category-card:hover,
.ranking-grid article:hover,
.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 143, 216, 0.34);
  box-shadow: var(--shadow);
}

.coming-soon {
  color: var(--accent-dark);
}

.coming-soon small {
  display: inline-block;
  margin-left: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.article-list .coming-soon,
.sidebar-box .coming-soon {
  display: block;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: #ffffff;
}

.button.is-disabled {
  color: var(--muted);
  background: #edf2f4;
  cursor: default;
}

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

.category-card,
.ranking-grid article,
.policy-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(25, 80, 84, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card::before,
.ranking-grid article::before,
.product-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
}

.category-card p,
.ranking-grid p,
.policy-card p {
  color: var(--muted);
}

.category-card a {
  color: var(--accent-dark);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 60px);
  background:
    linear-gradient(135deg, rgba(255, 246, 232, 0.94), rgba(233, 248, 242, 0.9));
}

.split-section p {
  color: var(--muted);
}

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

.ranking-grid span {
  color: var(--accent);
  font-weight: 900;
}

.ad-band {
  margin: 8px clamp(20px, 5vw, 64px) 56px;
  border: 1px dashed #b8c9cf;
  border-radius: 14px;
  padding: 14px;
  color: #7a8a92;
  background: #fff;
  text-align: center;
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 56px);
  padding: 48px clamp(20px, 5vw, 64px) 28px;
  color: var(--ink);
  border-top: 1px solid rgba(79, 143, 216, 0.16);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 218, 158, 0.36), transparent 18rem),
    linear-gradient(180deg, #fff6e8 0%, #fffdf8 100%);
}

.footer-brand__logo {
  width: 210px;
}

.footer-brand p {
  max-width: 360px;
  color: var(--muted);
}

.footer-disclosure {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-links h2 {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--accent-dark);
}

.footer-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin: 2px 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  border-top: 1px solid rgba(79, 143, 216, 0.16);
  padding-top: 20px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

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

.page-main {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 80px) 20px;
}

.page-main h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.page-main h2 {
  margin-top: 36px;
  font-size: 26px;
}

.page-main p,
.page-main li {
  color: var(--muted);
}

.page-main ul,
.page-main ol {
  padding-left: 1.4em;
}

.hero-title,
.concept-main h1 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.16;
  text-wrap: balance;
}

.hero-title {
  font-size: clamp(40px, 6vw, 68px);
}

.concept-main h1 {
  margin-bottom: 28px;
  font-size: clamp(34px, 5vw, 58px);
}

.concept-main h2 {
  display: grid;
  gap: 6px;
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid rgba(79, 143, 216, 0.18);
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.concept-main h2 span {
  color: var(--accent);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.concept-main .value-grid h3 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.notice {
  margin: 28px 0;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 0 14px 14px 0;
  background: #fff;
  box-shadow: 0 12px 30px rgba(25, 80, 84, 0.05);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(28px, 5vw, 56px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 70px) clamp(20px, 5vw, 64px);
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.article-main h1 {
  max-width: 820px;
  font-size: 32px;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 13px;
}

.article-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}

.article-section {
  margin-top: 44px;
}

.article-section h2 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.4;
}

.article-section h3 {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.5;
}

.summary-box,
.toc,
.affiliate-note,
.editor-profile {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 80, 84, 0.05);
}

.editor-profile {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 26px 0 18px;
}

.editor-profile__avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  font-size: 24px;
  font-weight: 800;
}

.editor-profile__image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--accent-soft);
}

.editor-profile--page {
  grid-template-columns: 112px minmax(0, 1fr);
}

.editor-profile--page .editor-profile__image {
  width: 112px;
  height: 112px;
}

.editor-profile__label {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.editor-profile h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.editor-profile p:last-child {
  margin: 0;
  color: var(--muted);
}

.summary-box {
  border-color: rgba(79, 143, 216, 0.24);
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-soft) 100%);
  margin: 28px 0;
}

.summary-box ul,
.toc ol {
  margin: 10px 0 0;
  padding-left: 1.4em;
}

.toc {
  margin: 26px 0;
}

.toc h2 {
  font-size: 20px;
}

.affiliate-note {
  margin: 28px 0;
  color: var(--muted);
  font-size: 14px;
  background: #fffaf7;
  border-color: rgba(255, 122, 89, 0.24);
}

.safe-cta {
  margin: 28px 0;
  text-align: center;
}

.safe-cta__caption {
  margin: 0 0 8px;
  color: #cf4e34;
  font-size: 12px;
  font-weight: 800;
}

.safe-cta .button {
  width: min(100%, 420px);
  min-height: 56px;
}

.comparison-table {
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.table-scroll {
  overflow-x: auto;
}

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

.comparison-table th {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 14px;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 80, 84, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.product-thumb__box {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 150px;
  border: 1px solid rgba(234, 223, 203, 0.9);
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 236, 0.96)),
    radial-gradient(circle at 88% 18%, rgba(79, 143, 216, 0.18), transparent 5rem);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.product-thumb__box::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 46px;
  height: 82px;
  border-radius: 12px 12px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(233, 248, 242, 0.9)),
    linear-gradient(90deg, var(--accent), var(--coral));
  border: 1px solid rgba(79, 143, 216, 0.22);
  box-shadow: 0 12px 24px rgba(123, 93, 54, 0.12);
}

.product-thumb__box::after {
  content: "";
  position: absolute;
  right: 29px;
  bottom: 30px;
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.7;
}

.product-thumb__brand,
.product-thumb__name,
.product-thumb__note {
  position: relative;
  z-index: 1;
}

.product-thumb__brand {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 9px;
  color: #ffffff;
  background: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.product-thumb__name {
  max-width: calc(100% - 62px);
  margin-top: 20px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.product-thumb__note {
  width: fit-content;
  margin-top: 12px;
  color: #9a6c2e;
  font-size: 11px;
  font-weight: 800;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.value-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(25, 80, 84, 0.05);
}

.value-grid h3 {
  color: var(--accent-dark);
}

.value-grid p {
  margin-bottom: 0;
}

.product-card .tag {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 800;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-card .button {
  min-height: 44px;
  font-size: 14px;
}

.product-actions {
  display: grid;
  gap: 8px;
}

.product-actions .button {
  width: 100%;
}

.product-button {
  width: 100%;
  border: 1px solid transparent;
  text-decoration: none !important;
}

.product-button--official {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 20px rgba(40, 103, 168, 0.16);
}

.product-button--official:hover {
  opacity: 1;
  background: linear-gradient(135deg, #66a7eb, var(--accent-dark));
}

.product-button--amazon {
  color: #232f3e;
  border-color: #e6a400;
  background: linear-gradient(180deg, #ffd978 0%, #ffb928 100%);
  box-shadow: 0 10px 20px rgba(255, 185, 40, 0.22);
}

.product-button--amazon:hover {
  opacity: 1;
  background: linear-gradient(180deg, #ffe08a 0%, #ffc23a 100%);
}

.legal-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.sidebar-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 80, 84, 0.05);
}

.sidebar-box h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.sidebar-box a {
  display: block;
  margin: 10px 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.category-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 74px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 122, 89, 0.12), transparent 18rem),
    linear-gradient(135deg, var(--cream), var(--accent-soft));
}

.category-hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 24px;
  width: 160px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
  opacity: 0.5;
}

.category-hero > * {
  max-width: 820px;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .site-footer,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .chip-grid,
  .card-grid,
  .ranking-grid,
  .product-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 166px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    scroll-margin-top: 166px;
  }

  .article-main h1 {
    font-size: 26px;
  }

  .article-section h2 {
    font-size: 22px;
  }

  .article-section h3 {
    font-size: 18px;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .editor-profile {
    grid-template-columns: 1fr;
  }

  .editor-profile--page {
    grid-template-columns: 1fr;
  }

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

  .chip-grid,
  .card-grid,
  .ranking-grid,
  .product-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
}
