:root {
  --ink: #101010;
  --muted: #5c5a55;
  --paper: #f4efe6;
  --cream: #fbf8f1;
  --white: #fffdf8;
  --blue: #347ff4;
  --orange: #ff6946;
  --yellow: #ffbe22;
  --green: #15956d;
  --line: #151515;
  --container: 1180px;
  color: var(--ink);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 16px;
  border: 2px solid var(--line);
  background: var(--yellow);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.newsline {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: white;
  font-size: 12px;
}

.newsline-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.newsline strong {
  color: var(--yellow);
  letter-spacing: .08em;
}

.newsline span {
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsline a {
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid var(--line);
  background: rgba(251, 248, 241, .96);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.brand-mark {
  width: 40px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  background: var(--yellow);
  font-size: 14px;
  letter-spacing: -.02em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.primary-nav a {
  padding-block: 27px 24px;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  border-color: var(--orange);
}

.header-cta,
.button-dark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid var(--line);
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 4px 4px 0 var(--orange);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.header-cta:hover,
.button-dark:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--orange);
}

.menu-toggle {
  display: none;
}

.hero {
  border-bottom: 2px solid var(--line);
  background: var(--paper);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  min-height: 620px;
  padding-block: 46px 54px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 64px 22px 0;
  border-right: 2px solid var(--line);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.eyebrow,
.section-kicker,
.newsletter-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1.5px solid var(--line);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.hero h1 {
  max-width: 700px;
  margin: 24px 0 22px;
  font-size: clamp(54px, 5.2vw, 74px);
  line-height: .96;
  letter-spacing: -.075em;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-copy > p {
  max-width: 600px;
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.hero-search {
  max-width: 610px;
  display: flex;
  margin-top: 28px;
  border: 2px solid var(--line);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--line);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  padding: 15px 16px;
  border: 0;
  outline: 0;
  background: transparent;
}

.hero-search input:focus {
  box-shadow: inset 0 0 0 3px var(--blue);
}

.hero-search button,
.newsletter-form button,
.empty-state button {
  min-width: 116px;
  margin: 5px;
  border: 2px solid var(--line);
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 7px 11px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  align-self: center;
  margin-left: 44px;
  border: 2px solid var(--line);
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--line);
}

.hero-visual-head,
.hero-visual-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  border-bottom: 2px solid var(--line);
}

.hero-visual-head strong {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 15px;
  background: var(--blue);
  font-size: 16px;
  letter-spacing: -.02em;
}

.hero-visual-head span {
  padding: 0 15px;
  font-size: 12px;
  font-weight: 800;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--cream);
}

.hero-visual-foot {
  min-height: 46px;
  border-top: 2px solid var(--line);
  border-bottom: 0;
}

.hero-visual-foot span {
  flex: 1;
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual-foot span:nth-child(1) {
  background: var(--yellow);
}

.hero-visual-foot span:nth-child(2) {
  background: var(--orange);
}

.hero-visual-foot span:nth-child(3) {
  border-right: 0;
  background: var(--green);
  color: white;
}

.category-strip {
  border-bottom: 2px solid var(--line);
  background: var(--cream);
}

.category-list {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-list::-webkit-scrollbar {
  display: none;
}

.category-label {
  margin-right: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  white-space: nowrap;
}

.category-chip {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 14px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.category-chip:hover,
.category-chip.is-active {
  background: var(--blue);
  color: white;
}

.section {
  padding-block: 82px;
  border-bottom: 2px solid var(--line);
}

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

.editorial-heading > div {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.section-index {
  min-width: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  background: var(--ink);
  color: white;
  font-size: 19px;
  font-weight: 900;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.055em;
}

.section-heading > a {
  padding-bottom: 5px;
  border-bottom: 2px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.lead-stories {
  background: var(--cream);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .75fr);
  gap: 24px;
}

.lead-main {
  display: grid;
  grid-template-columns: minmax(260px, .92fr) minmax(0, 1.08fr);
  min-height: 440px;
  border: 2px solid var(--line);
  background: var(--white);
}

.lead-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-right: 2px solid var(--line);
  background: var(--blue);
  overflow: hidden;
}

.cover-label {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 6px 9px;
  border: 1.5px solid var(--line);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

.lead-visual strong {
  font-size: clamp(74px, 9vw, 126px);
  line-height: .8;
  letter-spacing: -.09em;
}

.lead-visual small {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.lead-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.article-meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lead-body h3 {
  margin: 16px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.lead-body p,
.mini-story p,
.post-row p,
.comparison-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--line);
  font-size: 13px;
  font-weight: 900;
}

.lead-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-story {
  position: relative;
  min-height: 240px;
  padding: 24px 24px 60px;
  border: 2px solid var(--line);
}

.mini-story-orange {
  background: var(--orange);
}

.mini-story-blue {
  background: var(--blue);
}

.mini-story h3 {
  margin: 14px 0 12px;
  font-size: 23px;
  line-height: 1.14;
  letter-spacing: -.035em;
}

.mini-story p {
  color: var(--ink);
  font-size: 13px;
}

.story-no {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.weekly-card {
  grid-column: 1 / -1;
  min-height: 184px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: stretch;
  border: 2px solid var(--line);
  background: var(--yellow);
}

.weekly-card > strong,
.weekly-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.weekly-card > div:last-child {
  border-right: 0;
}

.weekly-card span {
  font-size: 28px;
  font-weight: 900;
}

.weekly-card small {
  margin-top: 5px;
  font-size: 11px;
}

.tool-section {
  background: var(--paper);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}

.tool-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--cream);
  transition: transform 150ms ease;
}

.tool-card:hover {
  z-index: 2;
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--line);
}

.tool-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rank {
  font-size: 13px;
  font-weight: 900;
}

.tool-tag {
  padding: 5px 8px;
  border: 1.5px solid var(--line);
  background: white;
  font-size: 10px;
  font-weight: 900;
}

.tool-avatar {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-top: 28px;
  border: 2px solid var(--line);
  background: var(--yellow);
  font-size: 28px;
  font-weight: 900;
}

.tool-card-blue .tool-avatar {
  background: var(--blue);
  color: white;
}

.tool-card-orange .tool-avatar {
  background: var(--orange);
}

.tool-card-green .tool-avatar {
  background: var(--green);
  color: white;
}

.tool-card h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  letter-spacing: -.045em;
}

.tool-card > p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.tool-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.tool-meta span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tool-meta small {
  color: var(--muted);
  font-size: 10px;
}

.tool-meta strong {
  font-size: 19px;
}

.card-link {
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.empty-state {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--line);
  background: var(--cream);
}

.empty-state button {
  min-height: 42px;
  padding: 0 18px;
}

.ad-band {
  min-height: 98px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-block: 30px;
  padding: 22px 28px;
  border: 1.5px dashed var(--line);
  color: var(--muted);
}

.ad-band span,
.ad-band small {
  font-size: 10px;
  letter-spacing: .08em;
}

.ad-band strong {
  text-align: center;
  font-size: 13px;
}

.article-feed {
  background: var(--cream);
}

.feed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .7fr);
  gap: 32px;
}

.post-list {
  border-top: 2px solid var(--line);
}

.post-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  padding-block: 22px;
  border-bottom: 1.5px solid var(--line);
}

.post-thumb {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border: 1.5px solid var(--line);
}

.post-thumb-blue {
  background: var(--blue);
}

.post-thumb-orange {
  background: var(--orange);
}

.post-thumb-green {
  background: var(--green);
  color: white;
}

.post-thumb-yellow {
  background: var(--yellow);
}

.post-thumb span {
  align-self: flex-end;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.post-thumb strong {
  font-size: 13px;
}

.post-row-body {
  align-self: center;
}

.post-row h3 {
  margin: 10px 0;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -.04em;
}

.popular-panel {
  align-self: start;
  border: 2px solid var(--line);
  background: var(--paper);
}

.popular-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 2px solid var(--line);
  background: var(--blue);
  color: white;
}

.popular-head span {
  font-size: 11px;
  letter-spacing: .12em;
}

.popular-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 17px;
  border-bottom: 1px solid var(--line);
}

.popular-row span {
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
}

.popular-row strong {
  font-size: 14px;
  line-height: 1.5;
}

.popular-more {
  display: block;
  padding: 17px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.comparison-section {
  background: var(--paper);
}

.comparison-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  border: 2px solid var(--line);
}

.comparison-copy {
  padding: 42px;
  border-right: 2px solid var(--line);
  background: var(--orange);
}

.comparison-stamp {
  display: inline-block;
  padding: 6px 9px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 11px;
  font-weight: 900;
}

.comparison-copy h3 {
  margin: 24px 0 18px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: .98;
  letter-spacing: -.065em;
}

.comparison-copy p {
  color: var(--ink);
}

.comparison-copy .button-dark {
  margin-top: 28px;
  box-shadow: 4px 4px 0 var(--yellow);
}

.comparison-card {
  background: var(--cream);
}

.comparison-card-head {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 2px solid var(--line);
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.comparison-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-number {
  font-size: 25px;
  font-weight: 900;
}

.comparison-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.comparison-row strong {
  font-size: 18px;
}

.comparison-row small {
  color: var(--muted);
}

.comparison-row em {
  padding: 6px 9px;
  border: 1px solid var(--line);
  background: var(--yellow);
  font-size: 10px;
  font-style: normal;
}

.guide-section {
  background: var(--cream);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}

.guide-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.guide-card span {
  font-size: 12px;
  font-weight: 900;
}

.guide-card strong {
  margin-top: auto;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.guide-card small {
  margin-top: 12px;
  line-height: 1.5;
}

.guide-blue {
  background: var(--blue);
}

.guide-orange {
  background: var(--orange);
}

.guide-yellow {
  background: var(--yellow);
}

.guide-green {
  background: var(--green);
  color: white;
}

.newsletter {
  padding-block: 72px;
  border-bottom: 2px solid var(--line);
  background: var(--blue);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
}

.newsletter-label {
  background: var(--yellow);
  color: var(--ink);
}

.newsletter h2 {
  margin: 20px 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.065em;
}

.newsletter p {
  margin: 0;
  font-size: 16px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 2px solid var(--line);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--line);
}

.newsletter-form input {
  min-width: 0;
  padding: 17px;
  border: 0;
  outline: 0;
  background: transparent;
}

.newsletter-form button {
  min-height: 48px;
  padding: 0 20px;
  background: var(--yellow);
}

.newsletter-form small {
  grid-column: 1 / -1;
  padding: 0 17px 14px;
  color: var(--muted);
  font-size: 10px;
}

.subscribe-success {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  border: 2px solid var(--line);
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--line);
}

.subscribe-success strong {
  font-size: 28px;
}

.site-footer {
  padding-block: 58px 28px;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
}

.brand-footer .brand-mark {
  color: var(--ink);
}

.footer-grid p {
  max-width: 380px;
  color: #bdb9af;
  line-height: 1.7;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-columns > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-columns strong {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: .1em;
}

.footer-columns a {
  color: #d9d6cf;
  font-size: 13px;
}

.footer-grid > small {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid #414141;
  color: #8b8984;
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: 1fr 400px;
  }

  .hero-copy {
    padding-right: 38px;
  }

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

  .lead-grid,
  .feed-layout {
    grid-template-columns: 1fr;
  }

  .lead-side {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .weekly-card {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  .weekly-card > strong {
    grid-column: 1 / -1;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .newsline span {
    display: none;
  }

  .newsline-inner {
    justify-content: space-between;
  }

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

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    padding: 8px 11px;
    border: 1.5px solid var(--line);
    background: var(--yellow);
    font-size: 12px;
    font-weight: 800;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border: 2px solid var(--line);
    background: var(--cream);
    box-shadow: 6px 6px 0 var(--line);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-block: 24px 34px;
  }

  .hero-copy {
    padding: 22px 0 38px;
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .hero-visual {
    width: 100%;
    max-width: 600px;
    margin: 34px auto 0;
  }

  .section {
    padding-block: 60px;
  }

  .lead-main {
    grid-template-columns: 1fr;
  }

  .lead-visual {
    min-height: 300px;
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .lead-side {
    grid-template-columns: 1fr 1fr;
  }

  .weekly-card {
    grid-column: 1 / -1;
  }

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

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

  .comparison-copy {
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .newsline a {
    font-size: 11px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 36px;
    height: 31px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(40px, 11vw, 50px);
  }

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

  .hero-search {
    flex-direction: column;
  }

  .hero-search button {
    min-height: 46px;
  }

  .category-list {
    min-height: 66px;
  }

  .category-label {
    display: none;
  }

  .section {
    padding-block: 48px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .editorial-heading > div {
    width: 100%;
  }

  .section-index {
    min-width: 48px;
  }

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

  .lead-body {
    padding: 26px;
  }

  .lead-body h3 {
    font-size: 30px;
  }

  .lead-side {
    grid-template-columns: 1fr;
  }

  .mini-story {
    min-height: 220px;
  }

  .weekly-card {
    grid-column: auto;
  }

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

  .tool-card {
    min-height: 340px;
  }

  .ad-band {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .post-row {
    grid-template-columns: 112px 1fr;
    gap: 16px;
  }

  .post-thumb {
    min-height: 130px;
  }

  .post-thumb span {
    font-size: 30px;
  }

  .post-row h3 {
    font-size: 21px;
  }

  .post-row p {
    display: none;
  }

  .comparison-copy {
    padding: 28px;
  }

  .comparison-row {
    grid-template-columns: 40px 1fr;
  }

  .comparison-row em {
    display: none;
  }

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

  .guide-card {
    min-height: 210px;
  }

  .newsletter {
    padding-block: 52px;
  }

  .newsletter h2 {
    font-size: 42px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    min-height: 46px;
  }

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

  .footer-columns {
    gap: 24px;
  }
}

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

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