/* ══════════════════════════════════════════════════════════
   ABOUT US
══════════════════════════════════════════════════════════ */
.about-section {
  background: #ffffff;
  padding: 7rem 2.5rem 6rem;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

/* ── LEFT COLUMN ─────────────────────────────────────────── */
.about-left {
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
}

/* ── RIGHT COLUMN ────────────────────────────────────────── */
.about-right {
  flex: 1;
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
}

.about-img-wrap {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #e8e8e8;
  position: relative;
}

.about-img-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img--contain {
  object-fit: cover;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.04);
}

.about-img-label {
  padding: 0.2rem 0.2rem;
  color: #111;
}

.about-img-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.about-img-role {
  font-size: 0.75rem;
  font-weight: 300;
  margin: 0.15rem 0 0;
  color: #555;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-left {
    flex: none;
    width: 100%;
  }

  .about-right {
    width: 100%;
  }

  .about-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .about-img--contain {
    object-fit: contain;
  }
}
