/* Кнопка Play в стиле YouTube */
#yt-block .ytcard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(228, 15, 15, 0.65); /* красноватый фон как в твоём правиле */
   border-radius: 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;

  /* текстовые стили из твоего варианта */
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 7px;
  height: 42px;
}

/* Иконка Play внутри */
#yt-block .ytcard__play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px; /* чуть смещаем вправо */
}

/* Hover эффект — красный фон */
#yt-block .ytcard__thumb:hover .ytcard__play {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Остальные блоки */
img.ytube {width: 221px;}
#yt-block .ytcard__meta {padding: 12px 14px;}
#yt-block .ytcard__title {
  font-weight: 700;
  line-height: 1.28;
  max-height: 2.56em;
  overflow: hidden;
  font-size: 16px;
}
#yt-block .ytcard__date {
  opacity: 0.6;
  font-size: 13px;
  margin-top: 6px;
}
#yt-carousel .owl-nav {top: 65px !important;top: 11% !important;}
#yt-carousel .owl-nav button {height: 32px !important;border-radius: 4px !important; background: #d6d6d6b0 !important;}


#yt-carousel .owl-nav .owl-prev::before, #yt-carousel .owl-nav .owl-next::before {height: 12px !important;zoom: 1.5 !important;width: 27px !important;}