/* ============ Design tokens ============ */
:root {
  --accent: #E11B22;
  --accent-dark: #b3141a;
  --ink: #16181c;
  --ink-2: #3d434d;
  --muted: #6b7280;
  --line: #e4e7ec;
  --line-2: #eef1f4;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-ad: #f0f2f5;
  --radius: 10px;
  --shadow-card: 0 1px 3px rgba(16,24,40,.06), 0 1px 2px rgba(16,24,40,.04);
  --shadow-hover: 0 8px 24px rgba(16,24,40,.10);
  --container: 960px;
  --header-container: 1200px;
  font-family: 'Rethink Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Rethink Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.site-header .container {
  max-width: var(--header-container);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.utility-strip {
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--ink-2);
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.utility-left, .utility-right { display: flex; align-items: center; gap: 14px; }

.edition {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
  font: inherit; color: inherit;
}
.edition-label { color: var(--muted); }
.edition .caret { font-size: 10px; color: var(--muted); }
.utility-left .divider { width: 1px; height: 18px; background: var(--line); }
.dateline { color: var(--ink-2); font-weight: 500; }

.signin { font-weight: 600; }
.signin:hover { color: var(--accent); }
.socials { display: flex; gap: 8px; }
.social-ico {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 12px; color: var(--ink-2);
  transition: .15s;
}
.social-ico:hover { border-color: var(--accent); color: var(--accent); }

.nav-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}
.brand {
  flex: 0 0 auto;
}
.brand img { height: 46px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: 0;
  flex: 1;
}
.drawer-panel,
.drawer-links {
  display: contents;
}
.drawer-head,
.drawer-foot {
  display: none;
}
.main-nav a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 6px 0;
  white-space: nowrap;
  transition: color .15s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--accent); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}

.location {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink);
  font-weight: 600;
}
.location svg { color: var(--accent); }
.location span {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 6px; margin-left: auto;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 40, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}

/* ============ Section heads ============ */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.section-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.view-more {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px;
}
.view-more span { font-size: 18px; line-height: 1; }
.view-more:hover { color: var(--accent-dark); }

/* ============ Hero ============ */
.hero {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}
.hero-left { grid-column: 1 / 3; }
.hero-right { grid-column: 3; grid-row: 1 / 3; min-width: 0; }

.thumb { display: block; overflow: hidden; border-radius: 8px; background: var(--bg-soft); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.thumb:hover img { transform: scale(1.04); }
.thumb-16x9 { aspect-ratio: 16 / 9; }
.thumb-1x1 { aspect-ratio: 1 / 1; }

.hero-feature h2 {
  margin: 14px 0 6px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero-feature h2 a:hover { color: var(--accent); }
.hero-feature p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

.hero-sub-grid {
  grid-column: 1 / 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.card-sm h3 {
  margin: 10px 0 4px;
  font-size: 16.5px;
  line-height: 1.3;
  font-weight: 700;
}
.card-sm h3 a:hover { color: var(--accent); }
.card-sm p { margin: 0; font-size: 13.5px; color: var(--muted); }

.hero-right { display: flex; flex-direction: column; gap: 22px; }
.hero-rail-card { border-top: 1px solid var(--line); padding-top: 20px; }

.ad-box {
  background: var(--bg-ad);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.ad-box img { width: 100%; border-radius: 4px; }
.ad-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.card-side { display: flex; gap: 14px; padding-top: 4px; border-top: 1px solid var(--line); padding-top: 20px; }
.card-side .thumb { width: 108px; flex: 0 0 108px; }
.card-side-body h3 { margin: 0 0 5px; font-size: 18px; line-height: 1.25; font-weight: 700; }
.card-side-body h3 a:hover { color: var(--accent); }
.card-side-body p { margin: 0; font-size: 14px; color: var(--muted); }

/* ============ Ad strip ============ */
.ad-strip {
  background: var(--bg-soft);
  padding: 26px 20px;
  margin: 40px 0;
}
.ad-strip-inner {
  width: 70%;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}
.ad-strip-inner img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--line);
}

/* ============ Finder ============ */
.finder {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  min-width: 0;
}
.finder-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px 30px;
  box-shadow: var(--shadow-card);
  min-width: 0;
}
.finder-title { margin: 0 0 22px; font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.finder-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}
.field { display: flex; flex-direction: column; }
.field-label { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.field select {
  appearance: none;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  background: transparent;
  padding: 8px 24px 8px 2px;
  font: inherit; font-size: 15.5px; font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.field select:focus { outline: none; border-bottom-color: var(--accent); }

.btn-search {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 15px;
  font: inherit; font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.btn-search:hover { background: var(--accent-dark); }

.by-price {
  margin-top: 26px;
  min-width: 0;
}
.by-price-head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--ink-2);
  margin-bottom: 14px;
}
.by-price-head svg { color: var(--accent); }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
}
.chip {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 16px;
  font: inherit; font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: .15s;
}
.chip:hover, .chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff5f5;
}

.finder-ad {
  border: 1px solid var(--line);
  background: var(--bg-ad);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.finder-ad img { width: 100%; border-radius: 4px; }

/* ============ Sections spacing ============ */
.finder, .brands, .videos, .slideshow { margin-top: 56px; }

/* ============ Brands carousel ============ */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.brand-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 5 * 18px) / 6);
  min-width: 150px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 12px 16px;
  text-align: center;
  background: #fff;
  transition: .18s;
}
.brand-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.brand-logo {
  height: 64px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.brand-logo img { max-height: 60px; max-width: 100%; width: auto; }
.brand-name { font-size: 15px; font-weight: 600; color: var(--ink); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  font-size: 22px; line-height: 1;
  color: var(--ink-2);
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 2;
  transition: .15s;
}
.carousel-arrow:hover { color: var(--accent); border-color: var(--accent); }
.carousel-arrow.prev { left: -14px; }
.carousel-arrow.next { right: -14px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: .2s;
}
.carousel-dots button.active { background: var(--accent); width: 22px; border-radius: 4px; }

/* ============ Videos ============ */
.videos-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
}
.video-hero { position: relative; display: block; border-radius: 10px; overflow: hidden; }
.video-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0) 55%);
}
.video-hero-title {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  z-index: 2;
}

.play-btn {
  position: absolute;
  left: 8px; bottom: 8px;
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 5px;
  display: grid; place-items: center;
  z-index: 3;
}
.play-btn::before {
  content: "";
  border-left: 9px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}
.play-btn.big {
  left: 50%; top: 50%; bottom: auto;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.92);
}
.play-btn.big::before { border-left-color: var(--accent); border-left-width: 18px; border-top-width: 11px; border-bottom-width: 11px; }

.video-list { display: flex; flex-direction: column; }
.video-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
}
.video-list .video-item:first-child { padding-top: 0; }
.video-list .video-item:last-child { border-bottom: 0; }
.video-thumb {
  position: relative;
  flex: 0 0 120px;
  width: 120px;
  border-radius: 6px;
  overflow: hidden;
}
.video-thumb img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.video-item p { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.3; }
.video-item:hover p { color: var(--accent); }

.videos-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.videos-bottom .video-item { border-bottom: 0; padding: 0; }

/* ============ Slideshow ============ */
.slideshow-row { display: grid; gap: 24px; }
.row-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-inline: auto; }
.row-4 { grid-template-columns: repeat(4, 1fr); margin-top: 24px; }
.slideshow-mobile-more { display: none; }

.slide-card { display: block; }
.slide-thumb {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.slide-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .4s; }
.slide-card:hover .slide-thumb img { transform: scale(1.04); }
.photo-count {
  position: absolute;
  left: 10px; bottom: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.slide-card h3 {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.slide-card:hover h3 { color: var(--accent); }

/* ============ Footer ============ */
.site-footer {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-top: 44px;
  padding-bottom: 40px;
}
.toi-mark { height: 52px; width: auto; margin-bottom: 6px; }
.powered { font-size: 12px; color: var(--muted); margin: 0 0 22px; }
.powered strong { color: var(--ink-2); }

.footer-links-inline { display: flex; gap: 40px; margin-bottom: 26px; }
.footer-links-inline div { display: flex; flex-direction: column; gap: 12px; }
.footer-links-inline a { font-size: 14.5px; color: var(--ink-2); max-width: 220px; }
.footer-links-inline a:hover { color: var(--accent); }

.follow-head { font-size: 13px; font-weight: 700; letter-spacing: .04em; margin: 0 0 12px; }
.follow-icons { display: flex; gap: 12px; }
.follow-icons a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-size: 14px;
  transition: .15s;
}
.follow-icons a:hover { background: var(--accent); }

.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 16px;
}
.footer-col h4:not(:first-child) { margin-top: 30px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.footer-col a { font-size: 14.5px; color: var(--ink-2); }
.footer-col a:hover { color: var(--accent); }

.footer-copy {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}
.footer-copy strong { color: var(--ink-2); }

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .hero, .finder { grid-template-columns: 1fr; }
  .hero-left, .hero-right, .hero-sub-grid { grid-column: 1 / -1; grid-row: auto; }
  .hero-right { flex-direction: row; flex-wrap: wrap; }
  .hero-right .ad-box { flex: 1 1 300px; }
  .hero-right .card-side { flex: 1 1 240px; }
  .hero-rail-card { flex: 1 1 240px; border-top: none; padding-top: 0; }
  .videos-top { grid-template-columns: 1fr; }
  .row-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---- Tablet / mobile: left-sidebar drawer nav ---- */
@media (max-width: 820px) {
  .nav-bar {
    position: relative;
    gap: 14px;
    height: 62px;
  }
  .nav-toggle {
    display: flex;
    order: 0;
    margin-left: 0;
  }
  .brand { order: 1; }
  .brand img { height: 38px; }
  .location { order: 2; margin-left: auto; }

  .main-nav {
    order: 3;
    position: fixed;
    top: 0; bottom: 0; left: 0;
    width: 80%;
    max-width: 320px;
    display: block;
    margin: 0;
    background: #fff;
    padding: 0;
    box-shadow: var(--shadow-hover);
    transform: translateX(-100%);
    transition: transform .28s ease;
    overflow: hidden;
    z-index: 100;
  }
  .main-nav.open { transform: translateX(0); }
  .drawer-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
  }
  .drawer-head {
    display: block;
    background: var(--ink);
    color: #fff;
    padding: 22px 20px 24px;
  }
  .drawer-back {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin: 0 0 22px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .drawer-welcome {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .drawer-avatar {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: #f4f4f5;
  }
  .drawer-welcome p {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
  }
  .drawer-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .drawer-ctas a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
  }
  .drawer-links {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
  }
  .drawer-links > a {
    width: 100%;
    padding: 15px 24px;
    border-bottom: 1px solid var(--line-2);
    font-size: 16px;
  }
  .drawer-links > a.active { color: var(--accent); }
  .drawer-links > a.active::after { display: none; }
  .drawer-foot {
    display: block;
    padding: 20px 24px 24px;
    border-top: 1px solid var(--line-2);
    background: #fff;
  }
  .drawer-foot p {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
  }
  .drawer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .drawer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .nav-backdrop { display: block; }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
  body.nav-locked { overflow: hidden; }

  .chips {
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 0 0 4px;
    overscroll-behavior-x: contain;
  }
  .chips::-webkit-scrollbar { display: none; }
  .chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 12px;
    padding: 13px 22px;
    font-size: 16px;
    background: #f8fbff;
    border-color: #cbd9e8;
    color: var(--ink);
    white-space: nowrap;
  }
}

/* ---- Phone layout ---- */
@media (max-width: 640px) {
  main {
    display: flex;
    flex-direction: column;
  }

  .utility-left .dateline { display: none; }
  .section-head h2, .finder-title, .hero-feature h2 { font-size: 22px; }

  /* Hero: main news → RE news → 3 news row → advertisement */
  .hero {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 20px;
  }
  .hero-left { order: 1; }
  .hero-right { display: contents; }
  .card-side { order: 2; }
  .hero-rail-card { order: 3; flex: 0 0 auto; }
  .hero-sub-grid { order: 4; margin-top: 0; }
  .ad-box-mrec { order: 5; }
  .hero-sub-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-sub-grid .card-sm,
  .hero-rail-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--line-2);
  }
  .hero-sub-grid .card-sm:last-child { border-bottom: 1px solid var(--line-2); }
  .hero-sub-grid .card-sm .thumb,
  .hero-rail-card .thumb { align-self: start; grid-row: 1 / span 2; }
  .hero-sub-grid .card-sm h3,
  .hero-rail-card h3 { grid-column: 2; font-size: 15.5px; margin: 0 0 3px; }
  .hero-sub-grid .card-sm p,
  .hero-rail-card p { display: block; grid-column: 2; font-size: 13px; line-height: 1.35; }

  /* Ad strip */
  .finder-primary { order: 2; }
  .ad-strip-primary { order: 3; }
  .brands { order: 4; }
  .videos { order: 5; }
  .ad-strip:not(.ad-strip-primary) { order: 6; }
  .slideshow { order: 7; }
  .ad-strip { padding: 18px 16px; margin: 28px 0; }
  .ad-strip-inner { width: 100%; }

  /* Finder */
  .finder { margin-top: 34px; }
  .finder-card { padding: 22px 18px 24px; }
  .finder-row { grid-template-columns: 1fr; gap: 18px; }
  .finder-ad { display: none; }

  /* Brands carousel */
  .carousel-arrow { display: none; }
  .brand-card { flex: 0 0 44%; min-width: 0; }

  /* Videos: hero then list, single column */
  .videos-bottom { display: none; }
  .videos-bottom .video-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-2);
  }
  .videos-bottom .video-item:last-child { border-bottom: 0; }
  .video-hero-title { font-size: 19px; left: 16px; right: 16px; bottom: 14px; }
  .video-item p { font-size: 15px; }

  /* Slideshow: three stacked items with a mobile-only explore link */
  .slideshow .section-head .view-more { display: none; }
  .row-3 { grid-template-columns: 1fr; gap: 18px; max-width: none; }
  .row-4 { display: none; }
  .slideshow-mobile-more {
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 14px;
  }
  .slide-card h3 { font-size: 14px; }

  /* Footer: label-left, two-column links */
  .footer-inner { grid-template-columns: 1fr; gap: 26px; padding-top: 30px; padding-bottom: 30px; }
  .footer-links-inline { gap: 28px; }
  .footer-links-inline a { font-size: 13.5px; }
  .footer-col {
    display: grid;
    grid-template-columns: 96px 1fr;
    column-gap: 16px;
    row-gap: 18px;
    align-items: start;
  }
  .footer-col h4 { margin: 0; font-size: 13px; line-height: 1.3; }
  .footer-col h4:not(:first-child) { margin-top: 0; }
  .footer-col ul { grid-template-columns: 1fr 1fr; gap: 10px 16px; }
  .footer-col a { font-size: 13.5px; }
}
