/*
 * listing-cards.css — LocalHorsebackRiding.com
 * Styles for archive-listing.php (Format 2) and single-listing.php (Format 3)
 * Enqueue in functions.php:
 *   wp_enqueue_style('lhr-listing-cards', get_template_directory_uri().'/css/listing-cards.css', [], '1.0');
 */

/* ═══════════════════════════════════════════════════
   SHARED TOKENS
═══════════════════════════════════════════════════ */
:root {
  --lhr-gd:           #2F4F3A;
  --lhr-gdp:          #1E3329;
  --lhr-gold:         #C8A24A;
  --lhr-gold-hov:     #A8832A;
  --lhr-cream:        #F7F1E3;
  --lhr-card:         #FDFAF5;
  --lhr-bg:           #F5F0E8;
  --lhr-text:         #2B2B2B;
  --lhr-text-mid:     #5A5248;
  --lhr-text-light:   #8A8070;
  --lhr-bdr:          #DDD8CC;
  --lhr-bdl:          #EDE8DC;
  --lhr-green-light:  #EEF2EC;
  --lhr-green-bdr:    #C8D8C0;
  --lhr-red-bg:       #FEF2F2;
  --lhr-red-text:     #B22222;
  --lhr-red-bdr:      #F8D0D0;
  --lhr-amber-bg:     #FFFBF0;
  --lhr-amber-bdr:    #E8D89A;
  --lhr-amber-text:   #5A4A10;
}


/* ═══════════════════════════════════════════════════
   FORMAT 2 — ARCHIVE LIST PAGE (archive-listing.php)
   Prefix: al- (archive listing), lc- (listing card)
═══════════════════════════════════════════════════ */

/* ── Filter bar ──────────────────────────────────── */
.al-filter-bar {
  background: var(--lhr-gdp);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.al-filter-form {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 900px;
}

.al-filter-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.al-filter-field--search {
  flex: 1;
  min-width: 180px;
}

.al-filter-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(247,241,227,0.55);
}

.al-filter-input,
.al-filter-select {
  height: 40px;
  padding: 0 12px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--lhr-cream);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  min-width: 160px;
  transition: border-color 0.15s;
}

.al-filter-input::placeholder { color: rgba(247,241,227,0.4); }
.al-filter-input:focus,
.al-filter-select:focus { border-color: var(--lhr-gold); }
.al-filter-select option { background: var(--lhr-gdp); color: var(--lhr-cream); }

.al-filter-btn {
  height: 40px;
  padding: 0 22px;
  background: var(--lhr-gold);
  color: var(--lhr-text);
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.al-filter-btn:hover { background: var(--lhr-gold-hov); color: var(--lhr-cream); }

.al-filter-clear {
  font-size: 12px;
  color: rgba(247,241,227,0.5);
  text-decoration: underline;
  align-self: center;
  white-space: nowrap;
}
.al-filter-clear:hover { color: var(--lhr-cream); }


/* ── Results header ──────────────────────────────── */
.al-results-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 24px 12px;
  max-width: 868px;
  gap: 12px;
  flex-wrap: wrap;
}

.al-results-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--lhr-gdp);
}

.al-results-count {
  font-size: 12px;
  color: var(--lhr-text-light);
  flex-shrink: 0;
}


/* ── Listview wrapper ────────────────────────────── */
.al-listview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px 32px;
  max-width: 868px;
}


/* ── Listing card (lc) ───────────────────────────── */
.lc {
  background: var(--lhr-card);
  border: 1px solid var(--lhr-bdr);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  scroll-margin-top: 16px;
}
.lc:hover {
  border-color: var(--lhr-gold);
  box-shadow: 0 4px 20px rgba(47,79,58,0.1);
}
.lc.is-open {
  border-color: var(--lhr-gold);
  box-shadow: 0 6px 28px rgba(47,79,58,0.15);
}

/* Top row */
.lc__top {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
}

/* Accent bar */
.lc__accent {
  width: 4px;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--lhr-gd);
  align-self: stretch;
  min-height: 72px;
  transition: background 0.2s;
}
.lc:hover .lc__accent,
.lc.is-open .lc__accent { background: var(--lhr-gold); }

/* Info block */
.lc__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Name + badge row */
.lc__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lc__name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--lhr-gd);
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.15s;
}
.lc__name:hover,
.lc.is-open .lc__name { color: var(--lhr-gold); }

/* Badges */
.lc__badge {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  background: var(--lhr-gd);
  color: var(--lhr-cream);
}
.lc__badge--featured    { background: var(--lhr-gold);  color: var(--lhr-text); }
.lc__badge--therapeutic { background: #5A2D82; color: #fff; }
.lc__badge--accessible  { background: #1A6B9A; color: #fff; }

/* Location + phone row */
.lc__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lc__loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--lhr-text-light);
}

.lc__phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--lhr-text-mid);
}
.lc__phone a {
  color: var(--lhr-gd);
  font-weight: 600;
  text-decoration: none;
}
.lc__phone a:hover { color: var(--lhr-gold); }

/* Service tags */
.lc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.lc__tag {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  background: var(--lhr-green-light);
  color: var(--lhr-gd);
  border: 1px solid var(--lhr-green-bdr);
}

/* Good For — collapsed */
.lc__goodfor {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.lc__gf-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lhr-text-light);
  flex-shrink: 0;
}
.lc__gf {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  background: #fff;
  color: var(--lhr-text-mid);
  border: 1px solid var(--lhr-bdr);
}

/* Top bullet preview */
.lc__preview {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background: var(--lhr-green-light);
  border-radius: 7px;
  padding: 8px 10px;
  border: 1px solid var(--lhr-green-bdr);
}
.lc__preview-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lhr-gd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.lc__preview-text {
  font-size: 11.5px;
  color: var(--lhr-gd);
  line-height: 1.5;
  font-weight: 500;
}

/* Expand button */
.lc__actions { flex-shrink: 0; align-self: center; }

.lc__expand-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 7px;
  border: 1.5px solid var(--lhr-gd);
  background: transparent;
  color: var(--lhr-gd);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  font-family: inherit;
}
.lc__expand-btn:hover,
.lc.is-open .lc__expand-btn {
  background: var(--lhr-gd);
  color: var(--lhr-cream);
}

.lc__expand-icon {
  display: inline-flex;
  transition: transform 0.3s;
}
.lc.is-open .lc__expand-icon { transform: rotate(180deg); }


/* ── Expanded panel ──────────────────────────────── */
.lc__panel {
  border-top: 1px solid var(--lhr-bdl);
  animation: lhrSlideDown 0.25s ease;
}
.lc__panel[hidden] { display: none; }

@keyframes lhrSlideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lc__panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
}

.lc__pcol { padding: 16px 18px; }
.lc__pcol:not(:last-child) { border-right: 1px solid var(--lhr-bdl); }

.lc__pcol-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lhr-text-light);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--lhr-bdl);
}

/* Bullets in panel */
.lc__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lc__bullet {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--lhr-text-mid);
  line-height: 1.5;
}
.lc__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lhr-gd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Good For — expanded */
.lc__gf-expanded {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.lc__gf-pill {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: #fff;
  color: var(--lhr-text-mid);
  border: 1px solid var(--lhr-bdr);
}

/* Not suitable */
.lc__nrec { margin-top: 10px; }
.lc__nrec-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lhr-red-text);
  margin-bottom: 5px;
  display: block;
}
.lc__nrec-pills { display: flex; flex-wrap: wrap; gap: 4px; }
.lc__nrec-pill {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10.5px;
  background: var(--lhr-red-bg);
  color: var(--lhr-red-text);
  border: 1px solid var(--lhr-red-bdr);
}

/* CTA column */
.lc__pcol-cta { display: flex; flex-direction: column; gap: 8px; }

.lc__btn-primary {
  padding: 10px 16px;
  background: var(--lhr-gold);
  color: var(--lhr-text);
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: block;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.lc__btn-primary:hover { background: var(--lhr-gold-hov); color: var(--lhr-cream); }

.lc__btn-secondary {
  padding: 9px 16px;
  background: var(--lhr-gd);
  color: var(--lhr-cream);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: block;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.lc__btn-secondary:hover { background: var(--lhr-gdp); }

.lc__cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lhr-gd);
  text-decoration: none;
  padding: 9px 16px;
  background: var(--lhr-green-light);
  border-radius: 7px;
  border: 1px solid var(--lhr-green-bdr);
  transition: background 0.15s;
}
.lc__cta-phone:hover { background: #DDE8DC; }

.lc__divider {
  border: none;
  border-top: 1px dashed var(--lhr-bdl);
  margin: 2px 0;
}

/* View Full Listing link */
.lc__full-listing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lhr-gold);
  text-decoration: none;
  padding: 2px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s;
}
.lc__full-listing:hover { color: var(--lhr-gold-hov); text-decoration: underline; }

/* Empty state */
.lc__pcol-empty {
  font-size: 12px;
  color: var(--lhr-text-light);
  font-style: italic;
}


/* ── No results ──────────────────────────────────── */
.al-no-results {
  padding: 48px 24px;
  text-align: center;
}
.al-no-results__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--lhr-gdp);
  margin-bottom: 8px;
}
.al-no-results__sub {
  font-size: 13px;
  color: var(--lhr-text-light);
  margin-bottom: 20px;
}
.al-no-results__btn {
  display: inline-block;
  padding: 11px 24px;
  background: var(--lhr-gd);
  color: var(--lhr-cream);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.al-no-results__btn:hover { background: var(--lhr-gdp); }


/* ── Pagination ──────────────────────────────────── */
.al-pagination {
  padding: 8px 24px 40px;
  max-width: 868px;
}
.al-pagination .page-numbers {
  display: flex;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}
.al-pagination .page-numbers li a,
.al-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--lhr-bdr);
  color: var(--lhr-gd);
  background: var(--lhr-card);
  transition: all 0.15s;
}
.al-pagination .page-numbers li a:hover {
  border-color: var(--lhr-gold);
  background: #FBF5E6;
  color: var(--lhr-gold);
}
.al-pagination .page-numbers li span.current {
  background: var(--lhr-gd);
  color: var(--lhr-cream);
  border-color: var(--lhr-gd);
}


/* ═══════════════════════════════════════════════════
   FORMAT 3 — SINGLE LISTING PAGE (single-listing.php)
   Prefix: sl-
═══════════════════════════════════════════════════ */

/* ── Breadcrumb ──────────────────────────────────── */
.sl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--lhr-text-light);
  padding: 13px 24px;
  background: var(--lhr-bg);
  border-bottom: 1px solid var(--lhr-bdr);
  flex-wrap: wrap;
}
.sl-breadcrumb a {
  color: var(--lhr-gd);
  text-decoration: none;
  font-weight: 600;
}
.sl-breadcrumb a:hover { color: var(--lhr-gold); }
.sl-breadcrumb__sep  { color: var(--lhr-bdr); font-size: 10px; }
.sl-breadcrumb__cur  { color: var(--lhr-text-mid); }


/* ── Page wrapper ────────────────────────────────── */
.sl-wrap {
  padding: 20px 24px 40px;
  max-width: 984px;
}


/* ── Single card shell ───────────────────────────── */
.sl-card {
  background: var(--lhr-card);
  border: 1px solid var(--lhr-bdr);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}


/* ── Hero ────────────────────────────────────────── */
.sl-card__hero {
  height: 220px;
  background: linear-gradient(150deg, #B8CCB8, #6A9A7A);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.sl-card__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sl-card__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,51,41,0.82) 0%, rgba(30,51,41,0.08) 65%, transparent 100%);
}
.sl-card__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px 24px;
  width: 100%;
}
.sl-card__hero-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 6px;
}
.sl-card__hero-loc {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(247,241,227,0.78);
}


/* ── Badges ──────────────────────────────────────── */
.sl-card__badges {
  display: flex;
  gap: 7px;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid var(--lhr-bdl);
  flex-wrap: wrap;
}
.sl-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.sl-badge--verified {
  background: var(--lhr-green-light);
  color: var(--lhr-gd);
  border: 1px solid var(--lhr-green-bdr);
}
.sl-badge--updated {
  background: #F0F0F0;
  color: var(--lhr-text-mid);
  border: 1px solid var(--lhr-bdr);
}


/* ── Two-column layout ───────────────────────────── */
.sl-card__cols {
  display: grid;
  grid-template-columns: 1fr 270px;
  align-items: start;
}


/* ── Main column ─────────────────────────────────── */
.sl-card__main { padding: 24px; border-right: 1px solid var(--lhr-bdl); }

.sl-sec { margin-bottom: 26px; }
.sl-sec:last-child { margin-bottom: 0; }

.sl-sec__title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lhr-text-light);
  margin: 0 0 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--lhr-bdl);
}

/* Description */
.sl-desc p {
  font-size: 13px;
  color: var(--lhr-text-mid);
  line-height: 1.78;
}
.sl-desc p + p { margin-top: 12px; }

/* Service tags — clickable links */
.sl-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sl-tag {
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--lhr-green-light);
  color: var(--lhr-gd);
  border: 1px solid var(--lhr-green-bdr);
  text-decoration: none;
  transition: all 0.15s;
}
.sl-tag:hover {
  background: var(--lhr-gd);
  color: var(--lhr-cream);
  border-color: var(--lhr-gd);
}

/* Good For — flex wrap, no fixed grid */
.sl-gf-wrap { display: flex; flex-wrap: wrap; gap: 7px; }
.sl-gf {
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--lhr-bdl);
  font-size: 11.5px;
  color: var(--lhr-text-mid);
  font-weight: 600;
}

/* Loved bullets */
.sl-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sl-bullet {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--lhr-text-mid);
  line-height: 1.55;
}
.sl-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lhr-gd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Not recommended */
.sl-nrec { display: flex; flex-wrap: wrap; gap: 6px; }
.sl-nrec-pill {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  background: var(--lhr-red-bg);
  color: var(--lhr-red-text);
  border: 1px solid var(--lhr-red-bdr);
}


/* ── Sidebar ─────────────────────────────────────── */
.sl-card__sidebar {
  padding: 20px;
  background: #FDFAF5;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 20px;
  align-self: start;
}

/* Map — placeholder linked version */
.sl-map--placeholder {
  height: 140px;
  border-radius: 10px;
  background: #C8D8C0;
  display: block;
  border: 1px solid var(--lhr-bdr);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}
.sl-map--placeholder:hover { opacity: 0.88; }

.sl-map__grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(var(--lhr-gd) 1px, transparent 1px),
    linear-gradient(90deg, var(--lhr-gd) 1px, transparent 1px);
  background-size: 22px 22px;
}

.sl-map__roads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.sl-map__pin {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 22px;
  height: 22px;
  background: var(--lhr-gold);
  border-radius: 50% 50% 50% 0;
  border: 2.5px solid #fff;
}

.sl-map__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30,51,41,0.78);
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--lhr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Map — embed version */
.sl-map--embed {
  border-radius: 10px;
  overflow: hidden;
}
.sl-map--embed iframe {
  display: block;
  border-radius: 10px;
}
.sl-map__link {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--lhr-gd);
  text-decoration: none;
  text-align: center;
  padding: 6px 0 0;
}
.sl-map__link:hover { color: var(--lhr-gold); }

/* Sidebar sections */
.sl-sidebar-section { display: flex; flex-direction: column; gap: 0; }

.sl-sidebar-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lhr-text-light);
  margin: 0 0 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--lhr-bdl);
}

/* Contact rows */
.sl-contact { display: flex; flex-direction: column; gap: 10px; }
.sl-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--lhr-text-mid);
}
.sl-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--lhr-green-light);
  border: 1px solid var(--lhr-green-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sl-contact-row a {
  color: var(--lhr-gd);
  font-weight: 600;
  text-decoration: none;
}
.sl-contact-row a:hover { color: var(--lhr-gold); }

/* Disclaimer */
.sl-disclaimer {
  background: var(--lhr-amber-bg);
  border: 1px solid var(--lhr-amber-bdr);
  border-radius: 9px;
  padding: 12px 13px;
}
.sl-disclaimer strong {
  font-size: 11px;
  font-weight: 700;
  color: #3A2A00;
  display: block;
  margin-bottom: 4px;
}
.sl-disclaimer p {
  font-size: 11px;
  color: var(--lhr-amber-text);
  line-height: 1.6;
  margin: 0;
}

/* CTA stack */
.sl-cta-stack { display: flex; flex-direction: column; gap: 8px; }

.sl-btn-primary {
  padding: 13px 20px;
  background: var(--lhr-gold);
  color: var(--lhr-text);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  display: block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.sl-btn-primary:hover { background: var(--lhr-gold-hov); color: var(--lhr-cream); }

.sl-btn-call {
  padding: 11px 20px;
  background: var(--lhr-gd);
  color: var(--lhr-cream);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: block;
  text-decoration: none;
  line-height: 1.35;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.sl-btn-call:hover  { background: var(--lhr-gdp); }
.sl-btn-call span   { display: block; font-size: 11px; opacity: 0.72; font-weight: 400; margin-top: 2px; }

.sl-btn-ghost {
  padding: 10px 20px;
  background: transparent;
  color: var(--lhr-gd);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  display: block;
  text-decoration: none;
  border: 1.5px solid var(--lhr-bdr);
  cursor: pointer;
  transition: all 0.15s;
}
.sl-btn-ghost:hover { border-color: var(--lhr-gd); background: var(--lhr-green-light); }


/* ── Related listings ────────────────────────────── */
.sl-related {
  background: var(--lhr-card);
  border: 1px solid var(--lhr-bdr);
  border-radius: 14px;
  padding: 24px;
}

.sl-related__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--lhr-gdp);
  margin: 0 0 4px;
}

.sl-related__sub {
  font-size: 12px;
  color: var(--lhr-text-light);
  margin: 0 0 18px;
}

.sl-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.sl-rc {
  background: var(--lhr-card);
  border: 1px solid var(--lhr-bdr);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
}
.sl-rc:hover {
  border-color: var(--lhr-gold);
  box-shadow: 0 4px 14px rgba(47,79,58,0.12);
  transform: translateY(-2px);
}

.sl-rc__img {
  height: 90px;
  position: relative;
  overflow: hidden;
  background: var(--lhr-green-light);
}
.sl-rc__img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sl-rc__img-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #C8D8CA, #9AB8A0);
}

.sl-rc__body { padding: 10px 12px; }

.sl-rc__name {
  font-family: 'Playfair Display', serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--lhr-gd);
  line-height: 1.3;
  margin-bottom: 4px;
}
.sl-rc:hover .sl-rc__name { color: var(--lhr-gold); }

.sl-rc__loc {
  font-size: 11px;
  color: var(--lhr-text-light);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sl-rc__tags { display: flex; gap: 4px; flex-wrap: wrap; }
.sl-rc__tag {
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  background: var(--lhr-green-light);
  color: var(--lhr-gd);
  border: 1px solid var(--lhr-green-bdr);
}

.sl-related__more { text-align: center; }
.sl-related__more-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--lhr-gold);
  text-decoration: none;
}
.sl-related__more-link:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Archive */
  .al-filter-form      { flex-direction: column; align-items: stretch; }
  .al-filter-field     { width: 100%; }
  .al-filter-input,
  .al-filter-select    { min-width: auto; width: 100%; }
  .al-filter-btn       { width: 100%; }
  .al-results-header   { flex-direction: column; gap: 4px; }
  .al-listview         { padding: 0 16px 24px; }
  .al-results-header   { padding: 16px 16px 8px; }

  /* Card panel — stack columns on mobile */
  .lc__panel-inner     { grid-template-columns: 1fr; }
  .lc__pcol:not(:last-child) { border-right: none; border-bottom: 1px solid var(--lhr-bdl); }

  /* Single listing */
  .sl-wrap             { padding: 16px 16px 32px; }
  .sl-card__cols       { grid-template-columns: 1fr; }
  .sl-card__main       { border-right: none; border-bottom: 1px solid var(--lhr-bdl); }
  .sl-card__sidebar    { position: static; }
  .sl-card__hero       { height: 180px; }
  .sl-card__hero-name  { font-size: 20px; }
  .sl-related__grid    { grid-template-columns: 1fr; }

  /* Breadcrumb */
  .sl-breadcrumb       { padding: 10px 16px; font-size: 11px; }
}

@media (max-width: 500px) {
  .lc__top             { flex-wrap: wrap; }
  .lc__actions         { width: 100%; }
  .lc__expand-btn      { width: 100%; justify-content: center; }
  .al-filter-bar       { padding: 12px 16px; }
}
