:root {
  color-scheme: light;
  --bg: #f3f0e8;
  --ink: #2b241c;
  --ink-soft: #716653;
  --muted: #716653;
  --line: #ded5c6;
  --line-strong: #bda98b;
  --red: #c94d38;
  --flag-green: #006847;
  --flag-green-bright: #45b97c;
  --flag-white: #fff8ed;
  --flag-red: #ce1126;
  --blue: #27627b;
  --green: #3f8062;
  --gold: #d89b35;
  --cream: #fff8ed;
  --panel: #173d31;
  --panel-soft: #255545;
  --panel-text: #fff6e8;
  --panel-border: rgba(255, 246, 232, 0.16);
  --shadow-soft: rgba(44, 34, 22, 0.16);
  --ad-bg: #fbf1df;
  --field-bg: #fffdf8;
  --nav-link: #dfd3bd;
  --prose-copy: #463b2f;
  --strong-copy: #514636;
  --surface-soft: #fbf3e6;
  --track-bg: #ded8c9;
  --stat-grid-bg: #f7ead5;
  --footer-copy: #b9ab94;
  --footer-link: #ded0b8;
  --panel-copy: #d7cbb8;
  --panel-muted: #d4c7b1;
  --panel-label: #a8cfbd;
  --accent-link: #f1b85a;
  --display: "Anton", Impact, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --wrap: 1200px;
}

html[data-color-theme="dark"] {
  color-scheme: dark;
  --bg: #100f0c;
  --ink: #f2eadc;
  --ink-soft: #c8bda8;
  --muted: #c8bda8;
  --line: #383126;
  --line-strong: #75654e;
  --red: #ff8068;
  --flag-green: #31b87b;
  --flag-green-bright: #76e0a7;
  --flag-white: #fff8ed;
  --flag-red: #ff6d7e;
  --blue: #8ac7df;
  --green: #8fc9a6;
  --gold: #ffc767;
  --cream: #1b1712;
  --panel: #071e19;
  --panel-soft: #12382e;
  --panel-text: #fff2dd;
  --panel-border: rgba(255, 242, 221, 0.18);
  --shadow-soft: rgba(0, 0, 0, 0.45);
  --ad-bg: #211c15;
  --field-bg: #15120e;
  --nav-link: #e2d5bf;
  --prose-copy: #e3d7c3;
  --strong-copy: #ded2be;
  --surface-soft: #241f18;
  --track-bg: #373126;
  --stat-grid-bg: #31291d;
  --footer-copy: #b9ad9e;
  --footer-link: #ded0ba;
  --panel-copy: #d9ccb7;
  --panel-muted: #cabcaa;
  --panel-label: #a8dfc4;
  --accent-link: #ffc76a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a:hover {
  color: var(--red);
}

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

p,
h1,
h2,
h3,
h4,
h5,
ul,
ol {
  margin-top: 0;
}

.wrap {
  margin: 0 auto;
  max-width: var(--wrap);
  padding: 0 28px;
}

.site-header .wrap,
main .wrap,
.site-footer .wrap {
  margin: 0 auto;
  max-width: var(--wrap);
  padding: 0 28px;
}

.skip-link {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  font-weight: 700;
  left: 16px;
  padding: 10px 14px;
  position: absolute;
  top: -80px;
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.btn {
  background: var(--panel);
  border: 2px solid var(--panel);
  color: var(--panel-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  min-height: 48px;
  padding: 14px 24px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:hover,
.btn:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}

.btn.btn-light {
  background: var(--cream);
  border-color: var(--line-strong);
  color: var(--panel);
}

.btn.btn-light:hover,
.btn.btn-light:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.pill {
  border: 1.5px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  min-height: 42px;
  padding: 9px 15px;
}

.pill:hover,
.pill:focus-visible {
  background: var(--panel);
  border-color: var(--panel);
  color: var(--panel-text);
}

.ad {
  align-items: center;
  background: var(--ad-bg);
  border: 1.5px solid var(--line-strong);
  color: var(--ink-soft);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 90px;
  text-align: center;
  text-transform: uppercase;
}

.ad span {
  padding: 8px;
}

.ad-leaderboard {
  margin-top: 22px;
}

.ad-inline {
  min-height: 112px;
  margin: 28px 0;
}

.ad-sidebar {
  min-height: 300px;
}

.ad-desktop {
  display: flex;
}

.ad-sticky {
  min-height: 600px;
  position: sticky;
  top: 84px;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--panel-border);
  box-shadow: 0 10px 26px rgba(24, 61, 49, 0.16);
  color: var(--panel-text);
  position: sticky;
  top: 0;
  z-index: 60;
}

.nav-inner {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-height: 66px;
}

.logo {
  align-items: baseline;
  color: var(--flag-green-bright);
  display: inline-flex;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: 27px;
  gap: 5px;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.site-header .logo {
  align-items: center;
  min-height: 44px;
}

.logo b {
  color: var(--flag-white);
  font-weight: 400;
}

.logo-sub {
  color: var(--flag-red);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
}

.nav-links ul,
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul {
  align-items: center;
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: var(--nav-link);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 0;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--panel-text);
}

.site-header .btn {
  background: var(--red);
  border-color: var(--red);
  padding-left: 22px;
  padding-right: 22px;
}

.site-header .btn:hover,
.site-header .btn:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--panel);
}

.desktop-search {
  flex: 0 1 245px;
}

.site-search {
  align-items: stretch;
  display: flex;
  min-width: 0;
  width: 100%;
}

.site-search label {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.site-search input {
  background: rgba(255, 248, 237, 0.11);
  border: 1.5px solid var(--panel-border);
  border-right: 0;
  color: var(--panel-text);
  font: 700 13px/1 var(--body);
  height: 42px;
  letter-spacing: 0.02em;
  min-width: 0;
  padding: 0 13px;
  width: 100%;
}

.site-search input::placeholder {
  color: rgba(255, 246, 232, 0.72);
}

.site-search input:focus {
  background: rgba(255, 248, 237, 0.18);
  outline: 0;
}

.search-submit {
  align-items: center;
  background: var(--red);
  border: 1.5px solid var(--red);
  color: var(--cream);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 44px;
  height: 42px;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  width: 44px;
}

.search-submit:hover,
.search-submit:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--panel);
}

.search-submit svg {
  height: 19px;
  width: 19px;
}

.theme-toggle {
  align-items: center;
  background: rgba(255, 248, 237, 0.1);
  border: 1.5px solid var(--panel-border);
  color: var(--panel-text);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 48px;
  height: 48px;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  width: 48px;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #17120d;
}

.theme-toggle svg {
  height: 21px;
  position: absolute;
  transition: opacity 0.18s, transform 0.18s;
  width: 21px;
}

.theme-toggle-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.theme-toggle-sun {
  opacity: 0;
  transform: scale(0.72) rotate(-45deg);
}

html[data-color-theme="dark"] .theme-toggle-moon {
  opacity: 0;
  transform: scale(0.72) rotate(45deg);
}

html[data-color-theme="dark"] .theme-toggle-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--panel-text);
  cursor: pointer;
  display: none;
  height: 48px;
  justify-content: center;
  padding: 0;
  width: 48px;
}

.nav-toggle svg {
  height: 26px;
  width: 26px;
}

.mobile-menu {
  background: var(--panel);
  box-shadow: 0 24px 40px rgba(24, 61, 49, 0.24);
  display: none;
  flex-direction: column;
  gap: 6px;
  inset: 66px 0 0;
  padding: 24px 28px 34px;
  position: fixed;
  z-index: 55;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  border-bottom: 1px solid var(--panel-border);
  color: var(--panel-text);
  display: block;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.01em;
  padding: 14px 0;
  text-transform: uppercase;
}

.mobile-menu li:last-child a {
  border-bottom: 0;
}

.mobile-menu .btn {
  background: var(--red);
  border-color: var(--red);
  font-family: var(--body);
  font-size: 15px;
  margin-top: 18px;
  width: 100%;
}

.mobile-search {
  margin: 16px 0 4px;
}

.mobile-search .site-search input {
  background: rgba(255, 248, 237, 0.09);
  height: 52px;
}

.mobile-search .search-submit {
  flex-basis: 54px;
  height: 52px;
  width: 54px;
}

.crumb {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 20px 0 0;
  text-transform: uppercase;
}

.crumb ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.crumb li {
  align-items: center;
  display: inline-flex;
}

.crumb a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
  min-width: 44px;
  padding: 6px 0;
}

.crumb .sep {
  color: var(--red);
  margin: 0 7px;
}

@media (max-width: 760px) {
  .crumb {
    font-size: 11px;
    line-height: 1.3;
    padding-top: 14px;
  }

  .crumb ol {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: hidden;
  }

  .crumb li {
    min-width: 0;
  }

  .crumb li:not(.crumb-current) {
    flex-shrink: 0;
  }

  .crumb .crumb-current {
    display: none;
  }

  .crumb .crumb-before-current .sep {
    display: none;
  }

  .crumb a,
  .crumb span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.section-gap {
  padding: 50px 0;
}

.home-hero,
.hub-hero {
  background: var(--panel);
  overflow: hidden;
  position: relative;
}

.home-hero {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 18px;
  min-height: 520px;
  text-align: center;
}

.hero-bg {
  background-image:
    linear-gradient(118deg, rgba(24, 61, 49, 0.42), rgba(0, 104, 71, 0.18) 42%, rgba(201, 77, 56, 0.14)),
    var(--hero-bg-image, url("../img/home-hero-mosaic-2026-05-27.jpg"));
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-bg::after {
  background: linear-gradient(180deg, rgba(24, 61, 49, 0.02), rgba(24, 61, 49, 0.24));
  content: "";
  inset: 0;
  position: absolute;
}

.home-hero-brand {
  align-items: center;
  color: var(--panel-text);
  display: inline-flex;
  font-family: var(--display);
  font-size: 13px;
  gap: 8px;
  left: 28px;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  text-transform: uppercase;
  top: 22px;
  z-index: 3;
}

.hero-flag-mark {
  border: 1px solid rgba(255, 246, 232, 0.62);
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  height: 14px;
  overflow: hidden;
  width: 24px;
}

.hero-flag-mark span:nth-child(1) {
  background: var(--flag-green);
}

.hero-flag-mark span:nth-child(2) {
  background: var(--flag-white);
}

.hero-flag-mark span:nth-child(3) {
  background: var(--flag-red);
}

.home-hero .hero-copy {
  align-items: center;
  color: var(--panel-text);
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
  padding: 48px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.home-hero .eyebrow,
.hub-hero .eyebrow {
  background: var(--red);
  color: var(--panel-text);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 12px;
}

.home-hero h1 {
  color: var(--panel-text);
  display: grid;
  font-family: var(--display);
  font-size: 96px;
  font-weight: 400;
  justify-items: center;
  letter-spacing: 0.005em;
  line-height: 0.92;
  margin: 16px 0 20px;
  text-align: center;
  text-transform: uppercase;
}

.home-title-line {
  display: block;
}

.home-title-line-primary {
  transform: translateX(0.08em);
}

.home-hero p {
  color: rgba(255, 248, 237, 0.92);
  font-size: 20px;
  margin: 0 auto 26px;
  max-width: 650px;
  text-align: center;
  text-wrap: balance;
  width: min(100%, 650px);
}

.home-hero .btn.btn-light {
  background: rgba(255, 248, 237, 0.96);
  border-color: rgba(255, 248, 237, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  color: #17120d;
}

.sec-title {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 60px 0 8px;
  text-transform: uppercase;
}

.sec-sub {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 8px;
}

.dest-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.dest-card {
  align-items: flex-end;
  border: 2px solid var(--line-strong);
  display: flex;
  min-height: 240px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
}

.dest-card:hover,
.dest-card:focus-within {
  box-shadow: 6px 6px 0 var(--shadow-soft);
  transform: translate(-3px, -3px);
}

.dest-card .dbg {
  background: url("../img/dummy-mexico-travel.png") center / cover;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.dest-card .dbg img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.dest-card .dbg::after {
  background: linear-gradient(140deg, rgba(24, 61, 49, 0.04), rgba(24, 61, 49, 0.38));
  content: "";
  inset: 0;
  position: absolute;
}

.dest-card:nth-child(4n + 2) .dbg::after {
  background: linear-gradient(140deg, rgba(201, 77, 56, 0.08), rgba(24, 61, 49, 0.36));
}

.dest-card:nth-child(4n + 3) .dbg::after {
  background: linear-gradient(140deg, rgba(0, 104, 71, 0.08), rgba(24, 61, 49, 0.36));
}

.dest-card:nth-child(4n + 4) .dbg::after {
  background: linear-gradient(140deg, rgba(216, 155, 53, 0.1), rgba(24, 61, 49, 0.36));
}

.dest-card .dc-copy {
  color: var(--panel-text);
  padding: 20px;
  position: relative;
  z-index: 2;
}

.dest-card span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  opacity: 0.9;
  text-transform: uppercase;
}

.dest-card h3 {
  color: var(--panel-text);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.home-band {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 60px;
}

.editor-note,
.newsletter-box {
  border: 1.5px solid var(--line-strong);
  background: var(--cream);
  padding: 28px;
}

.editor-note h2,
.newsletter-box h2 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.newsletter-box form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.newsletter-box input {
  background: var(--field-bg);
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 10px 12px;
}

.hub-hero {
  align-items: flex-end;
  display: flex;
  margin-top: 18px;
  min-height: 420px;
}

.hub-hero .hero-copy {
  color: var(--panel-text);
  max-width: 880px;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.hub-hero h1,
.cat-head h1,
.article-head h1,
.comp-head h1,
.util h1,
.author-head h1 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hub-hero h1 {
  color: var(--panel-text);
  font-size: 82px;
  margin: 16px 0 18px;
}

.byline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.02em;
}

.byline a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.dot {
  align-items: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  text-decoration: none;
  width: 32px;
}

.hub-grid {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-top: 44px;
}

.lead {
  border-left: 5px solid var(--red);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
  padding-left: 22px;
}

.prose {
  color: var(--prose-copy);
}

.prose > *:last-child {
  margin-bottom: 0;
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 18px;
}

.prose a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose-table-wrap {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  box-shadow: 8px 8px 0 var(--shadow-soft);
  margin: 30px 0 34px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-color: var(--flag-green) var(--line);
}

.prose table {
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.45;
  min-width: 680px;
  table-layout: fixed;
  width: 100%;
}

.prose table th,
.prose table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  overflow-wrap: anywhere;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.prose table th:last-child,
.prose table td:last-child {
  border-right: 0;
}

.prose table tr:last-child th,
.prose table tr:last-child td {
  border-bottom: 0;
}

.prose table thead th,
.prose table tr:first-child th {
  background: var(--panel-soft);
  color: var(--panel-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prose table tbody tr:nth-child(odd) td,
.prose table tbody tr:nth-child(odd) th {
  background: var(--surface-soft);
}

.prose table td:first-child,
.prose table th:first-child {
  color: var(--ink);
  font-weight: 800;
  width: 118px;
}

.prose h2,
.prose h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.prose h2 {
  font-size: 42px;
  margin: 42px 0 16px;
}

.prose h3 {
  font-size: 30px;
  margin: 34px 0 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 34px;
}

.toppicks {
  background: var(--panel);
  color: var(--panel-text);
  margin-bottom: 40px;
  padding: 28px 30px;
}

.toppicks h2,
.toppicks h3 {
  color: var(--panel-text);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.toppicks ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.toppicks li {
  border-bottom: 1px solid var(--panel-border);
  display: grid;
  gap: 14px;
  grid-template-columns: 90px 1fr;
  padding-bottom: 14px;
}

.toppicks li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.toppicks a {
  color: var(--accent-link);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.toppicks .lbl {
  color: var(--panel-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.affiliate-tag {
  color: var(--panel-muted);
  font-size: 12px;
  font-style: italic;
  margin-top: 14px;
}

.cat-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.cat-card {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow 0.15s, transform 0.15s;
}

.cat-card:hover,
.cat-card:focus-within {
  box-shadow: 6px 6px 0 var(--shadow-soft);
  transform: translate(-3px, -3px);
}

.cat-card .thumb {
  background:
    linear-gradient(180deg, rgba(24, 61, 49, 0.02), rgba(24, 61, 49, 0.22)),
    url("../img/dummy-mexico-travel.png") center / cover;
  border-bottom: 1.5px solid var(--line-strong);
  min-height: 120px;
  position: relative;
}

.cat-card:nth-child(4n + 2) .thumb {
  background:
    linear-gradient(180deg, rgba(201, 77, 56, 0.1), rgba(24, 61, 49, 0.22)),
    url("../img/dummy-mexico-travel.png") center / cover;
}

.cat-card:nth-child(4n + 3) .thumb {
  background:
    linear-gradient(180deg, rgba(216, 155, 53, 0.12), rgba(24, 61, 49, 0.22)),
    url("../img/dummy-mexico-travel.png") center / cover;
}

.cat-card:nth-child(4n + 4) .thumb {
  background:
    linear-gradient(180deg, rgba(0, 104, 71, 0.12), rgba(24, 61, 49, 0.22)),
    url("../img/dummy-mexico-travel.png") center / cover;
}

.cat-card .cc-body {
  padding: 16px 18px;
}

.cat-card h3,
.cat-card h4 {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

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

.side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.side-box {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  padding: 20px;
}

.side-box h2,
.side-box h3,
.side-box h4 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.toc a {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 0;
}

.toc a:last-child {
  border-bottom: 0;
}

.cat-head {
  margin-top: 24px;
  max-width: 900px;
}

.cat-head h1 {
  font-size: 64px;
  margin: 12px 0 16px;
}

.cat-head p {
  color: var(--ink-soft);
  font-size: 19px;
}

.listing {
  border-top: 2px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.lcard {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 80px 230px 1fr;
  padding: 26px 0;
  transition: background 0.15s;
}

.lcard:hover {
  background: var(--cream);
}

.rank {
  color: var(--red);
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.8;
}

.lc-img {
  background:
    linear-gradient(180deg, rgba(24, 61, 49, 0.02), rgba(24, 61, 49, 0.18)),
    url("../img/dummy-mexico-travel.png") center / cover;
  border: 1.5px solid var(--line-strong);
  display: flex;
  min-height: 150px;
  overflow: hidden;
  position: relative;
}

.lcard:nth-child(2n) .lc-img {
  background:
    linear-gradient(180deg, rgba(206, 17, 38, 0.08), rgba(0, 104, 71, 0.2)),
    url("../img/dummy-mexico-travel.png") center / cover;
}

.lc-img::after,
.article-hero::after,
.mlg-dummy-media::after,
.cat-card .thumb::after {
  content: none;
}

.photo-note {
  display: none;
}

.mlg-dummy-media.has-image::after {
  content: none;
}

.mlg-dummy-media.has-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.lc-body h2,
.lc-body h3 {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.lc-meta {
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 14px;
  margin-bottom: 10px;
}

.lc-meta .star {
  color: var(--red);
}

.lc-body p {
  color: var(--strong-copy);
  font-size: 15px;
  margin-bottom: 14px;
}

.lc-foot {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price {
  color: var(--ink-soft);
  font-size: 13px;
}

.price b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
}

.article {
  margin: 0 auto;
  max-width: 1040px;
}

.article-head h1 {
  font-size: 56px;
  margin: 16px 0 20px;
}

.article-byline {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 2px solid var(--line-strong);
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 12px;
  margin-bottom: 8px;
  padding: 18px 0;
}

.article-byline .dot {
  background: var(--red);
  color: var(--cream);
  height: 42px;
  width: 42px;
}

.article-byline .author-photo,
.safety-review .author-photo,
.byline .author-photo {
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  flex-shrink: 0;
  font-family: var(--body);
  font-size: 12px;
  height: 46px;
  overflow: hidden;
  width: 46px;
}

.article-byline .author-photo img,
.safety-review .author-photo img,
.byline .author-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-byline .who b {
  color: var(--ink);
  display: block;
  font-size: 15px;
}

.article-byline .visited {
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  font-size: 12px;
  margin-left: auto;
  padding: 7px 12px;
}

.article-hero {
  background:
    linear-gradient(90deg, rgba(24, 61, 49, 0.08), rgba(24, 61, 49, 0)),
    url("../img/dummy-mexico-travel.png") center / cover;
  border: 1.5px solid var(--line-strong);
  box-shadow: 10px 10px 0 var(--shadow-soft);
  display: flex;
  margin: 26px 0;
  overflow: hidden;
  position: relative;
}

.article-hero:not(.has-image) {
  aspect-ratio: 16 / 9;
}

.article-hero.has-image {
  background: none;
  border: 0;
  display: block;
  line-height: 0;
}

.article-hero .mlg-full-image-link {
  display: block;
  line-height: 0;
  width: 100%;
}

.article-hero.has-image .mlg-full-image-link {
  cursor: zoom-in;
}

.article-hero .mlg-full-image-link:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.article-hero.mlg-dummy-media.has-image img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.article .prose {
  font-size: 18.5px;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.article .prose p {
  margin-bottom: 22px;
}

.mlg-hotel-photo {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  box-shadow: 8px 8px 0 var(--shadow-soft);
  margin: 18px 0 30px;
  overflow: hidden;
}

.mlg-hotel-photo img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.mlg-hotel-photo a {
  display: block;
}

.mlg-hotel-photo figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 14px 12px;
  text-transform: uppercase;
}

.inline-aff {
  background: var(--panel);
  color: var(--panel-text);
  margin: 30px 0;
  padding: 24px 26px;
}

.inline-aff .ia-k {
  color: var(--accent-link);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.inline-aff h2,
.inline-aff h3,
.inline-aff h4 {
  color: var(--panel-text);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.inline-aff p {
  color: var(--panel-copy);
  font-size: 14.5px;
  margin-bottom: 16px;
}

.inline-aff .btn {
  background: var(--red);
  border-color: var(--red);
}

.inline-aff .btn:hover,
.inline-aff .btn:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--panel);
}

.related {
  border-top: 2px solid var(--line-strong);
  margin-top: 44px;
  padding-top: 20px;
}

.related h2,
.related h3,
.related h4 {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.related a {
  border: 1.5px solid var(--line-strong);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  margin: 0 8px 10px 0;
  min-height: 44px;
  padding: 10px 16px;
}

.related a:hover,
.related a:focus-visible {
  background: var(--panel);
  border-color: var(--panel);
  color: var(--panel-text);
}

.module-block,
.answer-box {
  margin: 34px 0;
}

.module-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.module-block h2,
.answer-box h2 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.answer-box {
  background: var(--panel);
  color: var(--panel-text);
  padding: 24px 26px;
}

.answer-box .module-kicker {
  color: var(--accent-link);
}

.answer-box p {
  font-size: 19px;
  line-height: 1.45;
  margin: 0;
}

.comparison-page .answer-box {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  box-shadow: 8px 8px 0 var(--shadow-soft);
  color: var(--ink);
}

.comparison-page .answer-box .module-kicker {
  color: var(--red);
}

.comparison-page .answer-box p {
  color: var(--ink-soft);
}

.safety-review {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 2px solid var(--line-strong);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 26px;
  padding: 16px 0;
}

.safety-review .dot {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 13px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  text-decoration: none;
  width: 44px;
}

.safety-review .who {
  display: grid;
  gap: 3px;
}

.safety-review .who a {
  color: var(--ink);
  text-decoration: none;
}

.safety-review .reviewed {
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 800;
  margin-left: auto;
  padding: 9px 12px;
  text-transform: uppercase;
}

.quick-pick-grid,
.affiliate-grid,
.link-groups {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-pick,
.affiliate-card,
.link-group {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  padding: 18px;
}

.quick-pick h3,
.affiliate-card h3,
.link-group h3 {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.quick-pick p,
.affiliate-card p {
  color: var(--strong-copy);
  font-size: 14px;
  margin-bottom: 8px;
}

.module-note {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: italic;
}

.table-scroll {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  box-shadow: 8px 8px 0 var(--shadow-soft);
  overflow-x: auto;
  scrollbar-color: var(--flag-green) var(--line);
}

.decision-table {
  background: var(--cream);
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15.5px;
  line-height: 1.45;
  min-width: 760px;
  table-layout: fixed;
  width: 100%;
}

.decision-table th,
.decision-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  overflow-wrap: anywhere;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.decision-table th:last-child,
.decision-table td:last-child {
  border-right: 0;
}

.decision-table tr:last-child th,
.decision-table tr:last-child td {
  border-bottom: 0;
}

.decision-table thead th {
  background: var(--panel-soft);
  color: var(--panel-text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-table tbody th {
  color: var(--ink);
  font-weight: 800;
}

.affiliate-module {
  background: var(--panel);
  color: var(--panel-text);
  padding: 24px;
}

.affiliate-module h2 {
  color: var(--panel-text);
}

.affiliate-module .module-kicker {
  color: var(--accent-link);
}

.affiliate-module .module-note {
  color: var(--panel-copy);
  margin-bottom: 16px;
}

.affiliate-card {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-accordion {
  border-top: 3px solid var(--ink);
  padding-top: 16px;
}

.faq-accordion .module-kicker {
  color: var(--flag-green);
}

.faq-accordion h2 {
  margin: 0 0 18px;
}

.faq-accordion .faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid;
}

.faq-accordion .faq-question {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px 1fr 34px;
  list-style: none;
  padding: 14px;
}

.faq-accordion .faq-question::-webkit-details-marker {
  display: none;
}

.faq-accordion .faq-number {
  align-items: center;
  background: var(--flag-green);
  color: var(--cream);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.faq-accordion .faq-question-text {
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
}

.faq-accordion .faq-toggle {
  align-items: center;
  border: 1.5px solid var(--line-strong);
  color: var(--red);
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  justify-self: end;
  line-height: 1;
  width: 30px;
}

.faq-accordion .faq-toggle::before {
  content: "+";
}

.faq-accordion .faq-item[open] .faq-toggle::before {
  content: "-";
}

.faq-accordion .faq-question:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.faq-accordion .faq-answer {
  padding: 0 18px 18px 72px;
}

.faq-accordion .faq-answer p {
  color: var(--strong-copy);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.article .prose .faq-accordion .faq-answer p,
.prose .faq-accordion .faq-answer p {
  margin: 0;
}

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

.source-item {
  border-left: 4px solid var(--red);
  padding: 12px 0 12px 16px;
}

.source-item h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.source-item a {
  color: var(--ink);
}

.source-item p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
}

.crime-data-module {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  padding: 22px;
}

.state-rate-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.state-rate-row {
  display: grid;
  gap: 8px;
}

.state-rate-label {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.state-rate-label span {
  font-weight: 800;
}

.state-rate-label b {
  color: var(--red);
  font-size: 13px;
}

.state-rate-track {
  background: var(--track-bg);
  height: 16px;
  overflow: hidden;
}

.state-rate-bar {
  background: var(--panel);
  display: block;
  height: 100%;
}

.state-rate-low {
  background: #2f7d5c;
}

.state-rate-medium {
  background: #c58b25;
}

.state-rate-high {
  background: var(--red);
}

.state-rate-pending {
  background: repeating-linear-gradient(45deg, var(--panel), var(--panel) 6px, var(--panel-soft) 6px, var(--panel-soft) 12px);
}

.state-rate-row p {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0;
}

.forward-links-module {
  border-top: 2px solid var(--line-strong);
  padding-top: 22px;
}

.internal-links-module {
  border-top: 2px solid var(--line-strong);
  padding-top: 22px;
}

.link-group a {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 0;
}

.link-group a:hover,
.link-group a:focus-visible {
  color: var(--red);
}

.comp-head {
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  max-width: 850px;
  text-align: center;
}

.comp-head h1 {
  font-size: 68px;
  margin: 12px 0 14px;
}

.comp-head p {
  color: var(--ink-soft);
  font-size: 18px;
}

.compare-hub .hub-head {
  border-bottom: 2px solid var(--line-strong);
  margin-top: 24px;
  padding-bottom: 30px;
}

.compare-hub .hub-head h1 {
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.95;
  margin: 12px 0 16px;
}

.compare-hub .hub-head p {
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
  max-width: 760px;
}

.compare-index {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 34px;
}

.compare-card {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 250px;
  padding: 24px;
}

.compare-card-kicker {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.compare-card h2 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.compare-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.compare-card p {
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.compare-card-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.empty-module {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  margin-top: 34px;
  padding: 26px;
}

.vs-grid {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 72px 1fr;
  margin-top: 40px;
}

.vs-col {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
}

.vs-body {
  padding: 28px 24px;
}

.vs-body h2 {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.vs-body .tag {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.vs-body ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vs-body li {
  display: flex;
  gap: 9px;
}

.vs-body li::before {
  color: var(--red);
  content: ">";
  font-weight: 700;
}

.vs-mid {
  align-items: center;
  color: var(--red);
  display: flex;
  font-family: var(--display);
  font-size: 34px;
  justify-content: center;
}

.comparison-page .vs-grid {
  display: none !important;
}

.verdict {
  background: var(--cream);
  border-bottom: 2px solid var(--line-strong);
  border-top: 2px solid var(--line-strong);
  color: var(--ink);
  margin-top: 44px;
  padding: 38px 0 42px;
}

.verdict h2,
.verdict h3 {
  color: var(--ink);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.comparison-page .verdict .prose {
  display: grid;
  gap: 24px;
  max-width: 920px;
}

.comparison-page .verdict .prose > * {
  margin-bottom: 0;
}

.comparison-page .verdict .prose p {
  line-height: 1.75;
}

.comparison-page .verdict .btn {
  margin-top: 26px;
}

.verdict p {
  color: var(--ink-soft);
}

.author-head {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 200px 1fr;
  margin-top: 30px;
}

.author-photo {
  align-items: center;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border: 2px solid var(--line-strong);
  color: var(--panel-text);
  display: flex;
  font-family: var(--display);
  font-size: 64px;
  height: 200px;
  justify-content: center;
  width: 200px;
}

.author-photo.has-photo {
  background: var(--cream);
  overflow: hidden;
}

.author-photo.has-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.author-head h1 {
  font-size: 64px;
  margin: 8px 0 10px;
}

.author-head .role {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.author-head .bio {
  color: var(--strong-copy);
  font-size: 17px;
  max-width: 620px;
}

.author-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cred {
  border: 1.5px solid var(--line-strong);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 13px;
}

.author-stats {
  background: var(--line-strong);
  border: 1.5px solid var(--line-strong);
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.stat {
  background: var(--cream);
  padding: 22px;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.stat span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.util.authors-intro {
  margin-left: 0;
  margin-right: 0;
  max-width: 880px;
}

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

.author-card {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 22px;
}

.author-card-head {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 84px minmax(0, 1fr);
}

.author-card .author-photo {
  border-width: 1.5px;
  font-size: 31px;
  height: 84px;
  text-decoration: none;
  width: 84px;
}

.author-card .role {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.author-card h2 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.author-card p {
  color: var(--strong-copy);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.author-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.author-card-tags span {
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.author-card-stats {
  background: var(--stat-grid-bg);
  border: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
}

.author-card-stats span {
  background: var(--cream);
  padding: 13px;
}

.author-card-stats b,
.author-card-stats small {
  display: block;
}

.author-card-stats b {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.author-card-stats small {
  color: var(--ink-soft);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-top: 4px;
  text-transform: uppercase;
}

.author-card .btn {
  align-self: flex-start;
}

.contributor-cta {
  align-items: center;
  background: var(--panel);
  color: var(--panel-text);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 42px;
  padding: 30px 32px;
}

.contributor-cta .eyebrow {
  color: var(--accent-link);
}

.contributor-cta h2 {
  color: var(--panel-text);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin: 10px 0 10px;
  text-transform: uppercase;
}

.contributor-cta p {
  color: var(--panel-copy);
  margin: 0;
  max-width: 720px;
}

.contributor-cta .btn {
  background: var(--red);
  border-color: var(--red);
  min-width: 220px;
}

.contributor-cta .btn:hover,
.contributor-cta .btn:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--panel);
}

.util {
  margin: 0 auto;
  max-width: 740px;
}

.util h1 {
  font-size: 56px;
  margin: 18px 0 22px;
}

.util .prose {
  font-size: 18px;
}

.page-id-969 .util {
  max-width: var(--wrap);
}

.page-id-969 .util > h1 {
  display: none;
}

.mlg-destinations-page {
  --mlg-ink: #111110;
  --mlg-muted: #625d53;
  --mlg-line: #ded7ca;
  --mlg-paper: #fffdf8;
  --mlg-soft: #f7f4ee;
  --mlg-green: #006847;
  --mlg-red: #ce1126;
}

html[data-color-theme="dark"] .mlg-destinations-page {
  --mlg-ink: var(--ink);
  --mlg-muted: var(--ink-soft);
  --mlg-line: var(--line);
  --mlg-paper: var(--cream);
  --mlg-soft: var(--surface-soft);
  --mlg-green: var(--green);
  --mlg-red: var(--red);
}

.mlg-destinations-hero {
  border-bottom: 1px solid var(--mlg-line);
  padding: clamp(36px, 5vw, 72px) 0 28px;
}

.mlg-destinations-hero p {
  color: var(--mlg-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  max-width: 780px;
}

.mlg-destinations-eyebrow {
  color: var(--mlg-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mlg-destinations-page h1 {
  font-size: clamp(42px, 7vw, 84px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 10px 0 18px;
  max-width: 900px;
}

.mlg-destinations-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 34px 0 54px;
}

.mlg-destination-card {
  background: var(--mlg-paper);
  border: 1px solid var(--mlg-line);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.mlg-destination-image {
  aspect-ratio: 4 / 3;
  background: var(--mlg-soft);
  display: block;
  overflow: hidden;
}

.mlg-destination-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.mlg-destination-card:hover img {
  transform: scale(1.035);
}

.mlg-destination-card-body {
  padding: 18px;
}

.mlg-destination-kicker {
  color: var(--mlg-red);
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.mlg-destination-card h2,
.prose .mlg-destination-card h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.mlg-destination-card h2 a {
  color: var(--mlg-ink);
  text-decoration: none;
}

.mlg-destination-card p {
  color: var(--mlg-muted);
  line-height: 1.45;
  margin: 0 0 16px;
}

.mlg-destination-link {
  color: var(--mlg-green);
  font-weight: 800;
  text-decoration: none;
}

.mlg-destination-section {
  border-top: 1px solid var(--mlg-line);
  padding: 34px 0;
}

.mlg-destination-section h2,
.prose .mlg-destination-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
  margin: 0 0 18px;
}

.mlg-destination-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mlg-destination-mini-grid a {
  align-items: center;
  background: var(--mlg-paper);
  border: 1px solid var(--mlg-line);
  border-radius: 8px;
  color: var(--mlg-ink);
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  line-height: 1.15;
  min-height: 50px;
  padding: 12px 14px;
  text-decoration: none;
  width: min(100%, 260px);
}

.mlg-destination-mini-grid a:hover,
.mlg-destination-mini-grid a:focus-visible {
  border-color: var(--mlg-green);
  color: var(--mlg-green);
}

.mlg-destination-mini-grid a::after {
  color: var(--mlg-red);
  content: "Open";
  font-size: 11px;
  margin-left: 12px;
  text-transform: uppercase;
}

.search-page {
  margin: 0 auto;
  max-width: 920px;
}

.search-page h1 {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
  margin: 14px 0 22px;
  text-transform: uppercase;
}

.search-page-form {
  background: var(--panel);
  border: 1.5px solid var(--line-strong);
  box-shadow: 8px 8px 0 var(--shadow-soft);
  margin: 0 0 26px;
  padding: 16px;
}

.search-page-form .site-search input {
  font-size: 16px;
  height: 54px;
}

.search-page-form .search-submit {
  flex-basis: 58px;
  height: 54px;
  width: 58px;
}

.search-note,
.search-count {
  color: var(--ink-soft);
  font-size: 18px;
  margin-bottom: 24px;
}

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

.search-result {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.search-result-type {
  color: var(--red);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.search-result h2 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.search-result h2 a:hover,
.search-result h2 a:focus-visible {
  color: var(--red);
}

.search-result-excerpt {
  color: var(--strong-copy);
  font-size: 16px;
  margin-bottom: 12px;
}

.search-result-excerpt p {
  margin-bottom: 0;
}

.search-result-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-empty {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  padding: 24px;
}

.search-empty h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pagination {
  margin-top: 28px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination .page-numbers {
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  min-width: 42px;
  padding: 9px 12px;
  text-transform: uppercase;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers:focus-visible {
  background: var(--panel);
  border-color: var(--panel);
  color: var(--panel-text);
}

.mlg-form-panel {
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  margin-top: 38px;
  padding: 28px;
}

.mlg-form-copy h2 {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  margin: 8px 0 10px;
  text-transform: uppercase;
}

.mlg-form-copy p {
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.mlg-form {
  display: grid;
  gap: 18px;
}

.mlg-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mlg-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mlg-form input,
.mlg-form textarea {
  background: var(--field-bg);
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  min-height: 48px;
  padding: 11px 12px;
  width: 100%;
}

.mlg-form textarea {
  line-height: 1.55;
  min-height: 150px;
  resize: vertical;
}

.mlg-form small {
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.45;
}

.mlg-hp {
  height: 0;
  left: -999em;
  margin: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.mlg-form-alert {
  border: 1.5px solid var(--line-strong);
  font-size: 15px;
  margin: 18px 0;
  padding: 14px 16px;
}

.mlg-form-alert.is-success {
  background: rgba(0, 104, 71, 0.12);
  border-color: var(--flag-green);
}

.mlg-form-alert.is-error {
  background: rgba(206, 17, 38, 0.1);
  border-color: var(--flag-red);
}

.mlg-form-alert ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 24px 0;
  padding: 18px 22px;
}

html[data-color-theme="dark"] .btn.btn-light {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

html[data-color-theme="dark"] .btn.btn-light:hover,
html[data-color-theme="dark"] .btn.btn-light:focus-visible,
html[data-color-theme="dark"] .site-header .btn:hover,
html[data-color-theme="dark"] .site-header .btn:focus-visible,
html[data-color-theme="dark"] .search-submit:hover,
html[data-color-theme="dark"] .search-submit:focus-visible,
html[data-color-theme="dark"] .inline-aff .btn:hover,
html[data-color-theme="dark"] .inline-aff .btn:focus-visible,
html[data-color-theme="dark"] .contributor-cta .btn:hover,
html[data-color-theme="dark"] .contributor-cta .btn:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #17120d;
}

html[data-color-theme="dark"] .home-hero .btn.btn-light {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  color: var(--panel-text);
}

html[data-color-theme="dark"] .home-hero .btn.btn-light:hover,
html[data-color-theme="dark"] .home-hero .btn.btn-light:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #17120d;
}

.site-footer {
  background: var(--panel);
  color: var(--panel-copy);
  font-size: 14px;
  margin-top: 80px;
  padding: 50px 0 30px;
}

.f-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.flogo {
  color: var(--flag-green-bright);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.flogo b {
  color: var(--flag-white);
  font-weight: 400;
}

.flogo .logo-sub {
  color: var(--flag-red);
}

.disc {
  color: var(--footer-copy);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
  max-width: 340px;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5 {
  color: var(--panel-text);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.site-footer a {
  align-items: center;
  color: var(--footer-link);
  display: flex;
  min-height: 44px;
  padding: 6px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-link);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fbar {
  align-items: center;
  border-top: 1px solid var(--panel-border);
  color: var(--footer-copy);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 14px 22px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 18px;
}

.flegal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.flegal a {
  align-items: center;
  color: var(--footer-copy);
  display: inline-flex;
  min-height: 44px;
  min-width: 44px;
  padding: 6px 0;
}

.flegal a:hover,
.flegal a:focus-visible {
  color: var(--accent-link);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

  .ad-sticky {
    min-height: 250px;
    position: static;
  }

  .ad-sidebar {
    min-height: 250px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .desktop-search,
  .site-header .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .ad-desktop {
    display: none;
  }

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

  .home-band,
  .vs-grid {
    grid-template-columns: 1fr;
  }

  .vs-mid {
    padding: 6px;
  }
}

@media (max-width: 760px) {
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    width: 100%;
  }

  body {
    touch-action: pan-y pinch-zoom;
  }

  .site-header,
  main,
  .site-footer {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .wrap,
  .site-header .wrap,
  main .wrap,
  .site-footer .wrap {
    max-width: 100%;
    min-width: 0;
    padding: 0 16px;
    width: 100%;
  }

  .hub-grid,
  .hub-main,
  .article,
  .article-head,
  .article-byline,
  .article-hero,
  .article .prose,
  .side,
  .side-box,
  .toppicks,
  .cat-cards,
  .cat-card,
  .quick-pick-grid,
  .affiliate-grid,
  .link-groups,
  .module-block,
  .answer-box,
  .faq-accordion,
  .inline-aff,
  .affiliate-module,
  .related,
  .forward-links-module,
  .internal-links-module {
    max-width: 100%;
    min-width: 0;
  }

  .prose *,
  .module-block *,
  .answer-box *,
  .toppicks *,
  .article-byline * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .logo {
    flex-wrap: nowrap;
    font-size: clamp(19px, 5.6vw, 23px);
    gap: 4px;
    max-width: none;
    white-space: nowrap;
  }

  .site-footer {
    margin-top: 48px;
    padding: 30px 0 18px;
  }

  .site-footer .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .f-grid {
    gap: 22px 18px;
    grid-template-columns: 1fr 1fr;
  }

  .f-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .f-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .f-grid > div:last-child ul {
    column-gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .f-grid > div:last-child > a {
    display: inline-flex;
    vertical-align: top;
    width: calc(50% - 10px);
  }

  .flogo {
    font-size: clamp(27px, 8vw, 34px);
  }

  .disc {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 8px;
    max-width: 32rem;
  }

  .site-footer h2,
  .site-footer h3,
  .site-footer h4,
  .site-footer h5 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .site-footer a {
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.2;
    min-height: 32px;
    padding: 4px 0;
  }

  .site-footer ul {
    display: grid;
    gap: 2px;
  }

  .fbar {
    align-items: center;
    display: grid;
    font-size: 11.5px;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    margin-top: 24px;
    padding-top: 14px;
    text-align: center;
  }

  .fbar > span {
    display: block;
    line-height: 1.35;
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 18rem);
  }

  .flegal {
    gap: 6px 14px;
    justify-content: center;
    width: 100%;
  }

  .flegal a {
    justify-content: center;
    min-height: 32px;
    min-width: 0;
    padding: 4px 0;
  }

  .home-hero {
    min-height: 500px;
  }

  .home-hero .hero-bg {
    background-image:
      linear-gradient(118deg, rgba(24, 61, 49, 0.24), rgba(0, 104, 71, 0.1) 42%, rgba(201, 77, 56, 0.07)),
      url("../img/home-hero-mosaic-2026-05-27-mobile.jpg");
    background-position: center;
  }

  .home-hero .hero-bg::after {
    background: linear-gradient(180deg, rgba(24, 61, 49, 0.04), rgba(24, 61, 49, 0.16));
  }

  .home-hero .hero-copy,
  .hub-hero .hero-copy {
    padding: 26px;
  }

  .home-hero h1 {
    font-size: 54px;
  }

  .home-hero p {
    font-size: 18px;
    line-height: 1.45;
  }

  .home-hero-brand {
    left: 18px;
    top: 18px;
  }

  .search-page h1 {
    font-size: 44px;
  }

  .search-page-form {
    box-shadow: none;
    margin-left: -2px;
    margin-right: -2px;
    padding: 12px;
  }

  .search-result h2 {
    font-size: 30px;
  }

  .hub-hero {
    min-height: 350px;
  }

  .hub-hero .hero-bg {
    background-image:
      linear-gradient(118deg, rgba(24, 61, 49, 0.62), rgba(0, 104, 71, 0.28) 42%, rgba(201, 77, 56, 0.22)),
      var(--hero-bg-mobile-image, var(--hero-bg-image, url("../img/home-hero-mosaic-2026-05-27-mobile.jpg")));
    background-position: center;
  }

  .hub-hero h1 {
    font-size: 52px;
  }

  .lead {
    font-size: 19px;
    max-width: 100%;
    padding-left: 16px;
  }

  .hub-main,
  .toppicks,
  .prose {
    max-width: 100%;
    min-width: 0;
  }

  .prose h2 {
    font-size: 32px;
  }

  .prose-table-wrap,
  .table-scroll {
    background: transparent;
    border: 0;
    box-shadow: none;
    contain: inline-size;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    overflow-x: visible;
    width: 100%;
  }

  .prose table,
  .decision-table {
    background: transparent;
    border-collapse: separate;
    display: block;
    font-size: 14px;
    min-width: 100%;
    table-layout: auto;
    width: 100%;
  }

  .prose table thead,
  .decision-table thead {
    display: none;
  }

  .prose table tbody,
  .decision-table tbody {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .prose table tr,
  .decision-table tr {
    background: var(--cream);
    border: 1.5px solid var(--line-strong);
    box-shadow: 4px 4px 0 var(--shadow-soft);
    display: block;
    padding: 12px 14px;
    width: 100%;
  }

  .prose table th,
  .prose table td,
  .decision-table th,
  .decision-table td {
    background: transparent !important;
    border: 0;
    border-bottom: 1px solid var(--line);
    display: block;
    padding: 9px 0 10px;
    width: auto;
  }

  .prose table td:first-child,
  .prose table th:first-child,
  .decision-table td:first-child,
  .decision-table th:first-child {
    width: auto;
  }

  .prose table th:last-child,
  .prose table td:last-child,
  .decision-table th:last-child,
  .decision-table td:last-child {
    border-bottom: 0;
  }

  .prose table th::before,
  .prose table td::before,
  .decision-table th::before,
  .decision-table td::before {
    color: var(--red);
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin-bottom: 3px;
    text-transform: uppercase;
  }

  .cat-cards,
  .dest-grid {
    grid-template-columns: 1fr;
  }

  .dest-card {
    background: var(--panel);
    border-width: 1.5px;
    display: block;
    min-height: 0;
  }

  .dest-card:hover,
  .dest-card:focus-within {
    box-shadow: 4px 4px 0 var(--shadow-soft);
    transform: none;
  }

  .dest-card .dbg {
    aspect-ratio: 4 / 3;
    display: block;
    inset: auto;
    position: relative;
    width: 100%;
  }

  .dest-card .dbg::after,
  .dest-card:nth-child(4n + 2) .dbg::after,
  .dest-card:nth-child(4n + 3) .dbg::after,
  .dest-card:nth-child(4n + 4) .dbg::after {
    background: linear-gradient(180deg, rgba(24, 61, 49, 0.01), rgba(24, 61, 49, 0.14));
  }

  .dest-card .dc-copy {
    background: var(--panel);
    color: var(--panel-text);
    padding: 16px 18px 18px;
  }

  .dest-card h3 {
    font-size: 30px;
  }

  .quick-pick-grid,
  .affiliate-grid,
  .link-groups {
    grid-template-columns: 1fr;
  }

  .faq-accordion .faq-question {
    gap: 12px;
    grid-template-columns: 38px 1fr 30px;
    padding: 13px;
  }

  .faq-accordion .faq-number {
    font-size: 12px;
    height: 34px;
    width: 34px;
  }

  .faq-accordion .faq-question-text {
    font-size: 15.5px;
  }

  .faq-accordion .faq-toggle {
    height: 28px;
    width: 28px;
  }

  .faq-accordion .faq-answer {
    padding: 0 13px 16px 63px;
  }

  .faq-accordion .faq-answer p {
    font-size: 15px;
  }

  .module-block h2,
  .answer-box h2 {
    font-size: 28px;
  }

  .faq-accordion h2 {
    margin: 0 0 18px;
  }

  .safety-review {
    align-items: flex-start;
    display: grid;
  }

  .safety-review .reviewed {
    margin-left: 0;
    width: fit-content;
  }

  .state-rate-label {
    align-items: flex-start;
    display: grid;
    gap: 4px;
  }

  .cat-head h1 {
    font-size: 44px;
  }

  .lcard {
    gap: 0;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
    padding: 0 0 24px;
    position: relative;
  }

  .rank {
    align-items: center;
    background: var(--red);
    color: var(--cream);
    display: flex;
    font-size: 34px;
    height: 48px;
    justify-content: center;
    left: 10px;
    line-height: 1;
    position: absolute;
    top: 10px;
    width: 48px;
    z-index: 2;
  }

  .lc-img {
    margin-bottom: 16px;
    min-height: 200px;
    order: -1;
    width: 100%;
  }

  .article-head h1 {
    font-size: 40px;
  }

  .article .prose {
    font-size: 16.75px;
    line-height: 1.68;
  }

  .article .prose p {
    margin-bottom: 19px;
  }

  .article .prose h2 {
    font-size: 32px;
  }

  .article-hero {
    box-shadow: 5px 5px 0 var(--shadow-soft);
    margin: 20px 0 24px;
  }

  .article-byline .visited {
    margin-left: 0;
    margin-top: 6px;
  }

  .toppicks {
    padding: 22px 20px;
  }

  .toppicks li {
    gap: 3px;
    grid-template-columns: 1fr;
  }

  .inline-aff {
    padding: 20px;
  }

  .comp-head h1,
  .author-head h1,
  .util h1 {
    font-size: 42px;
  }

  .author-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-photo {
    margin: 0 auto;
  }

  .author-stats {
    grid-template-columns: 1fr;
  }

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

  .author-card-head {
    align-items: flex-start;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .author-card .author-photo {
    font-size: 25px;
    height: 64px;
    width: 64px;
  }

  .author-card h2 {
    font-size: 28px;
  }

  .author-card-stats {
    grid-template-columns: 1fr;
  }

  .contributor-cta {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contributor-cta h2 {
    font-size: 31px;
  }

  .contributor-cta .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 16px;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .hub-hero h1 {
    font-size: 44px;
  }

  .cat-head h1 {
    font-size: 38px;
  }

  .article-head h1 {
    font-size: 34px;
  }

  .prose h2,
  .article .prose h2 {
    font-size: 28px;
  }

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

  .f-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .f-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .f-grid > div:last-child ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
