

.widget-area .widget {
    padding: 10px;
}/* GeneratePress Site CSS */  /* End GeneratePress Site CSS */
  * 
/* ========================
   VIDEO YOUTUBE LIMPIO
======================== */

.yt-clean,
.wp-block-html .yt-clean,
.entry-content .yt-clean,
.gb-container .yt-clean,
.gb-inside-container .yt-clean {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.yt-clean__trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.yt-clean__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-clean__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  background: rgba(255, 0, 0, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.yt-clean__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
}

.yt-clean__trigger:hover .yt-clean__play {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(230, 0, 0, 0.95);
}

.yt-clean iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================
   RESPONSIVE
======================== */

@media (max-width: 768px) {
  .yt-clean,
  .wp-block-html .yt-clean,
  .entry-content .yt-clean,
  .gb-container .yt-clean,
  .gb-inside-container .yt-clean {
    border-radius: 14px;
  }

  .yt-clean__play {
    width: 64px;
    height: 46px;
    border-radius: 14px;
  }

  .yt-clean__play::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 17px;
  }
}

@media (max-width: 480px) {
  .yt-clean,
  .wp-block-html .yt-clean,
  .entry-content .yt-clean,
  .gb-container .yt-clean,
  .gb-inside-container .yt-clean {
    border-radius: 12px;
  }

  .yt-clean__play {
    width: 58px;
    height: 42px;
    border-radius: 12px;
  }

  .yt-clean__play::before {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 15px;
  }
}