/* About page */

.about-heading {
  margin-bottom: 64px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.about-main {
  width: 100%;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-kicker span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue);
  opacity: 0.45;
}

.about-title {
  max-width: none;
  width: 100%;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.05;
}

.about-card-wrap {
  position: sticky;
  top: 112px;
  padding-top: 8px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-info-card {
  min-height: 104px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.about-info-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-info-card p {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

/* Responsive */

@media (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-card-wrap {
    position: static;
  }

  .about-card-grid {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .about-heading {
    margin-bottom: 36px;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-info-card {
    min-height: auto;
  }

  .about-kicker {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .about-kicker span {
    width: 24px;
  }
}
