/* ==========================================================================
   about.css — Halaman About Us
   ========================================================================== */

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: var(--header-height);
  padding-block: var(--space-10);
  overflow: hidden;
}

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

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

.about-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(53, 92, 125, 0.6);
}

.about-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  padding: var(--space-10) var(--space-8);
  text-align: center;
}

.about-panel h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.75rem);
}

.about-panel p {
  margin-top: var(--space-5);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.9;
}
