/* ========================================
   Page Hero
======================================== */
.page-hero {
  position: relative;
  height: 200px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  opacity: 0.85;
}

.page-hero__title {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 2px;
}

/* ========================================
   Responsive: Page Hero SP
======================================== */
@media (max-width: 768px) {
  .page-hero {
    height: 140px;
    margin-top: 70px;
  }

  .page-hero__title {
    font-size: 22px;
    letter-spacing: 1px;
  }
}
