/* ================================
   About Page
================================ */

:root {
  --about-navy: #00142e;
  --about-navy-light: #102b4f;
  --about-card: rgba(255, 255, 255, 0.1);
  --about-white: #ffffff;
  --about-muted: rgba(255, 255, 255, 0.86);
  --about-line: rgba(255, 255, 255, 0.55);
}

.about-page {
  background: var(--about-navy);
  color: var(--about-white);
  overflow: hidden;
}

.about-container {
  width: 100%;
  padding-left: 260px;
  padding-right: 260px;
  box-sizing: border-box;
}

/* Hero */

.about-hero {
  background: var(--about-navy);
  min-height: 547px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 260px 120px;
  box-sizing: border-box;
}

.about-hero-inner {
  max-width: 914px;
}

.about-hero h1 {
  margin: 0 0 24px;
  font-family: "Pretendard", "Inter", sans-serif;
  font-size: 52px;
  line-height: 72px;
  font-weight: 600;
  color: var(--about-white);
}

.about-hero p {
  margin: 0;
  font-family: "Pretendard", "Inter", sans-serif;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--about-white);
}

/* Shared Text */

.about-title {
  margin: 0 0 26px;
  font-family: "Pretendard", "Inter", sans-serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--about-white);
}

.about-copy {
  margin: 0;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--about-muted);
}

.about-copy + .about-copy {
  margin-top: 10px;
}

/* Mission */

.mission-section {
  position: relative;
  min-height: 960px;
  background: var(--about-navy);
  overflow: hidden;
}

.mission-content {
  min-height: 960px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 200px;
  position: relative;
  z-index: 2;
}

.mission-text {
  max-width: 530px;
  z-index: 3;
}

.mission-orbit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 900px;
  height: 900px;
  z-index: 1;
}

.mission-orbit-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: none;
  display: block;
}

/* Who We Are */

.who-section {
  min-height: 960px;
  background: linear-gradient(90deg, #00142e 15.56%, #102b4f 57.4%);
}

.who-content {
  min-height: 960px;
  display: grid;
  grid-template-columns: 638px 530px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.photo-stack {
  width: 638px;
}

.about-team-img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
}

.who-text {
  max-width: 530px;
  text-align: right;
  justify-self: end;
  align-self: end;
  padding-bottom: 200px;
}

.who-text .about-copy {
  color: #f7f7f7;
}

/* Commitment */

.commitment-section {
  min-height: 960px;
  background: var(--about-navy);
}

.commitment-content {
  min-height: 960px;
  display: grid;
  grid-template-columns: 548px 705px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
 
.commitment-text {
  max-width: 548px;
  align-self: end;
  padding-bottom: 200px;
}

.values-card-img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
}

/* Responsive */

@media (max-width: 1500px) {
  .about-container {
    padding-left: 120px;
    padding-right: 120px;
  }

  .about-hero {
    padding-left: 120px;
    padding-right: 120px;
  }

  .mission-orbit {
    width: 760px;
    height: 760px;
  }

  .who-content,
  .commitment-content {
    gap: 50px;
  }
}

@media (max-width: 1200px) {
  .about-container {
    padding-left: 48px;
    padding-right: 48px;
  }

  .about-hero {
    padding-left: 48px;
    padding-right: 48px;
  }

  .mission-content,
  .who-content,
  .commitment-content {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: start;
    text-align: center;
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .mission-text,
  .who-text,
  .commitment-text {
    max-width: 680px;
    text-align: center;
    justify-self: center;
  }

  .mission-orbit {
    width: 600px;
    height: 600px;
    top: auto;
    bottom: 0;
    transform: none;
  }

  .photo-stack {
    justify-self: center;
    width: 100%;
    max-width: 638px;
  }

  .values-card {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-hero {
    min-height: 420px;
    padding: 80px 24px;
  }

  .about-hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .about-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-title {
    font-size: 32px;
  }

  .about-copy {
    font-size: 15px;
    line-height: 1.6;
  }

  .mission-section,
  .who-section,
  .commitment-section {
    min-height: auto;
  }

  .mission-content,
  .who-content,
  .commitment-content {
    min-height: auto;
  }

  .mission-orbit {
    width: 360px;
    height: 360px;
  }

  .photo-stack {
    width: 100%;
    max-width: 400px;
  }
}
