/* About refresh layer: current iWander IA, writers, and reference surfaces. */
.hm-about .product-db-hero.hm-about-hero--current {
  background: var(--bg);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding: clamp(82px, 10vw, 128px) 0 clamp(44px, 7vw, 72px);
}

.hm-about-hero--current .container {
  max-width: 980px;
}

.hm-about-hero--current h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--text);
  font-family: var(--f-heading);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hm-about-hero--current p {
  max-width: 830px;
  color: var(--text-2);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.9;
}

.hm-about-hero__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.hm-about-hero__links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--f-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.hm-about-hero__links a:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-1px);
}

.hm-about .hm-about-summary {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(26px, 5vw, 46px) 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
  background: transparent;
  box-shadow: none;
}

.hm-about .hm-about-summary__body h2,
.hm-about .hm-about-profile__body h2,
.hm-about .hm-about__title,
.hm-about .hm-about-panel h2 {
  letter-spacing: 0;
}

.hm-about .hm-about-summary__list {
  align-self: stretch;
  gap: 0;
  border-top: 1px solid var(--border);
}

.hm-about .hm-about-summary__list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

.hm-about .hm-about-summary__list strong,
.hm-about .hm-about-card span,
.hm-about-team-card span {
  color: var(--text);
  letter-spacing: 0;
}

.hm-about .hm-about-profile {
  align-items: stretch;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.hm-about .hm-about-profile__image {
  border-radius: 8px;
  overflow: hidden;
}

.hm-about .hm-about-profile__body {
  justify-content: center;
  padding: clamp(20px, 4vw, 42px) 0;
}

.hm-about__section--team {
  padding-top: 0;
}

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

.hm-about-team-card {
  min-width: 0;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--bg);
}

.hm-about-team-card--primary {
  background: var(--bg-alt);
}

.hm-about-team-card span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 800;
}

.hm-about-team-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--f-heading-jp);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.18;
}

.hm-about-team-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.75;
}

.hm-about-team-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--text);
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hm-about .hm-about-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hm-about .hm-about-card,
.hm-about .hm-about-panel {
  border-color: var(--border-strong);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.hm-about .hm-about-card {
  min-height: 196px;
  padding: 20px;
}

.hm-about .hm-about-card strong {
  overflow-wrap: anywhere;
}

.hm-about .hm-about-card p {
  color: var(--text-2);
  line-height: 1.72;
}

.hm-about .hm-about-card:hover {
  background: var(--text);
  color: var(--bg);
}

.hm-about .hm-about-card:hover span,
.hm-about .hm-about-card:hover strong,
.hm-about .hm-about-card:hover p {
  color: var(--bg);
}

.hm-about .hm-about-panel {
  padding: clamp(22px, 4vw, 30px);
}

.hm-about .hm-about__section--notice {
  padding-top: 0;
}

@media (min-width: 760px) {
  .hm-about .hm-about-summary {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  }
}

@media (max-width: 980px) {
  .hm-about .hm-about-grid,
  .hm-about-hero__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hm-about .product-db-hero.hm-about-hero--current {
    padding-top: 72px;
  }

  .hm-about-hero--current h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.05;
    word-break: keep-all;
  }

  .hm-about-hero__links,
  .hm-about-team-grid,
  .hm-about .hm-about-grid {
    grid-template-columns: 1fr;
  }

  .hm-about .hm-about-card {
    min-height: 0;
  }

  .hm-about .hm-about-profile__body {
    padding-bottom: 0;
  }
}
