/*
|---------------------------------------------------------------
| qinc2026-about-team.css - チームセクション
|---------------------------------------------------------------
*/

/* ==========================================================================
   About Team
   ========================================================================== */
.about-team {
  background-color: var(--color-blue01);
  background-image: linear-gradient(135.9deg, #1e2c63 2%, var(--color-blue01) 44%, var(--color-blue01) 64%, #1e2c63 100%);
  padding: var(--section-padding-y) 0;
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.about-team__label {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  margin: 0 0 8px;
}

.about-team__title {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.31;
  color: var(--color-white);
  text-align: center;
  margin: 0 0 32px;
  font-feature-settings: "palt" 1;
}

/* --------------------------------------------------------------------------
   Content Layout
   -------------------------------------------------------------------------- */
.about-team__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Team Illustration
   -------------------------------------------------------------------------- */
.about-team__image {
  width: 100%;
  max-width: 1194px;
  margin: 0 auto 32px;
}

.about-team__image img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   Body (Text + Badges)
   -------------------------------------------------------------------------- */
.about-team__body {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  width: 100%;
}

.about-team__text {
  flex: 0 0 auto;
  max-width: 576px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.69;
  color: var(--color-white);
  margin: 0;
}

.about-team__badges {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-team__badge {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background-color: #f8fafc;
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
}

.about-team__badge-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-blue01);
}

/* ==========================================================================
   Responsive - About Team
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .about-team {
    padding: var(--section-padding-y-md) 0;
  }

  .about-team__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .about-team__image {
    margin-bottom: 24px;
  }

  .about-team__body {
    flex-direction: column;
    gap: 32px;
  }

  .about-team__text {
    max-width: none;
  }

  .about-team__badges {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .about-team__badge {
    flex: 0 1 calc((100% - 16px) / 2);
  }
}

@media screen and (max-width: 768px) {
  .about-team {
    padding: var(--section-padding-y-sp) 0;
  }

  .about-team__title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about-team__image {
    margin-bottom: 20px;
  }

  .about-team__body {
    gap: 24px;
  }

  .about-team__text {
    font-size: 14px;
  }

  .about-team__badge {
    padding: 12px 16px;
  }

  .about-team__badge-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .about-team__badges {
    flex-direction: column;
  }

  .about-team__badge {
    flex: none;
    width: 100%;
  }
}
