:root {
  --guide-ink: #211b19;
  --guide-muted: #6e625e;
  --guide-paper: #fffdfb;
  --guide-soft: #f9efea;
  --guide-rose: #ad514f;
  --guide-coral: #d77970;
  --guide-sage: #356f63;
  --guide-blue: #dce8f4;
  --guide-gold: #d7ae4e;
  --guide-line: #e9dcd6;
  --guide-shadow: 0 18px 50px rgba(50, 32, 27, 0.12);
}

body.guides-page,
body.guide-article-page {
  background: var(--guide-paper);
  color: var(--guide-ink);
}

.guide-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #efe6e1;
}

.guide-hero picture,
.guide-hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.guide-hero picture img {
  object-fit: cover;
  object-position: center;
}

.guide-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 253, 251, 0.98) 0%, rgba(255, 253, 251, 0.9) 34%, rgba(255, 253, 251, 0.25) 65%, rgba(255, 253, 251, 0.04) 100%);
}

.guide-hero-inner {
  position: relative;
  z-index: 1;
  width: min(720px, 52vw);
  margin-right: auto;
  padding: 76px 7vw 66px 5vw;
  direction: rtl;
}

.guide-kicker {
  margin: 0 0 12px;
  color: var(--guide-rose);
  font-size: 18px;
  font-weight: 900;
}

.guide-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #2c201d;
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: 1.02;
}

.guide-hero-summary {
  max-width: 680px;
  margin: 24px 0 0;
  color: #4f403b;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 650;
  line-height: 1.55;
}

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

.guide-back-link {
  position: absolute;
  top: 24px;
  right: clamp(18px, 4vw, 58px);
  z-index: 2;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(97, 72, 64, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.92);
  color: #3b2d29;
  box-shadow: 0 10px 26px rgba(50, 32, 27, 0.12);
  backdrop-filter: blur(12px);
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.guide-back-link span[aria-hidden="true"] {
  font-size: 22px;
  line-height: 1;
}

.guide-back-link:hover {
  transform: translateX(3px);
  background: #fff;
  box-shadow: 0 14px 32px rgba(50, 32, 27, 0.17);
}

.guide-primary-link,
.guide-secondary-link,
.guide-tool-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.guide-primary-link,
.guide-tool-button {
  background: var(--guide-rose);
  color: #fff;
  box-shadow: 0 14px 30px rgba(173, 81, 79, 0.24);
}

.guide-secondary-link {
  border-color: #bfa9a0;
  background: rgba(255, 255, 255, 0.72);
  color: #332824;
}

.guide-primary-link:hover,
.guide-secondary-link:hover,
.guide-tool-button:hover {
  transform: translateY(-2px);
}

.guide-meta-bar {
  border-top: 1px solid #eaded8;
  border-bottom: 1px solid #eaded8;
  background: #fff9f6;
}

.guide-meta-inner {
  display: flex;
  width: min(1240px, calc(100% - 36px));
  min-height: 66px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #665751;
  font-size: 16px;
  font-weight: 700;
}

.guide-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.guide-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.guide-breadcrumbs a {
  color: var(--guide-rose);
  font-weight: 850;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 64px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

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

.guide-toc {
  align-self: start;
  position: sticky;
  top: 116px;
  padding-right: 26px;
  border-right: 3px solid var(--guide-line);
}

.guide-toc strong {
  display: block;
  margin-bottom: 14px;
  color: #362b27;
  font-size: 18px;
}

.guide-toc a {
  display: block;
  padding: 7px 0;
  color: #766760;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.guide-toc a:hover,
.guide-toc a.is-active {
  color: var(--guide-rose);
}

.guide-quick-answer {
  margin-bottom: 54px;
  padding: 30px 34px;
  border-right: 5px solid var(--guide-sage);
  background: #eff7f4;
}

.guide-quick-answer h2 {
  margin: 0 0 8px;
  color: #254e45;
  font-size: 28px;
}

.guide-quick-answer p {
  margin: 0;
  color: #3f5d56;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.65;
}

.guide-section {
  scroll-margin-top: 120px;
  padding: 54px 0;
  border-top: 1px solid var(--guide-line);
}

.guide-section:first-of-type {
  border-top: 0;
}

.guide-section > h2 {
  margin: 0 0 18px;
  color: #302522;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.14;
}

.guide-section > h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 16px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--guide-rose), var(--guide-sage));
}

.guide-section > h3,
.guide-subsection h3 {
  margin: 34px 0 10px;
  color: #43342f;
  font-size: 26px;
  line-height: 1.25;
}

.guide-section p,
.guide-section li {
  color: #554944;
  font-size: 19px;
  line-height: 1.75;
}

.guide-section p {
  margin: 0 0 18px;
}

.guide-section ul,
.guide-section ol {
  margin: 18px 0 26px;
  padding-right: 25px;
}

.guide-section li + li {
  margin-top: 8px;
}

.guide-lead {
  color: #3f3430 !important;
  font-size: 22px !important;
  font-weight: 650;
}

.guide-highlight {
  padding: 28px 30px;
  border: 1px solid #ead4c9;
  border-radius: 8px;
  background: #fff5ef;
}

.guide-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: #7d3f3c;
  font-size: 21px;
}

.guide-comparison {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  border: 1px solid var(--guide-line);
  background: #fff;
  font-size: 17px;
}

.guide-comparison th,
.guide-comparison td {
  padding: 17px 16px;
  border-bottom: 1px solid var(--guide-line);
  text-align: right;
  vertical-align: top;
}

.guide-comparison th {
  background: #f7ece6;
  color: #493631;
  font-weight: 900;
}

.guide-comparison td {
  color: #5c4f49;
}

.guide-comparison tr:last-child td {
  border-bottom: 0;
}

.guide-decision-grid,
.guide-related-grid,
.guides-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.guide-decision-card,
.guide-related-card,
.guides-index-card {
  min-width: 0;
  border: 1px solid var(--guide-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(50, 32, 27, 0.07);
}

.guide-decision-card {
  padding: 24px;
}

.guide-decision-card h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.guide-decision-card p {
  margin: 0;
  font-size: 17px;
}

.guide-inline-image {
  margin: 34px 0;
}

.guide-inline-image img {
  width: 100%;
  max-height: 560px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--guide-shadow);
}

.guide-inline-image figcaption {
  margin-top: 10px;
  color: #776963;
  font-size: 14px;
}

.guide-photo-break,
.guide-photo-story {
  margin: 52px 0;
}

.guide-photo-break picture,
.guide-photo-story picture {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #ede7e2;
}

.guide-photo-break img,
.guide-photo-story img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-photo-break picture {
  aspect-ratio: 8 / 5;
  box-shadow: 0 28px 64px rgba(67, 47, 40, 0.16);
}

.guide-photo-break figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0 26px;
  padding: 18px 0 0;
  color: #665750;
  font-size: 16px;
  line-height: 1.6;
}

.guide-photo-label,
.guide-photo-kicker {
  color: var(--guide-rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.guide-photo-label {
  padding-left: 18px;
  border-left: 1px solid #ddcfc7;
  white-space: nowrap;
}

.guide-photo-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #e4d7d0;
  border-radius: 8px;
  background: #f8f1ed;
  box-shadow: 0 22px 52px rgba(67, 47, 40, 0.1);
}

.guide-photo-story picture {
  min-height: 380px;
  border-radius: 0;
}

.guide-photo-story figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 36px;
}

.guide-photo-story strong {
  display: block;
  margin: 10px 0 14px;
  color: #302522;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.2;
}

.guide-photo-story p {
  margin: 0;
  color: #665750;
  font-size: 17px;
  line-height: 1.7;
}

.guide-checklist-tool {
  margin: 32px 0;
  border: 1px solid #d9d0ca;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--guide-shadow);
  overflow: hidden;
}

.guide-checklist-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  background: #f3ebe6;
}

.guide-checklist-head h3 {
  margin: 0 0 4px;
  font-size: 25px;
}

.guide-checklist-head p {
  margin: 0;
  font-size: 16px;
}

.guide-checklist-progress {
  min-width: 120px;
  color: var(--guide-sage);
  font-size: 18px;
  font-weight: 900;
  text-align: left;
}

.guide-checklist-group {
  padding: 26px 28px;
  border-top: 1px solid var(--guide-line);
}

.guide-checklist-group h4 {
  margin: 0 0 14px;
  color: #433631;
  font-size: 20px;
}

.guide-checklist-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  color: #554944;
  cursor: pointer;
}

.guide-checklist-item input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--guide-sage);
}

.guide-checklist-item span {
  font-size: 17px;
  line-height: 1.45;
}

.guide-checklist-item:has(input:checked) span {
  color: #8b817c;
  text-decoration: line-through;
}

.guide-source-box {
  margin: 30px 0 0;
  padding: 24px 28px;
  border-right: 4px solid #7c9cad;
  background: #eef4f7;
}

.guide-source-box h3 {
  margin: 0 0 8px;
  color: #2f5566;
  font-size: 21px;
}

.guide-source-box p,
.guide-source-box li {
  color: #4c6671;
  font-size: 16px;
}

.guide-source-box a {
  color: #2d6279;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-coupon-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin: 38px 0;
  padding: 32px 34px;
  border-radius: 8px;
  background: #3b665e;
  color: #fff;
}

.guide-coupon-band h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 26px;
}

.guide-coupon-band p {
  margin: 0;
  color: #e9f4f0;
  font-size: 17px;
}

.guide-coupon-band a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: #fff;
  color: #284f47;
  font-weight: 900;
  white-space: nowrap;
}

.guide-related-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
}

.guide-related-card img {
  width: 112px;
  height: 100%;
  min-height: 128px;
  object-fit: contain;
  padding: 14px;
  background: #faf7f5;
}

.guide-related-card div {
  padding: 20px 18px;
}

.guide-related-card h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.guide-related-card p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.4;
}

.guide-related-card span {
  color: var(--guide-rose);
  font-size: 15px;
  font-weight: 900;
}

.guide-faq details {
  padding: 22px 0;
  border-top: 1px solid var(--guide-line);
}

.guide-faq details:last-child {
  border-bottom: 1px solid var(--guide-line);
}

.guide-faq summary {
  color: #3b302c;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.guide-faq details p {
  margin: 14px 0 0;
  font-size: 17px;
}

.guide-disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--guide-line);
  color: #7b6f69;
  font-size: 15px;
  line-height: 1.6;
}

.guides-index-intro {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0 30px;
  text-align: center;
}

.guides-index-intro h2 {
  max-width: 920px;
  margin: 0 auto 16px;
  font-size: clamp(34px, 4vw, 56px);
}

.guides-index-intro p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--guide-muted);
  font-size: 20px;
}

.guides-index-grid {
  width: min(1240px, calc(100% - 36px));
  margin: 26px auto 92px;
}

.guides-index-card {
  display: grid;
  grid-template-rows: 260px auto;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guides-index-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(50, 32, 27, 0.14);
}

.guides-index-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.guides-index-card-copy {
  padding: 28px;
}

.guides-index-card-copy small {
  color: var(--guide-rose);
  font-weight: 900;
}

.guides-index-card-copy h2 {
  margin: 8px 0 9px;
  font-size: 29px;
  line-height: 1.18;
}

.guides-index-card-copy p {
  margin: 0 0 16px;
  color: var(--guide-muted);
  font-size: 17px;
}

.guides-index-card-copy span {
  color: var(--guide-sage);
  font-weight: 900;
}

.guides-principles {
  padding: 72px 18px;
  border-top: 1px solid var(--guide-line);
  border-bottom: 1px solid var(--guide-line);
  background: #f2f7f5;
}

.guides-principles-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.guides-principles h2 {
  margin: 0;
  color: #284d45;
  font-size: clamp(34px, 4vw, 52px);
}

.guides-principles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
}

.guides-principles-list div {
  padding-top: 14px;
  border-top: 2px solid #9fbeb5;
}

.guides-principles-list strong {
  display: block;
  margin-bottom: 4px;
  color: #315f55;
}

.guides-principles-list p {
  margin: 0;
  color: #57716a;
  font-size: 16px;
}

.home-guides-section {
  padding: 88px 56px 96px;
  border-top: 1px solid #eaded8;
  border-bottom: 1px solid #eaded8;
  background: #fffdfb;
}

.home-guides-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto 34px;
}

.home-guides-head h2 {
  max-width: 900px;
  margin: 4px 0 10px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
}

.home-guides-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #6e625e;
  font-size: 20px;
}

.home-guides-all {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid #baa39a;
  border-radius: 8px;
  color: #473732;
  font-weight: 900;
}

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

.home-guide-card {
  display: grid;
  grid-template-rows: 190px auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--guide-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(50, 32, 27, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(50, 32, 27, 0.14);
}

.home-guide-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.home-guide-card div {
  padding: 22px;
}

.home-guide-card small {
  color: var(--guide-rose);
  font-weight: 900;
}

.home-guide-card h3 {
  margin: 7px 0 8px;
  font-size: 23px;
  line-height: 1.2;
}

.home-guide-card p {
  margin: 0 0 12px;
  color: var(--guide-muted);
  font-size: 16px;
  line-height: 1.45;
}

.home-guide-card span {
  color: var(--guide-sage);
  font-weight: 900;
}

.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: 0;
  height: 4px;
  background: var(--guide-rose);
  pointer-events: none;
}

.guide-meta-list a,
.guides-editorial-note a,
.editorial-content a {
  color: var(--guide-deep-green);
  font-weight: 700;
  text-underline-offset: 4px;
}

.guides-editorial-note {
  grid-column: 1 / -1;
  max-width: 850px;
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid #bfd4ce;
  color: #3f5c55;
  font-size: 17px;
  line-height: 1.7;
}

.guides-editorial-note a {
  color: #214a42;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.guides-editorial-note a:hover,
.guides-editorial-note a:focus-visible {
  color: #923f3d;
}

.editorial-policy-hero {
  padding: 88px 20px 80px;
  background: #f6ece9;
  border-bottom: 1px solid var(--guide-line);
}

.editorial-policy-hero-inner,
.editorial-content {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
}

.editorial-policy-hero h1 {
  max-width: 760px;
  margin: 12px 0 20px;
  color: var(--guide-ink);
  font-family: "Heebo", "Assistant", sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
}

.editorial-policy-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--guide-muted);
  font-size: 21px;
  line-height: 1.75;
}

.editorial-content {
  padding: 72px 0 92px;
}

.editorial-content section {
  padding: 42px 0;
  border-bottom: 1px solid var(--guide-line);
}

.editorial-content section:first-child {
  padding-top: 0;
}

.editorial-content section:last-child {
  border-bottom: 0;
}

.editorial-content h2 {
  margin: 0 0 18px;
  color: var(--guide-ink);
  font-family: "Heebo", "Assistant", sans-serif;
  font-size: 32px;
  line-height: 1.2;
}

.editorial-content h3 {
  margin: 24px 0 8px;
  color: var(--guide-ink);
  font-size: 21px;
}

.editorial-content p,
.editorial-content li {
  color: var(--guide-muted);
  font-size: 18px;
  line-height: 1.85;
}

.editorial-content ol,
.editorial-content ul {
  margin: 20px 0 0;
  padding-right: 24px;
}

.editorial-content li + li {
  margin-top: 12px;
}

.editorial-disclosure {
  padding: 28px 30px;
  background: #edf4f1;
  border-right: 4px solid var(--guide-deep-green);
}

@media (max-width: 1100px) {
  .guide-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .guide-toc {
    position: static;
    grid-row: 1;
    column-count: 2;
    padding: 22px 26px;
    border: 1px solid var(--guide-line);
    border-radius: 8px;
    background: #fff;
  }

  .guide-toc strong {
    column-span: all;
  }

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

@media (max-width: 780px) {
  .editorial-policy-hero {
    padding: 62px 0 56px;
  }

  .editorial-policy-hero-inner,
  .editorial-content {
    width: min(100% - 32px, 920px);
  }

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

  .editorial-policy-hero p:last-child {
    font-size: 18px;
  }

  .editorial-content {
    padding: 52px 0 72px;
  }

  .editorial-content section {
    padding: 34px 0;
  }

  .editorial-content h2 {
    font-size: 28px;
  }

  .editorial-disclosure {
    padding: 24px 20px;
  }

  .guide-back-link {
    top: 16px;
    right: 16px;
    min-height: 42px;
    padding: 8px 13px;
    font-size: 14px;
  }

  .guide-hero {
    min-height: 660px;
    align-items: flex-end;
  }

  .guide-hero picture img {
    object-position: 63% center;
  }

  .guide-hero::after {
    background: linear-gradient(0deg, rgba(255, 253, 251, 0.99) 0%, rgba(255, 253, 251, 0.94) 46%, rgba(255, 253, 251, 0.18) 78%, rgba(255, 253, 251, 0.04) 100%);
  }

  .guide-hero-inner {
    width: 100%;
    padding: 230px 18px 38px;
  }

  .guide-hero h1 {
    font-size: 42px;
    line-height: 1.06;
  }

  .guide-hero-summary {
    font-size: 19px;
  }

  .guide-hero-actions {
    display: grid;
  }

  .guide-primary-link,
  .guide-secondary-link,
  .guide-tool-button {
    width: 100%;
  }

  .guide-meta-inner,
  .guide-meta-list {
    display: grid;
  }

  .guide-meta-inner {
    padding: 14px 0;
  }

  .guide-layout {
    width: min(100% - 28px, 1240px);
    padding: 42px 0 72px;
  }

  .guide-toc {
    column-count: 1;
  }

  .guide-quick-answer,
  .guide-highlight,
  .guide-checklist-head,
  .guide-checklist-group,
  .guide-source-box,
  .guide-coupon-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  .guide-section {
    padding: 42px 0;
  }

  .guide-section p,
  .guide-section li {
    font-size: 18px;
  }

  .guide-photo-break,
  .guide-photo-story {
    margin: 38px 0;
  }

  .guide-photo-break picture {
    aspect-ratio: 4 / 3;
  }

  .guide-photo-break figcaption {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin: 0 8px;
    font-size: 15px;
  }

  .guide-photo-label {
    padding-left: 0;
    border-left: 0;
  }

  .guide-photo-story {
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-photo-story picture {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .guide-photo-story figcaption {
    padding: 28px 24px 30px;
  }

  .guide-comparison-wrap {
    margin: 26px -14px;
    overflow-x: auto;
  }

  .guide-comparison {
    min-width: 720px;
    margin: 0;
  }

  .guide-decision-grid,
  .guide-related-grid,
  .guides-index-grid,
  .guides-principles-inner,
  .guides-principles-list,
  .home-guides-grid,
  .home-guides-head,
  .guide-coupon-band,
  .guide-checklist-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-checklist-progress {
    text-align: right;
  }

  .guide-related-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .guide-related-card img {
    width: 96px;
  }

  .guides-index-intro {
    padding-top: 54px;
  }

  .guides-index-card {
    grid-template-rows: 210px auto;
  }

  .guides-index-card img {
    height: 210px;
  }

  .guides-principles {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .home-guides-section {
    padding: 62px 18px 70px;
  }

  .home-guides-all {
    width: 100%;
  }

  .home-guide-card {
    grid-template-rows: 180px auto;
  }

  .home-guide-card img {
    height: 180px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .credit-strip,
  .guide-hero-actions,
  .guide-toc,
  .guide-coupon-band,
  .guide-related-grid,
  .guide-faq,
  .reading-progress,
  .accessibility-menu-button,
  .cookie-consent {
    display: none !important;
  }

  .guide-hero {
    min-height: 0;
    background: #fff;
  }

  .guide-hero picture,
  .guide-hero::after {
    display: none;
  }

  .guide-hero-inner {
    width: 100%;
    padding: 20px 0;
  }

  .guide-layout {
    display: block;
    width: 100%;
    padding: 20px 0;
  }

  .guide-section {
    break-inside: avoid;
  }

  .guide-checklist-tool {
    box-shadow: none;
  }
}
