/* === Vehicle Hero Section =============================================== */

.vehicle-hero-wrap {
  margin: 0 0 1rem;
}

.vehicle-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.vh-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

/* --- Text Column --- */
.vh-copy {
  flex: 1 1 400px;
  color: #111;
}

.vh-eyebrow {
  display: block;
  font-weight: 700;
  color: #b70000;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.vh-title {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 800;
  margin: 0.25rem 0 0.75rem;
}

.vh-lede {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.vh-list {
  list-style: disc inside;
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: #444;
}

.vh-list.compact li {
  margin-bottom: 0.25rem;
}

.vh-footnote {
  font-size: 0.8rem;
  color: #666;
  margin-top: 1rem;
}

/* --- Media Column --- */
.vh-media-col {
  flex: 0 0 320px;
  max-width: 100%;
  text-align: center;
}

.vh-media img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

.vh-media figcaption {
  font-size: 0.8rem;
  color: #555;
  margin-top: 0.5rem;
}

/* --- Stats below media --- */
.vh-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.vh-stat {
  text-align: center;
}

.vh-k {
  display: block;
  font-weight: 800;
  font-size: 1.2rem;
  color: #111;
}

.vh-t {
  display: block;
  font-size: 0.8rem;
  color: #666;
}

/* --- Community Section --- */
.vh-community {
  background: #f7f7f7;
  border-left: 4px solid #b70000;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.vh-community .vh-subtitle {
  margin: 0 0 .25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  letter-spacing: normal !important;
}

.vh-community p {
  margin: 0 0 1rem;
  color: #444;
  font-size: .95rem;
}

.vh-btn {
  display: inline-block;
  background: #111;
  color: #fff !important;
  font-weight: 700;
  padding: .6rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s ease, transform .1s ease;
}
.vh-btn:hover { background: #000; transform: translateY(-1px); }

/* --- Gallery Section --- */
.vh-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}

.vh-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.vh-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.vh-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .vh-wrap {
    flex-direction: column;
    align-items: center;
  }
  .vh-media-col { order: -1; width: 100%; }
  .vh-media img { max-width: 500px; margin: 0 auto; }
  .vh-stats { justify-content: flex-start; }
}

/* === Vehicle Hero Section ========================== */
.vehicle-hero {
  position: relative;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  border-radius: 14px;
  padding: 1.5rem 2rem 0 2rem;
  margin: 2rem 0 1rem 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.vh-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}

/* Text side */
.vh-copy {
  flex: 1 1 400px;
  color: #222;
}

.vh-eyebrow {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #b70000;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.vh-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.vh-lede {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Media column */
.vh-media-col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vh-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  margin-bottom: 0;
}

.vh-media img {
  width: 100%;
  height: auto;
  display: block;
}

.vh-media figcaption {
  font-size: 0.85rem;
  color: #555;
  padding: 0.5rem 0.25rem 0;
}

/* === Spec "Button" Styling ========================== */
.vh-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.vh-stat {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  flex: 1 1 100px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.vh-stat:hover {
  border-color: #b70000;
  box-shadow: 0 4px 10px rgba(183, 0, 0, 0.12);
  transform: translateY(-1px);
}

.vh-k {
  display: block;
  font-weight: 700;
  color: #111;
  font-size: 1rem;
}

.vh-t {
  display: block;
  font-size: 0.8rem;
  color: #555;
}

/* Responsive */
@media (max-width: 800px) {
  .vh-wrap { flex-direction: column; }
  .vh-media-col { order: -1; }
}

/* === Position figcaption over image at bottom === */
.vh-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background-color: #f8f8f8;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.vh-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay caption */
.vh-media figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.6rem 1rem 0.7rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  line-height: 1.4;
  pointer-events: none;
}

