.ldapico-team {
  width: min(1180px, calc(100% - 32px));
  margin: 56px auto;
  color: #ead8b7;
  font-family: "Segoe Print", "Bradley Hand ITC", "Comic Sans MS", Georgia, serif;
}

.ldapico-team>header {
  margin-bottom: 28px;
  text-align: center;
}

.ldapico-team>header span {
  display: block;
  color: #d39a46;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ldapico-team h2 {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 7px 0;
  color: #ead8b7;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0;
}

.ldapico-team h2::before,
.ldapico-team h2::after {
  content: "";
  width: 44px;
  height: 1px;
  background: #d39a46;
  box-shadow: 0 6px 0 rgba(211, 154, 70, .28);
}

.ldapico-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.ldapico-team__card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(20, 16, 12, .96), rgba(8, 6, 4, .98));
  border: 2px solid rgba(211, 154, 70, .82);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(234, 216, 183, .12);
}

.ldapico-team__card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(234, 216, 183, .18);
  border-radius: 5px;
}

.ldapico-team__image {
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 9px 9px 0;
  color: #d39a46;
  background: #0a0705;
  border: 1px solid rgba(211, 154, 70, .48);
  border-radius: 4px;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 950;
}

.ldapico-team__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}

.ldapico-team__card>div:last-child {
  position: relative;
  z-index: 3;
  min-height: 144px;
  padding: 20px 18px 22px;
  text-align: center;
}

.ldapico-team__card small {
  color: #d39a46;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ldapico-team__card h3 {
  margin: 6px 0 8px;
  color: #ead8b7;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0;
}

.ldapico-team__card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 0 0;
  color: rgba(234, 216, 183, .74);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: .88rem;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .ldapico-team h2 {
    gap: 10px;
  }

  .ldapico-team h2::before,
  .ldapico-team h2::after {
    width: 24px;
  }

  .ldapico-team__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}