/* ── Venue finder hero ───────────────────────────────────────────────────── */
.vn-hero {
  background: var(--ugle-blue);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.vn-hero__inner {
  max-width: 680px;
  margin: 0 auto;
}

.vn-hero__title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0.4rem 0 0.75rem;
}

.vn-hero__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.vn-search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.vn-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.vn-search {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: none;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.vn-search:focus {
  outline: 2px solid var(--ugle-gold);
  outline-offset: 2px;
}

/* ── Venue grid ──────────────────────────────────────────────────────────── */
.vn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vn-empty {
  color: var(--text-light);
  text-align: center;
  padding: 3rem 0;
  grid-column: 1 / -1;
}

/* ── Venue card ──────────────────────────────────────────────────────────── */
.vn-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.vn-card:hover {
  box-shadow: 0 8px 28px rgba(19,50,94,0.12);
  transform: translateY(-2px);
}

.vn-card__img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.vn-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ugle-blue), var(--ugle-blue-mid));
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
}

.vn-card__body {
  padding: 1.1rem 1.25rem 0.75rem;
  flex: 1;
}

.vn-card__name {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ugle-blue);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.vn-card__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 0.3rem;
}

.vn-card__meta i {
  color: var(--accent);
  font-size: 0.72rem;
  width: 12px;
  flex-shrink: 0;
}

.vn-card__desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.vn-card__footer {
  padding: 0.65rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ugle-blue);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vn-card:hover .vn-card__footer { color: var(--ugle-blue-mid); }

/* ══════════════════════════════════════════════════════════════════════════ */
/* INDIVIDUAL VENUE PAGE                                                      */
/* ══════════════════════════════════════════════════════════════════════════ */

.vn-detail-hero {
  background: var(--ugle-blue) linear-gradient(135deg, var(--ugle-blue) 0%, var(--ugle-blue-mid) 100%);
  background-size: cover;
  background-position: center;
  padding: 3rem 1.5rem 2.5rem;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}

.vn-detail-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.vn-detail-hero__title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0.3rem 0 0.4rem;
  line-height: 1.2;
}

.vn-detail-hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Prose sections ──────────────────────────────────────────────────────── */
.vn-prose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 3rem;
}

.vn-prose__body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── Info cards (facilities / accessibility / parking) ───────────────────── */
.vn-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vn-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--ugle-blue);
  border-radius: 6px;
  padding: 1.5rem;
}

.vn-info-card__icon {
  font-size: 1.4rem;
  color: var(--ugle-gold);
  margin-bottom: 0.6rem;
}

.vn-info-card__title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ugle-blue);
  margin-bottom: 0.75rem;
}

.vn-info-card__body {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Units meeting here ──────────────────────────────────────────────────── */
.vn-units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.vn-unit-card {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--ugle-blue);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, border-left-color 0.15s;
}

.vn-unit-card:hover {
  box-shadow: 0 4px 16px rgba(19,50,94,0.1);
  border-left-color: var(--ugle-gold);
}

.vn-unit-card__number {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ugle-gold);
  margin-bottom: 0.2rem;
}

.vn-unit-card__name {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ugle-blue);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.vn-unit-card__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.vn-unit-card__meta i {
  color: var(--accent);
  font-size: 0.68rem;
  width: 12px;
}

.vn-unit-card__arrow {
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--accent);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .vn-grid        { grid-template-columns: 1fr 1fr; }
  .vn-prose-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .vn-info-grid   { grid-template-columns: 1fr; }
  .vn-units-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .vn-grid       { grid-template-columns: 1fr; }
  .vn-units-grid { grid-template-columns: 1fr; }
}
