.actor-section {
  margin-top: 100px;
  padding: 0 30px;
}

.actor-status {
  margin-top: 12px;
  color: var(--color-text-soft, #a8adbd);
  font-size: 14px;
}

.actor-status.is-error {
  color: var(--color-danger, #ff5c7a);
}

.actor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.actor-card {
  overflow: hidden;
  border-radius: 16px;
  background: #171923;
  cursor: pointer;
  transition: all 0.3s ease;
}

.actor-card:hover {
  transform: translateY(-8px);
}
.actor-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.actor-card__fallback {
  display: grid;
  width: 100%;
  height: 260px;
  place-items: center;
  background: #222633;
  color: #8f96ad;
  font-size: 42px;
  border-radius: 16px;
}

.actor-card h3 {
  padding: 14px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
