.about-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}

.about-hero__title {
  margin-bottom: 0.75rem;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}

.about-hero__subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
}

.identity-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
}

.identity-section__grid > * {
  min-width: 0;
}

.identity-section .section__title {
  margin-bottom: 1.5rem;
}

.identity-section__media {
  width: 100%;
  max-width: none;
  margin: 0;
}

.identity-section__image {
  width: 100%;
  min-height: 420px;
  border-radius: 1rem;
}

.identity-section__topic-title {
  margin-bottom: 0.5rem;
  font-family: var(--f-head);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--blue);
}

.identity-section__topic-title--spaced {
  margin-top: 1.5rem;
}

.identity-section__topic-copy {
  line-height: 1.8;
  color: var(--gray-700);
}

.identity-section__topic-copy--spaced {
  margin-bottom: 1.5rem;
}

.identity-section__topic-copy--last {
  margin-bottom: 2rem;
}

.values-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
  font-size: 1.4rem;
}

.value-card__title {
  margin-bottom: 0.6rem;
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
}

.value-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-500);
}

.legal-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.info-panel {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
}

.info-panel__title {
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--orange);
  font-family: var(--f-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--blue);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.info-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table th {
  width: 38%;
  padding: 0.7rem 1rem;
  text-align: left;
  background: var(--gray-50);
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.info-table td {
  padding: 0.7rem 1rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.team-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  box-shadow: 0 14px 36px rgba(15, 35, 71, 0.08);
}

.team-card__image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.team-card__content {
  padding: 2rem;
}

.team-card__name {
  margin-bottom: 0.45rem;
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  line-height: 1;
}

.team-card__role {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: 1rem;
  padding: 0.3rem 0.85rem;
  background: rgba(232, 104, 10, 0.1);
  border: 1px solid rgba(232, 104, 10, 0.2);
  border-radius: 999px;
  font-family: var(--f-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.team-card__bio {
  max-width: 58ch;
  line-height: 1.85;
  color: var(--gray-700);
}

.team-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background-color var(--t),
    transform var(--t),
    box-shadow var(--t);
}

.team-card__link:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 35, 71, 0.18);
}

@media (min-width: 640px) {
  .values-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .identity-section__grid {
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  }

  .identity-section__grid > :first-child,
  .identity-section__media {
    width: 100%;
  }

  .team-card {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    align-items: stretch;
  }

  .team-card__image {
    min-height: 100%;
  }

  .team-card__content {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .values-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .identity-section__grid {
    gap: 4rem;
  }
}
