/* === Presenter roster =======================================================
   Loaded only on the cw_dj archive (see icrt_current_page_slug: the post type
   loses its cw_ prefix, so this file is dj.css).

   The photograph is the card. Upright portraits in a tight grid, three quiet
   lines under each, and one mark on whoever is on air. No banner, no border,
   no label in capitals: the station's own portraits carry the page.
   ========================================================================== */

.icrt-djpage__roster { margin: 2.5rem 0 3rem; }

.icrt-roster {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
}

@media (min-width: 64rem) {
  .icrt-roster {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2.25rem 1.5rem;
  }
}

.icrt-dj { min-width: 0; }

/* --- the portrait --------------------------------------------------------- */

.icrt-dj__shot {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: var(--icrt-mist);
}

.icrt-dj__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* The station shoots its presenters full-length; keep the face in frame. */
  object-position: 50% 18%;
  transition: filter .25s ease;
}

.icrt-dj:hover .icrt-dj__shot img { filter: brightness(.94); }

/* The one accent on the page: a true statement about the schedule. */
.icrt-dj__live {
  position: absolute;
  left: .65rem;
  bottom: .65rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .65rem .3rem .55rem;
  border-radius: 999px;
  background: rgba(10, 13, 19, .78);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.icrt-dj__live::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--icrt-accent);
  box-shadow: 0 0 0 3px rgba(77, 146, 245, .35);
}

/* --- three quiet lines ---------------------------------------------------- */

.icrt-dj__body { padding-top: .75rem; }

.icrt-dj__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--icrt-ink);
}

.icrt-dj__shows,
.icrt-dj__role {
  margin: .2rem 0 0;
  font-size: .875rem;
  line-height: 1.4;
  color: var(--icrt-ink-soft);
}

.icrt-dj__show { color: inherit; text-decoration: none; }
.icrt-dj__show:hover { color: var(--icrt-accent); }

.icrt-dj__when {
  margin: .15rem 0 0;
  font-size: .8125rem;
  line-height: 1.4;
  color: var(--icrt-muted);
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .icrt-dj__shot img { transition: none; }
}
