/* =========================================
   PRL-style institutional layout
   Clean, responsive, full-width hero
========================================= */

body {
  background: #ffffff;
  color: #1f2937;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3 {
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p {
  line-height: 1.75;
  color: #374151;
  font-size: 0.95rem;
}

/* ===========================
   Main content width
=========================== */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Remove any boxed look */
section {
  background: transparent;
  border: none;
  padding: 0;
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 3rem 0;
}

/* ===========================
   FULL-WIDTH HERO / CAROUSEL
=========================== */

.hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #ffffff;
}

.splide {
  width: 100%;
  background: #ffffff;
}

/* Center slides */
.splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.splide__slide img {
  width: 100%;
  height: auto;            /* natural height */
  max-height: 70vh;       /* prevent being too tall */
  object-fit: contain;    /* NO CROPPING */
}


/* Arrows visibility */
.splide__arrow {
  background: rgba(255, 255, 255, 0.75);
  border: none;
}

.splide__arrow svg {
  fill: #111827;
}

/* Pagination dots */
.splide__pagination__page {
  background: rgba(0, 0, 0, 0.3);
}

.splide__pagination__page.is-active {
  background: rgba(0, 0, 0, 0.7);
}

/* ===========================
   Layout utilities
=========================== */

.grid {
  align-items: start;
}

/* ===========================
   Responsive tweaks
=========================== */

@media (max-width: 1024px) {
  main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 768px) {
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

  .splide__slide img {
    height: clamp(220px, 40vh, 360px);
  }
}

@media (max-width: 480px) {
  .splide__slide img {
    height: clamp(200px, 35vh, 300px);
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}
/* Navbar links */
.nav-link {
  padding: 0.5rem 0.75rem;
  color: #374151;
  border-radius: 0.375rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: #f3f4f6;
  color: #111827;
}
.staff-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid #e5e7eb;
}

.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: #c7d2fe;
}

.staff-card img {
  transition: transform 0.25s ease;
}

.staff-card:hover img {
  transform: scale(1.03);
}
.year-card {
  background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
  border: 1px solid #d6e4ff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.25s ease;
}

.year-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 60, 160, 0.15);
  background: linear-gradient(135deg, #e8f1ff, #dbe9ff);
}

.year-toggle {
  cursor: pointer;
  user-select: none;
}
<style>
  .instrument-item.active {
    background-color: #2563eb; 
  color: white;
  font-weight: 600;
  }
</style>

