/* ===========================
   ICOVRI 10 — Venues Section
   =========================== */

#venues { background: #dff9fc; }

.venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ---- Card ---- */
.venue-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.venue-card:hover {
  box-shadow: 0 8px 32px rgba(26, 184, 212, .15);
}

/* ---- Header strip ---- */
.venue-card-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border-soft);
}

.venue-card-day {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a227;
  font-weight: 700;
  margin-bottom: 8px;
}

.venue-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #083b45;
  margin-bottom: 6px;
  line-height: 1.3;
}

.venue-card-addr {
  font-size: 13px;
  color: #3a6e7e;
  line-height: 1.5;
}

/* ---- Map iframe ---- */
.venue-map-wrap {
  position: relative;
  width: 100%;
  height: 280px;
}

.venue-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- Directions link ---- */
.venue-directions {
  display: block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--teal-bright);
  text-decoration: none;
  border-top: 1px solid var(--border-soft);
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.venue-directions:hover {
  background: var(--teal-bright);
  color: #ffffff;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .venues-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .venue-map-wrap {
    height: 240px;
  }
}
