/***************************************************
 * ABOUT PAGE
 ***************************************************/

/* ---------------------------------------------
   HERO (단일 이미지)
---------------------------------------------- */
.page-about .hero {
  position: relative;
  background: #0b1220;
  color: #fff;
  overflow: hidden;
}

.page-about .hero-media {
  position: relative;
  height: 320px;
}

.page-about .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-about .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.8),
    rgba(15, 23, 42, 0.4),
    rgba(15, 23, 42, 0.05)
  );
  pointer-events: none;
}

.page-about .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.page-about .hero-content-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.page-about .hero-text {
  max-width: 720px;
  text-align: left;
  pointer-events: auto;
  padding-left: 18px;
  animation: hero-fade-up 0.8s ease-in-out 0.1s both;
}

.page-about .hero-heading {
  font-size: 2.35rem;
  line-height: 1.05;
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 420px;
  word-break: keep-all;
}

.page-about .hero-tagline {
  font-size: 1.15rem;
  color: #e6eaf4;
  margin: 0;
  letter-spacing: 0.01em;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  animation: hero-fade-up 1s ease-in-out 0.3s both;
}

@media (max-width: 900px) {
  .page-about .hero-media {
    height: 280px;
  }

  .page-about .hero-heading {
    font-size: 1.9rem;
  }

  .page-about .hero-tagline {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .page-about .hero-media {
    height: 220px;
  }

  .page-about .hero-content-inner {
    padding: 0 16px;
  }

  .page-about .hero-heading {
    font-size: 1.6rem;
  }

  .page-about .hero-tagline {
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------
   ABOUT OUR SUCCESSES
---------------------------------------------- */
.section-success {
  background: #f7f7f7;
}

.success-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.success-title-block {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  border-left: 6px solid #f7b71e;
  padding: 8px 0 6px 18px;
}

.success-kicker {
  display: block;
  line-height: 1.15;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-style: italic;
  color: #7a7a7a;
  transform: scaleX(0.8);
  transform-origin: left center;
}

.success-heading {
  display: block;
  line-height: 1.08;
  font-size: 26px;
  max-width: none;
  font-family: 'Roboto Condensed', 'Trebuchet MS', Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  transform: scaleX(0.8);
  transform-origin: left center;
}

.success-body {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 17px;
  line-height: 1.72;
  color: #2f2f2f;
}

@media (max-width: 700px) {
  .heading-bar {
    font-size: 24px;
  }

  .kicker-bar {
    font-size: 14px;
  }

  .success-body {
    font-size: 15px;
    line-height: 1.68;
    padding-right: 4px;
  }
}

/* Simple fade-up animation */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------------------------------
   MEET OUR TEAM (재사용)
---------------------------------------------- */
.section-team {
  background: #f2f2f2;
  padding: 60px 20px;
}

.section-team .section-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #777;
  display: block;
  line-height: 1.25;
  padding: 2px 0 4px 24px;
  margin: 0;
  background: linear-gradient(90deg, #f7b71e 0 6px, transparent 6px);
  transform: scaleX(0.8);
  transform-origin: left center;
}

.team-heading a {
  color: inherit;
  text-decoration: none;
}

.team-heading a:hover {
  color: #1c4b8f;
}

.team-heading {
  font-size: 26px;
  letter-spacing: 0.01em;
  display: block;
  padding: 2px 0 6px 24px;
  margin: 0 0 8px;
  background: linear-gradient(90deg, #f7b71e 0 6px, transparent 6px);
  line-height: 1.08;
  font-family: 'Roboto Condensed', 'Trebuchet MS', Helvetica, sans-serif;
  font-weight: 800;
  transform: scaleX(0.8);
  transform-origin: left center;
  max-width: none;
  white-space: nowrap;
}

.team-slider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.team-viewport {
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
  scrollbar-width: none;
}

.team-track {
  display: flex;
  gap: 32px;
  padding: 8px 0 12px;
  transition: transform 0.6s ease;
}

.team-card {
  min-width: 230px;
  max-width: 240px;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.08);
}

.team-image {
  height: 340px;
  overflow: hidden;
}

.team-image img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 28%;
}

.team-body {
  padding: 18px 18px 20px;
  text-align: center;
}

.team-name {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.team-title {
  font-size: 13px;
  color: #7a7a7a;
}

.team-nav {
  border-radius: 999px;
  width: 30px;
  height: 30px;
  border: 1px solid #d2d8e6;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.team-viewport::-webkit-scrollbar {
  display: none;
}

@media (max-width: 720px) {
  .section-team {
    padding: 40px 16px;
  }

  .team-track {
    gap: 12px;
    padding: 4px 0 8px;
  }

  .team-card {
    min-width: 100%;
    max-width: 100%;
  }
}
