
.site-main {
  padding-top: 5rem;
}

@media screen and (min-width: 992px) {
  .site-main {
    padding-top: 8rem;
  }
}

.people-section .section-body {
  display: flex;
  flex-flow: column;
  padding-top: 1rem;
  gap: 1rem;
}

.people .section-body {
  gap: 0;
}

.people-section .card {
  --bs-card-border-radius: 1rem;
  --bs-card-border-color: var(--color-light-blue);
  justify-content: center;
}

.people-section .card .card-body {
  flex: 0 1 auto;
}

.people-section.people .card {
  --bs-card-border-radius: 1.5rem;
  --bs-card-border-color: transparent;
  justify-content: start;
}

.people-section .card .card-img-top {
  border-radius: var(--bs-card-border-radius);
}

.people-section .card .card-title {
  display: none;
  color: var(--color-light-blue);
  font-size: clamp(14px,1.389vw,20px);
  font-weight: 500;
}

.people-section .card .card-text {
  display: none;
  font-size: clamp(14px,1.25vw,18px);
  font-weight: 500;
}

.people-section .card .card-heading {
  padding: 0 0 1rem 0;
}

.people-section .card .card-heading .card-info {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  font-size: clamp(12px,0.972vw,14px);
  font-weight: 400;
}

.people-section .card .card-heading .card-info .title {
  font-size: clamp(14px,1.389vw,20px);
  font-weight: 600;
}

.people-section .card-tags {
  display: none;
  flex-flow: row;
  gap: 0.5rem;
  flex-grow: 1;
  margin: 1rem 0 0 0;
}

.people-section .card-tags .tag {
  flex: none;
  padding: 0.25rem 1rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 1rem;
  color: var(--color-light-blue);
  font-size: clamp(12px,0.972vw,14px);
  font-weight: 400;
  line-height: 1.4;
}

@media screen and (min-width: 992px) {
  .people-section .section-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 3rem;
  }

  .people {
    margin-bottom: 2rem;
  }

  .people-section .card {
    min-height: 25rem;
  }

  .people-section .card-tags {
    display: flex;
  }

  .people-section .card .card-title,
  .people-section .card .card-text {
    display: block;
  }
}