/* ==========================================================
   HOMEPAGE FEATURED EVENT — EVENING OF TASTINGS
   Supplemental stylesheet: safe to load after styles.css
========================================================== */

.event-anchor {
  position: relative;
  top: -110px;
  visibility: hidden;
}

.tastings-feature-section {
  padding: 64px 0 72px;
}

.tastings-feature-heading {
  margin-bottom: 32px;
}

.tastings-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.tastings-feature-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 14px;
  background: #08233f;
}

.tastings-feature-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
}

.tastings-feature-content {
  padding: clamp(30px, 4vw, 54px);
}

.tastings-feature-content .mini-label {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tastings-feature-content h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1.08;
}

.tastings-feature-lead {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
  line-height: 1.65;
}

.tastings-event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.tastings-event-facts > div {
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.tastings-event-facts span,
.tastings-event-facts strong {
  display: block;
}

.tastings-event-facts span {
  margin-bottom: 3px;
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tastings-event-facts strong {
  color: #fff;
  font-size: 0.92rem;
}

.event-countdown {
  margin: 0 0 28px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(8, 35, 63, 0.52);
  border: 1px solid rgba(213, 174, 99, 0.36);
}

.event-countdown-label {
  margin: 0 0 13px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
}

.event-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.event-countdown-unit {
  padding: 12px 6px 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.event-countdown-unit strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1;
}

.event-countdown-unit span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-countdown.is-live .event-countdown-grid {
  display: none;
}

.event-countdown.is-live .event-countdown-label {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.tastings-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tastings-secondary-button {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.tastings-secondary-button:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy-dark);
}

@media (max-width: 900px) {
  .tastings-feature-card {
    grid-template-columns: 1fr;
  }

  .tastings-feature-image-link {
    padding: 12px;
  }

  .tastings-feature-image {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 600px) {
  .tastings-feature-section {
    padding: 48px 0 54px;
  }

  .tastings-event-facts {
    grid-template-columns: 1fr;
  }

  .event-countdown {
    padding: 16px 12px;
  }

  .event-countdown-grid {
    gap: 6px;
  }

  .event-countdown-unit {
    padding-left: 3px;
    padding-right: 3px;
  }

  .event-countdown-unit strong {
    font-size: 1.55rem;
  }

  .event-countdown-unit span {
    font-size: 0.58rem;
  }

  .tastings-feature-actions .button {
    width: 100%;
  }
}
