/* =========================================================
   Ride Real Estate — Design System
   Palette sourced from Site color palate.jpg
   ========================================================= */

:root {
  /* Sampled directly from Site color palate.jpg */
  --charcoal: #404038;
  --charcoal-light: #70706a;
  --rust: #956f58;
  --rust-dark: #7a5b48;
  --cream: #cecac1;
  --cream-light: #e9e7e3;
  --white: #ffffff;
  --ink: #2a2a24;
  --gold: #cba135;
  --line: rgba(42, 42, 36, 0.14);

  --font-display: "Roboto Slab", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 10px;
  --shadow: 0 12px 30px -14px rgba(32, 31, 26, 0.35);
  --shadow-sm: 0 4px 14px -8px rgba(32, 31, 26, 0.3);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--charcoal);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--rust-dark);
  margin-bottom: 0.9em;
}
.section {
  padding: 72px 0;
}
.section--tight { padding: 48px 0; }
.section--charcoal {
  background: var(--charcoal);
  color: var(--cream-light);
}
.section--charcoal h2, .section--charcoal h3 { color: var(--white); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section-head {
  max-width: 720px;
  margin: 0 0 40px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  font-family: var(--font-body);
}
.btn:active { transform: translateY(1px); }
.btn-rust { background: var(--rust); color: var(--white); }
.btn-rust:hover { background: var(--rust-dark); }
.btn-charcoal { background: var(--charcoal); color: var(--white); }
.btn-charcoal:hover { background: var(--ink); }
.btn-outline { background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover { background: rgba(0,0,0,0.06); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  background: var(--cream-light);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup img { height: 46px; width: auto; }
.brand-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}
.header-inner nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-inner nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.header-inner nav a:hover { background: var(--cream); }
.header-inner nav a.current { color: var(--rust-dark); }
.header-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity .2s ease;
}

/* compliance line under header on inner pages */
.compliance-strip {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  text-align: center;
  padding: 6px 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand .brand-row { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.footer-brand .brand-row img { height: 34px; margin: 0; }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { text-decoration: none; color: inherit; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-compliance {
  max-width: 720px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--white);
}
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  height: min(50vh, 500px);
  min-height: 300px;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* logo sits above the video's true center, so bias the crop upward.
     max-width above keeps this safe on very wide monitors too. */
  object-position: center 38%;
}
.hero-caption {
  text-align: center;
  padding: 20px 20px 0;
}
.hero-caption .eyebrow { margin: 0; }
.hero-below {
  padding: 44px 0 60px;
  text-align: center;
}
.hero h1 em, .page-hero h1 em { font-style: italic; color: var(--gold); }
.hero-below p.lead {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 640px;
  margin: 22px auto 0;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-below .hero-actions { justify-content: center; }

/* smaller page hero for inner pages */
.page-hero {
  padding: 64px 0 56px;
  background: var(--charcoal);
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; font-size: 1.05rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card { padding: 30px 26px; }
.feature-card .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--rust-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

/* ---------- Two column layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img, .split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--charcoal);
}
.form-field .hint { font-weight: 400; font-size: 0.78rem; color: var(--charcoal-light); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--cream-light);
  color: var(--ink);
  width: 100%;
}
textarea { resize: vertical; min-height: 100px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rust);
  background: var(--white);
}
.choice-group { display: flex; flex-wrap: wrap; gap: 10px; }
.choice-group input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice-group label {
  border: 1.5px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--cream-light);
  transition: all 0.15s ease;
}
.choice-group input:checked + label {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}
.form-error {
  font-size: 0.78rem;
  color: #b3261e;
  min-height: 1em;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .icon { font-size: 2.6rem; margin-bottom: 10px; }
.progress-track {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}
.progress-track span {
  flex: 1;
  height: 5px;
  border-radius: 4px;
  background: var(--line);
}
.progress-track span.active { background: var(--rust); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-nav { display: flex; justify-content: space-between; margin-top: 6px; gap: 12px; }

/* ---------- Newsletter ---------- */
.newsletter-band {
  background: var(--rust);
  color: var(--white);
  padding: 52px 0;
}
.newsletter-band h2 { color: var(--white); }
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.newsletter-form input {
  border: none;
  min-width: 200px;
  flex: 1;
}
.modal-overlay,
.newsletter-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,19,16,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}
.modal-overlay.open,
.newsletter-modal-overlay.open { display: flex; }
.modal,
.newsletter-modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow);
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}
.modal .close-modal,
.newsletter-modal .close-modal {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--charcoal-light);
  line-height: 1;
}
.newsletter-modal form { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

/* ---------- Contact modal ---------- */
.contact-modal-body { text-align: left; margin-top: 18px; }
.contact-info-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-info-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--cream-light);
  transition: background 0.15s ease;
}
.contact-info-list a:hover { background: var(--cream); }
.contact-info-list .ci-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.contact-modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 16px;
  color: var(--charcoal-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-modal-divider::before, .contact-modal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.contact-modal-body form { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Map ---------- */
#tv-map {
  height: 560px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.leaflet-tooltip.city-tip {
  background: var(--white);
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  font-family: var(--font-body);
  min-width: 210px;
  opacity: 1 !important;
}
.city-tip h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.city-tip .price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--rust-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.city-tip ul { margin: 0; padding-left: 18px; font-size: 0.84rem; }
.city-tip li { margin-bottom: 2px; }
.map-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--charcoal-light);
}
.map-note { font-size: 0.8rem; color: var(--charcoal-light); margin-top: 12px; }

/* ---------- Activities gallery ---------- */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.activity-card {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
}
.activity-card:focus-visible { outline: 3px solid var(--rust); outline-offset: 2px; }
.activity-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.activity-card:hover img { transform: scale(1.06); }
.activity-card .label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}

/* ---------- Sold grid ---------- */
.sold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sold-card .photo {
  aspect-ratio: 2.2 / 1;
  overflow: hidden;
}
.sold-card .photo.real-photo {
  aspect-ratio: 4 / 3;
}
.sold-card .photo.real-photo img { object-position: center; }
.sold-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.sold-card .body { padding: 18px 20px; }
.sold-card .tags { display: flex; gap: 8px; margin-bottom: 10px; }
.tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--charcoal);
}
.tag.buyer { background: #e7eef0; color: #2c5a63; }
.tag.seller { background: #f1e6da; color: var(--rust-dark); }
.sold-card .specs { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.sold-card .addr { color: var(--charcoal-light); font-size: 0.9rem; margin-bottom: 4px; }
.sold-card .sold-ago { font-size: 0.82rem; color: var(--rust-dark); font-weight: 600; }
.sold-filter { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.sold-filter button {
  border: 1.5px solid var(--line);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.sold-filter button.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* ---------- Referral ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.stat-box { text-align: center; padding: 28px 18px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat-box .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--rust-dark); font-weight: 700; }
.stat-box .cap { font-size: 0.85rem; color: var(--charcoal-light); }

/* ---------- Steps (roadmap) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: var(--white); border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-sm); }
.step-card .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--rust); color: var(--white);
  font-weight: 700; font-size: 0.9rem; margin-bottom: 12px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-card p { font-size: 0.88rem; color: var(--charcoal-light); margin: 0; }

/* ---------- About ---------- */
.about-hero { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-hero img { border-radius: var(--radius); box-shadow: var(--shadow); }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.value-item { display: flex; gap: 14px; }
.value-item .mark { color: var(--rust-dark); font-weight: 700; font-size: 1.1rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-strip { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.badge-strip img { height: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header-inner nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 10px 16px;
    flex-shrink: 0;
  }
  .brand-lockup { gap: 8px; }
  .brand-lockup img { height: 34px; }
  .brand-divider { height: 26px; }
  .header-inner.nav-open nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-light);
    flex-direction: column;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .header-inner.nav-open nav a { padding: 12px 6px; }
  .header-cta { margin-left: 0; order: 3; margin-top: 8px; }

  .card-grid, .steps-grid, .activity-grid, .sold-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .about-hero, .footer-grid, .stat-row, .value-grid, .form-grid { grid-template-columns: 1fr; }
  .split { gap: 30px; }
  .footer-grid { gap: 28px; }
}
@media (max-width: 560px) {
  .card-grid, .steps-grid, .activity-grid, .sold-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Education accordion ---------- */
.edu-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.edu-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.edu-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.edu-item summary::-webkit-details-marker { display: none; }
.edu-item summary .edu-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--rust-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-family: var(--font-body);
  transition: transform 0.2s ease;
}
.edu-item[open] summary .edu-toggle { transform: rotate(45deg); }
.edu-body { padding: 0 24px 26px; }
.edu-body h4 { font-size: 1rem; margin: 18px 0 6px; color: var(--rust-dark); }
.edu-body h4:first-child { margin-top: 0; }
.edu-body p { font-size: 0.94rem; color: var(--charcoal-light); margin: 0 0 12px; }
.edu-body ul, .edu-body ol { padding-left: 20px; margin: 0 0 14px; }
.edu-body li { font-size: 0.94rem; color: var(--charcoal-light); margin-bottom: 8px; }
.edu-body .edu-intro { font-size: 0.96rem; color: var(--charcoal); margin-bottom: 16px; }

/* ---------- Activity detail modal ---------- */
.modal.modal--wide {
  max-width: 780px;
  text-align: left;
}
.activity-modal-desc {
  color: var(--charcoal-light);
  font-size: 0.98rem;
  margin: 10px 0 20px;
}
.activity-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.activity-modal-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .activity-modal-gallery { grid-template-columns: 1fr; }
  .activity-modal-gallery img { height: 200px; }
}

/* ---------- Home page slideshow ---------- */
.slideshow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}
.slideshow-track {
  position: relative;
  aspect-ratio: 4 / 3;
}
.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slideshow-slide.active { opacity: 1; }
.slideshow-slide img { width: 100%; height: 100%; object-fit: cover; }
.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(20,19,16,0.55);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.slideshow-arrow:hover { background: rgba(20,19,16,0.8); }
.slideshow-arrow.prev { left: 16px; }
.slideshow-arrow.next { right: 16px; }
.slideshow-dots {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.slideshow-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.slideshow-dots button.active { background: var(--white); }
