.sr-skeleton {
  display: inline-block;
  width: 110px;
  height: 22px;
  border-radius: 12px;
  background: #e9ecef;
  position: relative;
  overflow: hidden;
}

.sr-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    rgba(233,236,239,0) 0%,
    rgba(255,255,255,0.8) 50%,
    rgba(233,236,239,0) 100%
  );
  animation: sr-shimmer 1.1s infinite;
}

@keyframes sr-shimmer {
  100% { transform: translateX(200%); }
}

/* ===== Rating ===== */
.sr-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
}

.sr-star {
  font-size: 16px;
  color: #ced4da;
  transition: color .15s;
}

.sr-star.filled {
  color: #f5c518;
}

.sr-rating:hover .sr-star {
  color: #dee2e6;
}

.sr-rating.hover-1 .sr-star:nth-child(-n+1),
.sr-rating.hover-2 .sr-star:nth-child(-n+2),
.sr-rating.hover-3 .sr-star:nth-child(-n+3),
.sr-rating.hover-4 .sr-star:nth-child(-n+4),
.sr-rating.hover-5 .sr-star:nth-child(-n+5) {
  color: #f5c518;
}

.studio-card__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.studio-card .card-title {
  line-height: 1.25;
}

/* ===== FULL-WIDTH RATING ===== */
.sr-rating--full .sr-rating {
  width: 100%;
  justify-content: space-between;
}

.sr-rating--full .sr-star {
  font-size: 18px;          /* можно чуть больше */
}

/* hover-подсветка по-прежнему работает */
.sr-rating--full .sr-rating.hover-1 .sr-star:nth-child(-n+1),
.sr-rating--full .sr-rating.hover-2 .sr-star:nth-child(-n+2),
.sr-rating--full .sr-rating.hover-3 .sr-star:nth-child(-n+3),
.sr-rating--full .sr-rating.hover-4 .sr-star:nth-child(-n+4),
.sr-rating--full .sr-rating.hover-5 .sr-star:nth-child(-n+5) {
  color: #f5c518;
}
.sr-rating--full {
  margin-bottom: 10px;
}
.sr-rating--full .sr-star {
  transition: transform .12s ease;
}

.sr-rating--full .sr-star:hover {
  transform: scale(1.15);
}
.sp-list {
  display: grid;
  row-gap: 6px;
  font-size: 13px;
}

.sp-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.sp-key {
  color: #6c757d;
}

.sp-val {
  text-align: right;
  font-weight: 500;
}


.pg-swiper {
  width: 100%;
  aspect-ratio: 16 / 9; /* или 4 / 3 */
  background: #000;
}

.pg-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}