.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--c-ink);
}

.hero__slide-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero__slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 20, 30, 0.55) 0%, rgba(10, 20, 30, 0.15) 55%, rgba(10, 20, 30, 0.05) 100%);
}

.hero__slide-bg--1 { background-image: linear-gradient(135deg, #0188cc, #033a56); }
.hero__slide-bg--2 { background-image: linear-gradient(135deg, #1d1d20, #45464c); }
.hero__slide-bg--3 { background-image: linear-gradient(135deg, #29b6f6, #0188cc); }
.hero__slide-bg--4 { background-image: linear-gradient(135deg, #016fa8, #013049); }
.hero__slide-bg--5 { background-image: linear-gradient(135deg, #f6bf3b, #c98d1c); }

.hero__card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: var(--sp-5);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero h1 {
  color: var(--c-ink);
  margin-bottom: var(--sp-3);
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.15rem);
  line-height: 1.2;
}

.hero h1 em {
  font-style: normal;
  color: var(--c-primary);
}

.hero p {
  font-size: 1.05rem;
  color: var(--c-body);
  margin-bottom: var(--sp-4);
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition);
}

.hero__nav:hover { background: rgba(255, 255, 255, 0.18); }
.hero__nav--prev { left: var(--sp-5); }
.hero__nav--next { right: var(--sp-5); }
.hero__nav .icon { width: 18px; height: 18px; }
.hero__nav--prev .icon { transform: rotate(180deg); }

.hero__dots.swiper-pagination {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
  width: auto;
}

.hero-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: var(--transition);
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 22px;
  border-radius: 5px;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-swiper {
  height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .hero { min-height: 480px; }
  .hero__nav { display: none; }
}

/* Page (interior) header banner */
.page-hero {
  background: linear-gradient(120deg, var(--c-primary-darker), var(--c-primary));
  color: #fff;
  padding: var(--sp-7) 0 var(--sp-6);
  text-align: center;
  position: relative;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: var(--sp-2);
}

.breadcrumb {
  display: inline-flex;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a { color: #fff; font-weight: 600; }
.breadcrumb span { opacity: 0.7; }
