/*
 * Bookings roster - editorial portrait index.
 *
 * This stylesheet is enqueued only on the Bookings page. The roster is an
 * image-led publication surface: no numbered cards, crosshairs, badges,
 * dashboard labels or decorative containers.
 */

.gp-bookings-roster .gp-bookings-roster__list{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 56px) clamp(16px, 2vw, 28px);
  margin-top: clamp(24px, 3vw, 38px);
}

.gp-bkcard{
  min-width: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.gp-bkcard *{ box-sizing: border-box; }

.gp-bkcard__photo{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
}

.gp-bkcard__photo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(0.88) contrast(1.04);
  transition: filter 180ms ease;
}

.gp-bkcard:hover .gp-bkcard__photo img{
  filter: saturate(1) contrast(1.04);
}

.gp-bkcard__fallback{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.gp-bkcard__mono{
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(244,242,238,0.18);
}

.gp-bkcard__info{
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.gp-bkcard__name{
  margin: 0;
  font-family: var(--gp-premium-sans);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--gp-text);
}

.gp-bkcard__name a{
  color: inherit;
  text-decoration: none;
}

.gp-bkcard__name a:hover{ color: #fff; }

.gp-bkcard__descriptor{
  margin: 7px 0 0;
  color: rgba(244,242,238,0.58);
  font-size: 0.84rem;
  line-height: 1.55;
}

.gp-bkcard__buy{
  display: inline-block;
  margin-top: 11px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(190,22,29,0.7);
  color: rgba(244,242,238,0.78);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.gp-bkcard__buy:hover,
.gp-bkcard__buy:focus-visible{
  color: #fff;
  border-bottom-color: #fff;
}

@media (max-width: 900px){
  .gp-bookings-roster .gp-bookings-roster__list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px){
  .gp-bookings-roster .gp-bookings-roster__list{
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
}
