/* ===== ABOUT HERO ===== */
.about-hero {
  padding-bottom: 4rem;
  text-align: left;
}

.about-hero::after {
  display: none;
}

.about-hero-container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-hero-text {
  flex: 1;
  padding-bottom: 3rem;
}

.about-hero-text .page-hero-subtitle {
  margin-left: 0;
}

.about-hero-img {
  flex: 0 0 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-bottom: 40px;
}

.about-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 22px;
}

@media (max-width: 900px) {
  .about-hero { text-align: center; }
  .about-hero-container { flex-direction: column; }
  .about-hero-text { padding-bottom: 0; }
  .about-hero-text .page-hero-subtitle { margin: 0 auto; }
  .about-hero-img { display: none; }
}

/* ===== SECTION BACKGROUNDS (about page overrides) ===== */
.section-white {
  background: var(--zinc-50);
}

/* ===== ABOUT GALLERY SLIDER ===== */
.about-gallery {
  background: var(--zinc-50);
  padding: 2rem 0 4rem;
}

.about-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 72px;
  position: relative;
}

.about-gallery-swiper {
  overflow: hidden;
  width: 100%;
}

.about-gallery-swiper .swiper-slide {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-gallery-prev,
.about-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--zinc-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zinc-700);
  font-size: 0.9rem;
  z-index: 10;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.about-gallery-prev { left: 12px; }
.about-gallery-next { right: 12px; }

.about-gallery-prev:hover,
.about-gallery-next:hover {
  background: var(--emerald-500);
  color: white;
  border-color: var(--emerald-500);
}

@media (max-width: 640px) {
  .about-gallery-inner { padding: 0 60px; }
  .about-gallery-prev { left: 8px; }
  .about-gallery-next { right: 8px; }
}

/* ===== MILITARY IMAGE (section-light) ===== */
.about-military-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

/* ===== TEXT BLOCKS ===== */
.about-text-block {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  font-size: 1.0625rem;
  color: var(--zinc-600);
  line-height: 1.8;
}

.about-text--lg { font-size: 1.125rem; }
.about-text + .about-text { margin-top: 0; }

.about-cta-section { text-align: center; }

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
}
