.home-team {
  padding-block: clamp(32px, 4vw, 52px);
  background: #fff;
  color: #1e191a;
}
.home-team-inner {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}
.home-team-heading {
  margin-bottom: 24px;
}
.home-team-heading h2 {
  margin: 0;
  color: #1e191a;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}
.home-team-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-team-person {
  min-width: 0;
}
.home-team-profile {
  display: block;
  color: #1e191a;
  text-decoration: none;
}
.home-team-portrait {
  overflow: hidden;
  border-radius: 8px;
  background: #f6f3f4;
}
.home-team-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center bottom;
}
.home-team-details {
  padding-top: 12px;
}
.home-team-details h3 {
  margin: 0;
  color: #1e191a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-wrap: balance;
}
.home-team-profile:hover h3 {
  color: #9b2936;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.home-team-footer {
  margin-top: 24px;
  text-align: center;
}
.home-team-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #c53643;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}
.home-team-book:hover {
  background: #9b2936;
  color: #fff;
}
.home-team :focus-visible {
  outline: 2px solid #9b2936;
  outline-offset: 4px;
}
@media (max-width: 1000px) {
  .home-team-inner {
    width: calc(100% - 40px);
  }
  .home-team-heading {
    margin-bottom: 20px;
  }
  .home-team-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 12px;
  }
  .home-team-profile {
    max-width: 144px;
    margin-inline: auto;
  }
  .home-team-details {
    padding-top: 8px;
  }
}
@media (max-width: 700px) {
  .home-team-details h3 {
    font-size: clamp(13px, 3.6vw, 14px);
    line-height: 1.35;
  }
}
