/*
 * Ourhotels — Homepage section styles
 * Enqueued only on the front page (is_front_page() in functions.php).
 * Depends on tokens defined in style.css.
 */

/* ─── Eyebrow / section heads ─────────────────────────────── */

.oh-section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
.oh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--oh-fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oh-brand);
  margin-bottom: 12px;
}
.oh-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}
.oh-section__head h2 {
  font-size: var(--oh-fs-3xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--oh-text);
}
.oh-lead {
  font-size: var(--oh-fs-lg);
  color: var(--oh-text-muted);
  max-width: 56ch;
  margin: 0;
}
.oh-head-link {
  align-self: end;
  font-size: var(--oh-fs-sm);
  font-weight: 600;
  color: var(--oh-brand);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  text-decoration: none;
}

/* ════════════════════════════════════════════════════════════
   1. HERO  [oh_hero] container
   ════════════════════════════════════════════════════════════ */

.oh-hero {
  position: relative;
  background: var(--oh-bg);
  padding: 0 var(--oh-gutter) 0;
}
.oh-hero__inner {
  position: relative;
  max-width: 1400px;
  margin: 24px auto 0;
  border-radius: var(--oh-radius-xl);
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: end;
  color: var(--oh-text-on-dark);
}

/* Video / poster background */
.oh-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.oh-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.65) 100%),
    linear-gradient(135deg, rgba(15,23,42,0.20) 0%, rgba(30,58,95,0.20) 100%);
  z-index: 1;
}
.oh-hero__video-pause {
  position: absolute; bottom: 16px; right: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.4); color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 4;
  font-family: inherit;
}

/* Hero split: copy left, Iceland map right */
.oh-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 64px 40px 210px;
}
.oh-hero__content { padding: 0; max-width: none; }

.oh-hero__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--oh-fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 12px;
  border-radius: var(--oh-radius-pill);
  margin-bottom: 24px;
}
.oh-hero__kicker .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--oh-brand-accent);
}

.oh-hero__title {
  font-size: var(--oh-fs-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--oh-hero-text);
  max-width: 14ch;
}
.oh-hero__sub {
  font-size: var(--oh-fs-lg);
  color: rgba(255,255,255,0.85);
  max-width: 50ch;
  margin: 0 0 28px;
}
.oh-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Iceland map panel */
.oh-hero__map {
  position: relative;
  padding: 20px 22px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--oh-radius-lg);
  backdrop-filter: blur(6px);
}
.oh-hero__map-head {
  display: flex; justify-content: space-between; align-items: baseline;
  color: rgba(255,255,255,0.95);
  margin-bottom: 10px;
}
.oh-hero__map-head .title { font-size: 13px; font-weight: 600; }
.oh-hero__map-head .meta {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
}
.oh-hero__map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 500 / 290;
}
.oh-hero__map-canvas svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* Single pin */
.oh-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
  z-index: 2;
}
.oh-pin .pin-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--oh-brand-accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(199,149,109,0.30), 0 2px 6px rgba(0,0,0,0.45);
  transition: transform var(--oh-duration) var(--oh-ease),
              box-shadow var(--oh-duration) var(--oh-ease);
}
.oh-pin .pin-tag {
  font: 600 10px/1 var(--oh-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 4px 8px;
  background: rgba(15,23,42,0.78);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--oh-radius-pill);
  transition: background var(--oh-duration) var(--oh-ease),
              transform var(--oh-duration) var(--oh-ease);
}
.oh-pin:hover .pin-dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 5px rgba(199,149,109,0.40), 0 3px 10px rgba(0,0,0,0.55);
}
.oh-pin:hover .pin-tag {
  background: var(--oh-brand-accent);
  transform: translateY(-1px);
}
.oh-pin:focus-visible .pin-dot {
  box-shadow: 0 0 0 5px rgba(255,255,255,0.6), 0 3px 10px rgba(0,0,0,0.55);
  outline: none;
}

/* Cluster pin: two properties at one location */
.oh-pin--cluster {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 5px;
  z-index: 3;
}
.oh-pin--cluster .pin-tag--split {
  display: inline-flex; align-items: stretch;
  padding: 0;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--oh-radius-pill);
  overflow: hidden;
  font: 600 10px/1 var(--oh-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.oh-pin--cluster .pin-tag--split .prefix {
  padding: 5px 7px 5px 10px;
  color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center;
}
.oh-pin--cluster .pin-tag--split a {
  padding: 5px 9px;
  color: #fff;
  text-decoration: none;
  border-left: 1px solid rgba(255,255,255,0.15);
  transition: background var(--oh-duration) var(--oh-ease),
              color var(--oh-duration) var(--oh-ease);
  display: inline-flex; align-items: center;
}
.oh-pin--cluster .pin-tag--split a:hover {
  background: var(--oh-brand-accent);
  color: #fff;
}
.oh-pin--cluster .pin-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--oh-brand-accent);
  border: 2px solid #fff;
  box-shadow:
    0 0 0 3px rgba(199,149,109,0.30),
    0 0 0 8px rgba(199,149,109,0.14),
    0 2px 6px rgba(0,0,0,0.45);
  transition: transform var(--oh-duration) var(--oh-ease);
}
.oh-pin--cluster:hover .pin-dot { transform: scale(1.25); }

.oh-hero__map-legend {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.oh-hero__map-legend a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0;
}
.oh-hero__map-legend a:hover { color: #fff; }
.oh-hero__map-legend .num {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.30);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.oh-hero__map-legend a:hover .num {
  background: var(--oh-brand-accent);
  border-color: var(--oh-brand-accent);
}

/* Booking wizard container — pure positioning shell.
   The plugin's [oh_search_wizard_front_page] outputs its own white card
   with shadow and rounded corners, so this wrapper must be invisible —
   no background, no padding, no border-radius — or you get a thin white
   sliver of the wrapper showing below the form. */
.oh-bookcard {
  position: absolute;
  left: 40px; right: 40px; bottom: 32px;
  background: transparent;
  color: var(--oh-text);
  padding: 0;
  border-radius: var(--oh-radius-xl);
  box-shadow: none;
  z-index: 3;
}
.oh-bookcard > *:first-child { border-radius: var(--oh-radius-xl); }

/* Responsive: stack hero layout, booking card drops below */
@media (max-width: 980px) {
  .oh-hero__layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 20px 220px;
  }
}
@media (max-width: 880px) {
  .oh-hero__inner { min-height: 460px; }
  .oh-hero__layout { padding: 32px 16px 32px; }
  .oh-bookcard {
    position: static;
    margin: -1px var(--oh-gutter) 0;
    left: auto; right: auto; bottom: auto;
  }
  .oh-hero__map { padding: 16px 16px 18px; }
  .oh-hero__map-legend { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   2. SEASONAL BANNER  [oh_seasonal_banner]
   ════════════════════════════════════════════════════════════ */

.oh-banner {
  background: var(--oh-bg);
  padding: 18px var(--oh-gutter);
  border-bottom: 1px solid var(--oh-border);
}
.oh-banner__inner {
  max-width: var(--oh-content-max);
  margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  font-size: var(--oh-fs-base);
  color: var(--oh-text);
}
.oh-banner__pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--oh-fs-xs); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--oh-brand);
  background: var(--oh-brand-soft);
  padding: 5px 10px;
  border-radius: var(--oh-radius-pill);
  flex-shrink: 0;
}
.oh-banner__live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--oh-success);
  box-shadow: 0 0 0 3px var(--oh-success-soft);
}
.oh-banner__when {
  margin-left: auto;
  color: var(--oh-text-muted);
  font-size: var(--oh-fs-sm);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .oh-banner__inner { flex-wrap: wrap; }
  .oh-banner__when { margin-left: 0; flex-basis: 100%; }
}

/* ════════════════════════════════════════════════════════════
   3. WHY US  [oh_why_us]
   ════════════════════════════════════════════════════════════ */

.oh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .oh-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .oh-why-grid { grid-template-columns: 1fr; } }

.oh-why-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--oh-radius-md);
  background: var(--oh-brand-soft);
  color: var(--oh-brand);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.oh-why-item__icon svg { width: 22px; height: 22px; }
.oh-why-item h3 {
  font-size: var(--oh-fs-lg);
  font-weight: 600;
  margin: 0 0 6px;
}
.oh-why-item p {
  margin: 0;
  color: var(--oh-text-muted);
  font-size: var(--oh-fs-sm);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════
   4. HOTELS GRID  [oh_hotels_grid]
   ════════════════════════════════════════════════════════════ */

.oh-hotels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .oh-hotels { grid-template-columns: 1fr; gap: 16px; } }

.oh-hotel {
  background: var(--oh-surface);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--oh-duration) var(--oh-ease),
              box-shadow var(--oh-duration) var(--oh-ease);
}
.oh-hotel:hover { transform: translateY(-2px); box-shadow: var(--oh-shadow-md); }
.oh-hotel__photo {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--oh-brand-soft);
}
.oh-hotel__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.oh-hotel__photo .region {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.96);
  color: var(--oh-text);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--oh-radius-pill);
  box-shadow: var(--oh-shadow-sm);
}
.oh-hotel__body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.oh-hotel__title {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.oh-hotel h3 {
  font-size: var(--oh-fs-xl);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--oh-text);
}
.oh-hotel__rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--oh-fs-sm);
  color: var(--oh-text-muted);
  white-space: nowrap;
}
.oh-hotel__rating svg { width: 14px; height: 14px; color: var(--oh-brand-accent); }
.oh-hotel__desc {
  font-size: var(--oh-fs-sm);
  color: var(--oh-text-muted);
  line-height: 1.55;
  margin: 0;
}
.oh-hotel__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.oh-hotel__tag {
  font-size: 11px;
  color: var(--oh-text);
  background: var(--oh-bg-soft);
  border: 1px solid var(--oh-border);
  padding: 4px 9px;
  border-radius: var(--oh-radius-pill);
}
.oh-hotel__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--oh-border);
  gap: 12px;
}
.oh-hotel__price small {
  display: block;
  font-size: var(--oh-fs-xs);
  color: var(--oh-text-muted);
  margin-bottom: 2px;
}
.oh-hotel__price b {
  font-size: var(--oh-fs-lg);
  font-weight: 700;
  color: var(--oh-text);
}
.oh-hotel__price b em {
  font-size: var(--oh-fs-sm);
  color: var(--oh-text-muted);
  font-style: normal;
  font-weight: 400;
  margin-left: 4px;
}
.oh-hotel__cta {
  background: var(--oh-brand);
  color: var(--oh-text-on-dark);
  padding: 10px 16px;
  border-radius: var(--oh-radius-md);
  font-size: var(--oh-fs-sm);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.oh-hotel__cta:hover { background: var(--oh-brand-dark); color: var(--oh-text-on-dark); }

/* ════════════════════════════════════════════════════════════
   5. TRAVEL TIPS  [oh_travel_tips]
   ════════════════════════════════════════════════════════════ */

.oh-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .oh-tips { grid-template-columns: 1fr; gap: 16px; } }
.oh-tip {
  background: var(--oh-surface);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.oh-tip__photo {
  aspect-ratio: 4 / 3;
  background: var(--oh-bg-soft);
  position: relative;
}
.oh-tip__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.oh-tip__photo .cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--oh-bg);
  color: var(--oh-brand);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--oh-radius-pill);
  border: 1px solid var(--oh-border);
}
.oh-tip__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.oh-tip h3 { font-size: var(--oh-fs-lg); font-weight: 700; margin: 0; line-height: 1.3; letter-spacing: -0.005em; }
.oh-tip p { margin: 0; font-size: var(--oh-fs-sm); color: var(--oh-text-muted); }
.oh-tip__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 12px;
  font-size: var(--oh-fs-xs);
  color: var(--oh-text-muted);
}
.oh-tip__meta a { font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   6. REVIEWS SUMMARY  [oh_reviews_summary]
   ════════════════════════════════════════════════════════════ */

.oh-reviews {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) { .oh-reviews { grid-template-columns: 1fr; gap: 20px; } }

.oh-rev-agg {
  background: var(--oh-surface);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.oh-rev-agg__score {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--oh-text);
}
.oh-rev-agg__score sub {
  font-size: 1rem; color: var(--oh-text-muted); font-weight: 400;
}
.oh-rev-agg__stars { display: flex; gap: 3px; margin: 10px 0 12px; color: var(--oh-brand-accent); }
.oh-rev-agg__stars svg { width: 18px; height: 18px; }
.oh-rev-agg__count { font-size: var(--oh-fs-sm); color: var(--oh-text-muted); }
.oh-rev-agg__src {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--oh-border);
  font-size: var(--oh-fs-xs);
  color: var(--oh-text-faint);
  letter-spacing: 0.04em;
}

.oh-rev-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .oh-rev-quotes { grid-template-columns: 1fr; } }
.oh-quote {
  background: var(--oh-surface);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-lg);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.oh-quote__stars { display: flex; gap: 2px; color: var(--oh-brand-accent); }
.oh-quote__stars svg { width: 14px; height: 14px; }
.oh-quote__text {
  font-size: var(--oh-fs-base);
  color: var(--oh-text);
  margin: 0;
  line-height: 1.5;
}
.oh-quote__who {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: auto;
  font-size: var(--oh-fs-xs);
  color: var(--oh-text-muted);
}
.oh-quote__who b { color: var(--oh-text); font-weight: 600; font-size: var(--oh-fs-sm); }

/* ════════════════════════════════════════════════════════════
   7. COMPARE  [oh_compare_hotels]
   ════════════════════════════════════════════════════════════ */

.oh-compare-wrap { overflow-x: auto; }
.oh-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--oh-surface);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-lg);
  overflow: hidden;
  min-width: 720px;
}
.oh-compare th, .oh-compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--oh-border);
  font-size: var(--oh-fs-sm);
  vertical-align: middle;
}
.oh-compare thead th {
  background: var(--oh-bg-soft);
  font-weight: 600;
  color: var(--oh-text);
  font-size: var(--oh-fs-sm);
  letter-spacing: -0.005em;
}
.oh-compare thead th small {
  display: block; font-weight: 400;
  color: var(--oh-text-muted); font-size: 11px;
  margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase;
}
.oh-compare tbody tr:last-child td { border-bottom: none; }
.oh-compare th:first-child {
  color: var(--oh-text-muted); font-weight: 500; font-size: var(--oh-fs-xs);
  text-transform: uppercase; letter-spacing: 0.08em; width: 22%;
}
.oh-compare .check { color: var(--oh-success); }
.oh-compare .x { color: var(--oh-text-faint); }

/* ════════════════════════════════════════════════════════════
   8. FAQ  [oh_faq]
   ════════════════════════════════════════════════════════════ */

.oh-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
@media (max-width: 760px) { .oh-faq { grid-template-columns: 1fr; } }
.oh-faq details {
  border-bottom: 1px solid var(--oh-border);
  padding: 18px 0;
}
.oh-faq details[open] summary { color: var(--oh-brand); }
.oh-faq summary {
  list-style: none;
  cursor: pointer;
  font-size: var(--oh-fs-base);
  font-weight: 600;
  color: var(--oh-text);
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  padding-right: 4px;
}
.oh-faq summary::-webkit-details-marker { display: none; }
.oh-faq summary .plus {
  width: 22px; height: 22px; flex: 0 0 22px;
  border-radius: 50%;
  border: 1px solid var(--oh-border);
  display: grid; place-items: center;
  transition: transform var(--oh-duration) var(--oh-ease),
              background var(--oh-duration) var(--oh-ease);
  color: var(--oh-text-muted);
  font-size: 13px;
  line-height: 1;
}
.oh-faq details[open] summary .plus {
  background: var(--oh-brand);
  color: var(--oh-text-on-dark);
  border-color: var(--oh-brand);
  transform: rotate(45deg);
}
.oh-faq details p {
  margin: 12px 0 0;
  color: var(--oh-text-muted);
  font-size: var(--oh-fs-sm);
  max-width: 60ch;
}

/* ════════════════════════════════════════════════════════════
   9. TRUST STRIP  [oh_trust_strip]
   ════════════════════════════════════════════════════════════ */

.oh-trust {
  background: var(--oh-brand);
  color: var(--oh-text-on-dark);
  padding: 0 var(--oh-gutter);
}
.oh-trust__inner {
  max-width: var(--oh-content-max);
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .oh-trust__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px 0; }
}
.oh-trust__item {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--oh-fs-sm);
  color: rgba(255,255,255,0.92);
}
.oh-trust__item svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--oh-brand-accent); }
.oh-trust__item b { color: #fff; font-weight: 600; margin-right: 4px; }
