.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.home-hero .slides {
  position: relative;
  width: 100%;
  line-height: 0;
}

.home-hero .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

/* First slide stays in flow so the banner's full 16:9 height is used */
.home-hero .slide:first-child {
  position: relative;
  inset: auto;
}

.home-hero:not(.is-ready) .slide:first-child,
.home-hero .slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.home-hero .slide img {
  display: block;
  width: 100%;
  height: auto;
}

.home-hero .ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #111;
  font-size: 1.4rem;
  cursor: pointer;
}

.home-hero .prev {
  left: 14px;
}

.home-hero .next {
  right: 14px;
}

.home-hero .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.home-hero .dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.home-hero .dots button.is-active {
  background: #fff;
}

.home-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 20px 40px;
  text-align: center;
}

.home-intro h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
}

.home-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.blocks-panel {
  background: var(--teal);
  color: #fff;
  padding: 40px 20px 48px;
  overflow: visible;
}

.blocks-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: start;
}

.blocks-col h2 {
  margin: 0 0 16px;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.hostel-list {
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  padding: 0;
}

.hostel-row {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.hostel-row a {
  color: #fff;
}

.hostel-row .note {
  font-weight: 400;
  text-decoration: none;
}

.home-people {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px;
}

.home-people .leaders {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.home-people .grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  justify-items: center;
}

