:root {
  --ink: #0a1627;
  --ink-soft: #425066;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dfe4e7;
  --mint: #f2b9b3;
  --mint-deep: #a44752;
  --blue: #4c63f2;
  --orange: #ff8d5c;
  --violet: #8466ef;
  --pink: #ef77ad;
  --lime: #bfe95f;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(20, 31, 51, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1180px, 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;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(10, 22, 39, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px 11px 4px 11px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #344157;
}

.main-nav a,
.search-link {
  transition: color 160ms ease;
}

.main-nav a:hover,
.search-link:hover {
  color: var(--mint-deep);
}

.search-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
}

.search-link span {
  font-size: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at 4% 9%, rgba(242, 185, 179, 0.46), transparent 26%),
    radial-gradient(circle at 96% 82%, rgba(76, 99, 242, 0.12), transparent 24%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: radial-gradient(#20304a 0.6px, transparent 0.6px);
  background-size: 15px 15px;
  mask-image: linear-gradient(90deg, #000, transparent 55%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 72px;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-deep);
  box-shadow: 0 0 0 5px rgba(164, 71, 82, 0.12);
}

.hero h1 {
  max-width: 620px;
  margin: 22px 0 22px;
  font-size: clamp(54px, 5.3vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero-search {
  width: min(100%, 590px);
  min-height: 62px;
  margin-top: 34px;
  padding: 7px 7px 7px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ced6da;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(25, 43, 70, 0.08);
}

.hero-search > span {
  color: #667185;
  font-size: 24px;
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
}

.hero-search button,
.newsletter-form button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.hero-search button:hover,
.newsletter-form button:hover {
  transform: translateY(-1px);
  background: var(--mint-deep);
}

.trust-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #59677c;
  font-size: 12px;
  font-weight: 700;
}

.trust-row span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--mint-deep);
}

.featured-card {
  overflow: hidden;
  border: 1px solid rgba(10, 22, 39, 0.12);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  transition: transform 220ms ease;
}

.featured-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.featured-body {
  padding: 24px 27px 27px;
}

.featured-topline,
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #738095;
  font-size: 11px;
  font-weight: 700;
}

.featured-label {
  color: var(--mint-deep);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-card h2 {
  margin: 12px 0 10px;
  font-size: 27px;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.featured-card p {
  margin: 0 0 19px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.review-visual {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(145deg, #d9e0ff, #6075ef);
}

.review-visual[style] {
  background: linear-gradient(
    145deg,
    hsl(var(--visual-hue) 78% 86%),
    hsl(calc(var(--visual-hue) + 34deg) 66% 51%)
  );
}

.review-visual > img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-visual > .visual-window {
  min-height: 125px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.visual-large {
  min-height: 270px;
  padding: 34px;
}

.review-visual::before,
.review-visual::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.review-visual::before {
  top: -75px;
  right: -30px;
}

.review-visual::after {
  bottom: -115px;
  left: -35px;
}

.visual-mint {
  background: linear-gradient(145deg, #c9f7e6, #3eb893);
}

.visual-violet {
  background: linear-gradient(145deg, #e7defe, #8b6cf1);
}

.visual-orange {
  background: linear-gradient(145deg, #ffe2ce, #ff8652);
}

.visual-blue {
  background: linear-gradient(145deg, #dce9ff, #4b72e6);
}

.visual-pink {
  background: linear-gradient(145deg, #fde0ef, #ea6aa4);
}

.visual-lime {
  background: linear-gradient(145deg, #eef9c6, #9fce36);
}

.visual-window {
  position: relative;
  z-index: 2;
  width: 83%;
  min-height: 135px;
  margin: 3px auto 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 50px rgba(27, 39, 70, 0.22);
  transform: rotate(-3deg);
}

.visual-violet .visual-window {
  transform: rotate(3deg) translateY(4px);
}

.visual-orange .visual-window {
  transform: rotate(-1deg) translateX(-8px);
}

.visual-blue .visual-window {
  transform: rotate(2deg) translateX(8px);
}

.visual-pink .visual-window {
  transform: rotate(-4deg) translateY(7px);
}

.visual-lime .visual-window {
  transform: rotate(1deg) translateY(-2px);
}

.visual-dots {
  display: flex;
  gap: 5px;
}

.visual-dots i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #c3cad3;
}

.visual-content {
  padding: 18px 9px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.visual-badge {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.visual-lines {
  flex: 1;
}

.visual-lines i {
  height: 7px;
  display: block;
  margin: 7px 0;
  border-radius: 20px;
  background: #dfe3e7;
}

.visual-lines i:nth-child(2) {
  width: 82%;
}

.visual-lines i:nth-child(3) {
  width: 58%;
}

.visual-category {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 22, 39, 0.82);
  font-size: 10px;
  font-weight: 800;
}

.category-section,
.latest-section,
.method-section,
.newsletter-section {
  padding: 92px 0;
}

.category-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 34px;
}

.heading-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading h2,
.method-copy h2,
.newsletter-card h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

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

.category-card {
  min-height: 98px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition:
    transform 160ms ease,
    border 160ms ease,
    box-shadow 160ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: #dca39e;
  box-shadow: 0 12px 25px rgba(15, 42, 50, 0.08);
}

.category-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: #fbeeed;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 800;
}

.category-card:nth-child(2n) .category-icon {
  background: #eef0ff;
}

.category-card:nth-child(3n) .category-icon {
  background: #fff1e9;
}

.category-card strong,
.category-card small {
  display: block;
}

.category-card strong {
  font-size: 15px;
}

.category-card small {
  margin-top: 5px;
  color: #748095;
  font-size: 12px;
}

.category-card > i {
  margin-left: auto;
  color: #8b96a6;
  font-style: normal;
}

.latest-section {
  background: #f2f3ef;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  overflow: hidden;
  border: 1px solid #dbe0df;
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-image-link {
  display: block;
}

.review-card-body {
  padding: 23px 23px 20px;
}

.review-card h3 {
  margin: 10px 0 11px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.review-card h3 a:hover,
.featured-card h2 a:hover {
  color: var(--mint-deep);
}

.review-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.card-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #ecefed;
}

.method-section {
  color: #fff;
  background: var(--ink);
}

.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 105px;
  align-items: center;
}

.method-copy .eyebrow {
  color: var(--mint);
}

.method-copy p {
  max-width: 520px;
  margin: 20px 0 28px;
  color: #b6c1cf;
  font-size: 16px;
  line-height: 1.75;
}

.button-secondary {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.method-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.method-list li > span {
  color: var(--mint);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.method-list strong {
  font-size: 17px;
}

.method-list p {
  margin: 7px 0 0;
  color: #aeb9c6;
  font-size: 13px;
  line-height: 1.55;
}

.newsletter-section {
  padding-block: 70px;
  background: var(--white);
}

.newsletter-card {
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 25%, rgba(255, 255, 255, 0.5), transparent 28%),
    var(--mint);
}

.newsletter-card h2 {
  font-size: 38px;
}

.newsletter-card p {
  margin: 10px 0 0;
  color: #3c5a50;
  font-size: 14px;
}

.newsletter-form {
  min-width: 390px;
  padding: 6px;
  display: flex;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(13, 65, 51, 0.12);
}

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

.site-footer {
  padding-top: 64px;
  color: #c0c9d3;
  background: #07111f;
}

.brand-light {
  color: #fff;
}

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

.footer-grid > div:first-child p {
  max-width: 330px;
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 13px;
}

.footer-links span {
  margin-bottom: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links > strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  margin-top: 54px;
  padding: 20px 0 25px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f8a99;
  font-size: 11px;
}

.archive-hero,
.simple-hero {
  padding: 78px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(242, 185, 179, 0.2), transparent 26%),
    var(--ink);
}

.archive-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 90px;
}

.archive-hero .kicker,
.simple-hero .kicker {
  color: var(--mint);
}

.archive-hero h1,
.simple-hero h1 {
  max-width: 720px;
  margin: 17px 0 15px;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.archive-hero p,
.simple-hero p {
  max-width: 650px;
  margin: 0;
  color: #bac5d2;
  font-size: 17px;
  line-height: 1.7;
}

.archive-search {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.archive-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.archive-search > div {
  padding: 6px;
  display: flex;
  border-radius: 11px;
  background: #fff;
}

.archive-search input {
  min-width: 0;
  flex: 1;
  padding: 0 12px;
  border: 0;
  outline: 0;
}

.archive-search button {
  min-height: 44px;
  padding: 0 17px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 900;
  cursor: pointer;
}

.archive-content,
.related-section,
.prose-section {
  padding: 76px 0 96px;
}

.filter-row {
  margin-bottom: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-row a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #526075;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.filter-row a:hover,
.filter-row a.active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

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

.archive-summary h2 {
  margin: 0;
  font-size: 33px;
  letter-spacing: -0.04em;
}

.archive-summary span {
  color: #758095;
  font-size: 12px;
  font-weight: 800;
}

.empty-state {
  padding: 70px 30px;
  border: 1px dashed #bdc6c9;
  border-radius: 20px;
  text-align: center;
  background: #fff;
}

.empty-state strong {
  font-size: 24px;
}

.empty-state p {
  margin: 10px 0 24px;
  color: var(--ink-soft);
}

.single-header {
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0, rgba(242, 185, 179, 0.3), transparent 30%),
    #f7f7f2;
}

.single-header-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 80px;
}

.breadcrumbs {
  margin-bottom: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: #7a8492;
  font-size: 11px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--mint-deep);
}

.single-title h1 {
  margin: 13px 0 18px;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.single-title > p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.single-meta {
  margin-top: 27px;
  display: flex;
  gap: 24px;
  color: #748095;
  font-size: 12px;
  font-weight: 800;
}

.article-grid {
  padding-top: 72px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 200px minmax(0, 720px);
  justify-content: center;
  gap: 72px;
}

.article-aside {
  position: sticky;
  top: 110px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: #667286;
  font-size: 12px;
}

.article-aside span {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-aside > strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-aside a:hover {
  color: var(--mint-deep);
}

.article-content {
  font-family: Georgia, "Times New Roman", serif;
}

.article-content h2 {
  margin: 46px 0 17px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.article-content p {
  margin: 0 0 24px;
  color: #2c394c;
  font-size: 19px;
  line-height: 1.84;
}

.review-copy {
  color: #2c394c;
  font-size: 19px;
  line-height: 1.84;
}

.quick-take,
.bottom-line {
  padding: 32px 34px;
  border-radius: 18px;
}

.quick-take {
  border: 1px solid #e4b4ae;
  background: #fff2f0;
}

.quick-take > span {
  display: block;
  margin-bottom: 10px;
  color: var(--mint-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-take p,
.bottom-line p {
  margin: 0;
}

.bottom-line {
  margin-top: 48px;
  color: #fff;
  background: var(--ink);
}

.bottom-line .eyebrow {
  color: var(--mint);
  font-family: Arial, Helvetica, sans-serif;
}

.bottom-line h2 {
  margin-top: 12px;
  color: #fff;
}

.bottom-line p {
  color: #bec8d3;
}

.related-section {
  background: #f2f3ef;
}

.simple-hero {
  padding-block: 100px;
}

.narrow-shell {
  max-width: 820px;
}

.prose {
  font-family: Georgia, "Times New Roman", serif;
}

.prose h2 {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.prose h2:not(:first-child) {
  margin-top: 50px;
}

.prose p {
  color: #334055;
  font-size: 19px;
  line-height: 1.85;
}

.starter-card {
  padding: 45px;
  border: 1px solid rgba(10, 22, 39, 0.12);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.starter-card h2 {
  margin: 13px 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.starter-card p,
.muted {
  color: var(--ink-soft);
  line-height: 1.7;
}

.starter-card .button-secondary {
  margin-top: 12px;
  color: #fff;
  background: var(--ink);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .featured-card {
    width: min(100%, 610px);
    transform: none;
  }

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

  .method-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .newsletter-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-hero-grid,
  .single-header-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .single-header-grid .review-visual {
    width: min(100%, 650px);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

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

  .main-nav {
    display: none;
  }

  .search-link {
    margin-left: auto;
  }

  .hero {
    padding: 54px 0 62px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

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

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

  .hero-search {
    align-items: stretch;
  }

  .hero-search > span {
    align-self: center;
  }

  .hero-search button {
    padding-inline: 14px;
  }

  .category-section,
  .latest-section,
  .method-section,
  .newsletter-section {
    padding: 64px 0;
  }

  .heading-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading > p {
    text-align: left;
  }

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

  .newsletter-card {
    padding: 34px 25px;
  }

  .newsletter-form {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .archive-hero {
    padding-block: 58px;
  }

  .archive-hero h1,
  .simple-hero h1 {
    font-size: 46px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .article-aside {
    position: static;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
  }

  .article-content p {
    font-size: 17px;
  }

  .quick-take,
  .bottom-line {
    padding: 25px 22px;
  }
}
