/* ===== CANAL (YOUTUBE) ===== */
.yt-subscribe{
  display: flex;
  justify-content: center;
  margin: 12px 0 18px;
}

.yt-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.yt-card{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.yt-embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.yt-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-caption{
  margin: 0;
  padding: 12px 14px 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  font-size: 14px;
}

.yt-actions{
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

@media (max-width: 980px){
  .yt-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .yt-grid{ grid-template-columns: 1fr; }
}
