/* Cast list layout */

.cast-entry{
  list-style: none;
  margin: 0 0 18px 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  border-radius: 14px;
}

/* Uniform image sizing */
.cast-thumb{
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Text: name over summary */
.cast-text{
  margin: 0;
  line-height: 1.5;
}

.cast-text a strong{
  display: block;
  font-size: 1.12rem;
  line-height: 1.2;
  margin: 0 0 6px 0;
}

.cast-summary{
  display: block;
  line-height: 1.5;
  opacity: 0.92;
}

/* Alternate image left/right per entry */
.cast-entry:nth-child(even){
  grid-template-columns: 1fr 92px;
}

.cast-entry:nth-child(even) .cast-thumb{
  order: 2;
}

.cast-entry:nth-child(even) .cast-text{
  order: 1;
}

/* Mobile: stack image above text */
@media (max-width: 640px){
  .cast-entry,
  .cast-entry:nth-child(even){
    grid-template-columns: 1fr;
  }

  .cast-thumb{
    width: 86px;
    height: 86px;
  }
}
