@import url("new-courses.css");

/* —— Venues hero with map motif —— */
.vn-hero {
  position: relative;
  background: linear-gradient(160deg, var(--nc-navy) 0%, #0f2848 50%, #1a4a75 100%);
  color: var(--nc-white);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  text-align: center;
}

.vn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400' opacity='0.12'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='1' d='M120 180c40-30 80-20 120 0s80 30 120 10 120-40-60-80-120-20-120 40-40 60z'/%3E%3Ccircle cx='200' cy='160' r='3' fill='%23C8A96B'/%3E%3Ccircle cx='400' cy='140' r='3' fill='%23C8A96B'/%3E%3Ccircle cx='550' cy='200' r='3' fill='%23C8A96B'/%3E%3Ccircle cx='320' cy='220' r='3' fill='%23C8A96B'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.vn-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.vn-hero__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.vn-hero__lead {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
}

/* —— Venue grid —— */
.vn-section {
  background: var(--nc-white);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.vn-section__inner {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.vn-section__heading {
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 700;
  color: var(--nc-navy);
  margin: 0 0 2rem;
}

.vn-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .vn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .vn-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .vn-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }
}

.vn-card {
  display: block;
  border: 1px solid var(--nc-border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--nc-white);
  text-decoration: none !important;
  color: var(--nc-navy);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.12);
}

.vn-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.vn-card__body {
  padding: 0.75rem 0.85rem 0.9rem;
  text-align: center;
}

.vn-card__title {
  margin: 0 0 0.35rem;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.vn-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--nc-blue);
}

.vn-card:hover .vn-card__link {
  text-decoration: underline !important;
}

/* Intro */
.vn-intro {
  width: min(800px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) 0;
  text-align: center;
}

.vn-intro p {
  margin: 0 0 1rem;
  font-size: 14px;
  line-height: 1.65;
  color: var(--nc-text);
}

.vn-intro p:last-child {
  margin-bottom: 0;
}
