.tp-hero {
  background: linear-gradient(160deg, #faf7f3 0%, #f4ece4 100%);
  border-bottom: 1px solid #e8dfd7;
}

.tp-hero__inner {
  padding: 0.85rem 0 0.95rem;
}

.tp-breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  color: #767676;
  font-size: 0.78rem;
  font-weight: 600;
}

.tp-breadcrumb a {
  color: #b6282f;
  text-decoration: none;
}

.tp-kicker {
  margin: 0 0 0.25rem;
  color: #b6282f;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.68rem;
  font-weight: 700;
}

.tp-title {
  margin: 0;
  color: #1f1f1f;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 680;
}

.tp-lead {
  margin: 0.45rem 0 0;
  max-width: 62ch;
  color: #525252;
  font-size: 0.95rem;
  line-height: 1.48;
}

.tp-page {
  background: #f8f4ef;
  padding: 1rem 0 2.8rem;
}

.tp-shell {
  max-width: 1340px;
}

.tp-block {
  margin-top: 1.5rem;
}

.tp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.tp-section-head h2,
.tp-section-head h3 {
  margin: 0;
  color: #1f1f1f;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 640;
}

.tp-meta {
  margin: 0;
  color: #747474;
  font-size: 0.86rem;
  font-weight: 600;
}

.tp-grid {
  display: grid;
  gap: 0.85rem;
}

.tp-grid--players,
.tp-grid--teams {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tp-grid--coaches {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-card {
  display: block;
  background: #ffffff;
  color: #1b1b1b;
  border-radius: 12px;
  border: 1px solid #ece3db;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tp-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.tp-card__media {
  position: relative;
  background: #e6ddd5;
}

.tp-card__media--player {
  aspect-ratio: 4 / 5;
}

.tp-card__media--coach {
  aspect-ratio: 16 / 10;
}

.tp-card__media--team {
  aspect-ratio: 16 / 8;
}

.tp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.tp-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d2c7bd;
  color: #4b4b4b;
  font-size: 1.8rem;
  font-weight: 700;
}

.tp-pill {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  padding: 0.27rem 0.48rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e6dbd2;
  color: #555;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tp-card__body {
  padding: 0.8rem;
}

.tp-number {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: #9f3a3f;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.tp-card__body h3 {
  margin: 0;
  font-size: 1.01rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 620;
}

.tp-card__body p {
  margin: 0.32rem 0 0;
  color: #666;
  font-size: 0.9rem;
}

.tp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-contacts {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.45rem;
}

.tp-contact {
  display: grid;
  gap: 0.15rem;
  border-top: 1px solid #f0e8e1;
  padding-top: 0.45rem;
}

.tp-contact:first-child {
  border-top: 0;
  padding-top: 0;
}

.tp-contact strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.tp-link {
  color: #555;
  font-size: 0.85rem;
  text-decoration: none;
}

.tp-link:hover {
  color: #9f3a3f;
}

.tp-empty {
  margin: 0;
  color: #777;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .tp-grid--players,
  .tp-grid--teams {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tp-grid--coaches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tp-hero__inner {
    padding: 0.75rem 0 0.88rem;
  }

  .tp-page {
    padding: 0.9rem 0 2rem;
  }

  .tp-section-head {
    flex-direction: column;
    align-items: start;
    gap: 0.4rem;
  }

  .tp-grid--players,
  .tp-grid--teams,
  .tp-grid--coaches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .tp-grid--players,
  .tp-grid--teams,
  .tp-grid--coaches {
    grid-template-columns: 1fr;
  }
}
