/* About — Team. Scoped to .hk-team; reuses theme fonts (FreightBig Pro / Now). */
.hk-team {
  --hk-font-headline: "FreightBig Pro", Georgia, "Times New Roman", serif;
  --hk-font-body:
    "Now", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
.hk-team,
.hk-team * {
  box-sizing: border-box;
}
.hk-team {
  background: #edeae3;
  padding-top: clamp(20px, 2.5vw, 48px);
  padding-bottom: clamp(20px, 2.5vw, 48px);
}
.hk-team__wrap {
  max-width: 1441px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 73px);
  display: flex;
  gap: clamp(32px, 4vw, 50px);
  align-items: flex-start;
}
.hk-team__intro {
  flex: 1 1 0;
  min-width: 0;
}
.hk-team__label {
  display: block;
  font-family: var(--hk-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #09334A;
  margin: 0;
}
.hk-team__title {
  font-family: var(--hk-font-headline) !important;
  font-weight: 400 !important;
  font-size: 61px !important;
  line-height: 67px !important;
  letter-spacing: 0;
  color: #09334a;
  margin: 0;
}
.hk-team__lead {
  font-family: var(--hk-font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #09334a;
  margin: 30px 0 0;
  max-width: 400px;
}
.hk-team__lead p {
  margin: 0;
}
.hk-team__grid {
  flex: 1 1 0;
  min-width: 0;
}
.hk-team__hr {
  border: 0;
  border-top: 1px solid #cfd7dc;
  margin: 0;
}
.hk-team__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-block: 30px;
}
.hk-team__card {
  display: flex;
  flex-direction: column;
}
.hk-team__row .hk-team__card:first-child {
  padding-right: 30px;
}
.hk-team__row .hk-team__card:last-child {
  padding-left: 30px;
  border-left: 1px solid #cfd7dc;
}
.hk-team__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.hk-team__photo--ph {
  background: radial-gradient(
    120% 120% at 40% 20%,
    #c9bfa0,
    #8c752c 70%,
    #5a4a1c
  );
}
.hk-team__name {
  font-family: var(--hk-font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #09334a;
  margin: 10px 0 0;
}
.hk-team__role {
  font-family: var(--hk-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8b9da9;
  margin: 0;
}
.hk-team__bio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-family: var(--hk-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #09334a;
  text-decoration: none;
  margin-top: 10px;
}
.hk-team__bio:hover {
  color: #8c752c;
}
.hk-team__bio svg {
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .hk-team__wrap {
    flex-direction: column;
  }
  .hk-team__lead {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .hk-team__title {
    font-size: 40px !important;
    line-height: 46px !important;
  }
  .hk-team__row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 24px;
  }
  .hk-team__row .hk-team__card:first-child,
  .hk-team__row .hk-team__card:last-child {
    padding: 0;
    border-left: 0;
  }
}
