.shorts-video-wrapper {
  position: relative;
  width: 100%;
  /* Максимальная ширина для Shorts — 360–400px */
  max-width: 360px;
  margin: 0 auto;
  /* Соотношение 9:16 → padding-bottom = (16 / 9) * 100% ≈ 177.78% */
  padding-bottom: 177.78%;
  height: 0;
  background: #eee;
  border-radius: 12px;
  overflow: hidden;
}

.shorts-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shorts-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
}

.shorts-overlay:hover {
  background: transparent;
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Адаптив для маленьких экранов */
@media (max-width: 480px) {
  .shorts-video-wrapper {
    max-width: 100%;
    padding-bottom: 177.78%; /* сохраняем пропорции */
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
.feedback__item {
  margin-right: 15px !important;
}
