.entity-page {
  padding-top: 10px;
}

.entity-hero {
  background: #20242a;
  border: 1px solid #2e333b;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 18px;
}

.entity-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d39c1a;
  margin-bottom: 8px;
}

.entity-hero h1 {
  margin: 0 0 10px;
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
}

.entity-hero p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #c8cdd3;
  max-width: 860px;
}

.entity-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.entity-stats span {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #2f3640;
  color: #e6eaf0;
  font-size: 13px;
}

.entity-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.entity-sort {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #20242a;
  border: 1px solid #2e333b;
  border-radius: 12px;
  padding: 12px 14px;
}

.entity-sort label {
  color: #c8cdd3;
  font-size: 13px;
  font-weight: bold;
}

.entity-sort select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #353b44;
  background: #171a1f;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.entity-sort select:focus {
  border-color: #d39c1a;
  box-shadow: 0 0 0 2px rgba(211, 156, 26, 0.15);
}

/* фото актеров.студии */
.entity-hero-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
}

.entity-photo img {
  width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #111;
  border: 1px solid #333;
}

@media (max-width: 768px) {
  .entity-hero-profile {
    grid-template-columns: 1fr;
  }

  .entity-photo img {
    width: 180px;
  }
}
/* end */

@media (max-width: 768px) {
  .entity-hero {
    padding: 18px;
  }

  .entity-hero h1 {
    font-size: 26px;
  }

  .entity-toolbar {
    justify-content: stretch;
  }

  .entity-sort {
    width: 100%;
    justify-content: space-between;
  }
}