/* ============================================================
   vineyard-tours.css — /vineyard-tours page styles
   ============================================================ */

/* Hero image — full-bleed, escapes main's 20px side padding */
.vt-hero {
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 16px; /* breathing room below the site nav */
  overflow: hidden;
}

.vt-hero__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

/* Page title */
.vt-page-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem;
  line-height: 1.15;
}

.vt-page {
  padding: 2rem 0 4rem;
}

/* Intro callout block */
.vt-intro {
  padding: 1.1rem 1.4rem;
  margin-bottom: 2.75rem;
  background: var(--surface);
  border-radius: 0 8px 8px 0;
}

.vt-intro p {
  font-family: var(--ff-display);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* Area / region headings */
.vt-area-heading {
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin: 2.75rem 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid var(--frame-border);
}

/* ============================================================
   Operator cards
   ============================================================ */

.vt-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.25rem;
}

.vt-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.875rem;
}

.vt-card-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 3px;
  color: var(--text);
}

.vt-card-area {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Badges */
.vt-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.vt-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-family: var(--ff-body);
}

.vt-badge--full    { background: #E6F3EC; color: #2a6e4f; }
.vt-badge--half    { background: #FDF0DC; color: #854F0B; }
.vt-badge--multi   { background: #E6F1FB; color: #185FA5; }
.vt-badge--shuttle { background: #EEEDFE; color: #3C3489; }

/* Meta grid */
.vt-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 8px 18px;
  margin-bottom: 1rem;
}

.vt-meta-item {
  font-size: 13px;
  line-height: 1.5;
}

.vt-meta-label {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-light);
  margin-bottom: 2px;
  font-family: var(--ff-ui);
}

.vt-meta-value {
  color: var(--text);
}

.vt-meta-yes {
  color: var(--accent);
  font-weight: 600;
}

.vt-meta-no {
  color: #854F0B;
}

/* Description and link */
.vt-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  border-top: 1px solid var(--frame-border);
  padding-top: 0.875rem;
  margin-top: 0.25rem;
}

.vt-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--ff-ui);
}

.vt-card-link:hover {
  text-decoration: underline;
  color: var(--accent-d);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 600px) {
  .vt-card-header {
    flex-direction: column;
    gap: 0.6rem;
  }

  .vt-badges {
    justify-content: flex-start;
  }

  .vt-meta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .vt-meta {
    grid-template-columns: 1fr;
  }
}
