/* Vibe Tampa - hero */

.vt-site-tagline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px 0;
  text-align: center;
}

.vt-site-tagline p {
  font-family: var(--vt-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vt-ink);
  opacity: 0.75;
  margin: 0;
}

.vt-hero {
  background: linear-gradient(135deg, var(--vt-pink) 0%, var(--vt-coral) 45%, var(--vt-purple) 100%);
  padding: 56px 24px;
}

.vt-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  align-items: center;
}

.vt-hero__eyebrow {
  color: var(--vt-yellow);
  display: inline-block;
  margin-bottom: 12px;
}

.vt-hero__headline {
  color: var(--vt-cream);
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 16px;
}

.vt-hero__dek {
  color: var(--vt-cream-alt);
  font-family: var(--vt-font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 46ch;
}

.vt-btn--coral {
  display: inline-block;
  background-color: var(--vt-coral);
  color: var(--vt-cream);
  font-family: var(--vt-font-body);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.vt-btn--coral:hover {
  background-color: var(--vt-coral-deep);
  color: var(--vt-cream);
}

.vt-btn--yellow {
  display: inline-block;
  background-color: var(--vt-yellow);
  color: var(--vt-purple-deep);
  font-family: var(--vt-font-body);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.vt-btn--yellow:hover {
  background-color: #fff;
  color: var(--vt-purple-deep);
  transform: translateY(-1px);
}

.vt-hero__media {
  border-radius: 12px;
  overflow: hidden;
}

.vt-hero__image {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
}

.vt-hero__image--placeholder {
  background-color: var(--vt-cream-alt);
}

.vt-hero__rail {
  width: 300px;
  min-height: 250px;
  border: 1px solid rgba(250, 243, 231, 0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--vt-cream-alt);
  opacity: 0.45;
}

.vt-hero__rail-size {
  font-family: var(--vt-font-label);
  font-size: 0.7rem;
}

@media (max-width: 960px) {
  .vt-hero__inner {
    grid-template-columns: 1fr;
  }
  .vt-hero__rail {
    width: 100%;
  }
}

/* Hidden per feedback 2026-07-15 — still reserved in markup for when a
   real AdSense unit is ready to go here; toggle display back to flex
   to re-enable. */
.vt-hero__rail {
  display: none;
}
