.media-block-container {
    padding: 0px;
    margin-top: 42px;
    margin-bottom: 42px;
  }
  
  /* Estilos para títulos */
  .media-block-title {
    font-family: var(--nunito);
    font-weight: 800;
    font-size: 1.28em;
    letter-spacing: 2.25px;
    line-height: 28px;
    text-align: left;
    color: var(--op-color-teal);
    padding:0;
    background: transparent;
    margin-bottom: 0;
    text-transform: uppercase;
  }
  
  /* Estilos para YouTube */
  .youtube-video-block .main-video iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
  }
  
  .youtube-video-block .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-top: 1rem;
    padding: 0 1.5rem;
  }
  
  .youtube-video-block .secondary-videos iframe {
    height: 200px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
  }
  
  .youtube-video-block .secondary-videos iframe:hover {
    transform: scale(1.03);
  }
  
  /* Estilos para Shorts Block */

  
  #owl-media-carousel .item iframe {
    width: 100%;
    height: 535px;
    border-radius: 15px;
    border: none;
  }


  #owl-media-carousel {
    position: relative;
  }

  #owl-media-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
  }

  #owl-media-carousel .owl-prev,
  #owl-media-carousel .owl-next {
    pointer-events: all;
    background-color: #c9c9c9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color .2s;
    z-index: 10;
  }

  #owl-media-carousel .owl-prev i,
  #owl-media-carousel .owl-next i {
    color: #fff;
    font-size: 16px;
  }

  #owl-media-carousel .owl-prev:hover,
  #owl-media-carousel .owl-next:hover {
    background-color: #777;
  }

  @media (min-width: 768px) {
    #owl-media-carousel .owl-prev {
      margin-left: -50px;  
    }
    #owl-media-carousel .owl-next {
      margin-right: -50px; 
    }
  }


  /* Media Queries comunes */

  .youtube-video-block iframe {
    border: none;
    width: 100%;
    border-radius: 12px;
  }

  
  
  @media (min-width: 992px) {
    .youtube-video-block .ratio-16x9 {
      min-height: 450px;
    }
  }

  @media (max-width: 992px) {
    .youtube-video-block .main-video iframe {
      height: 400px;
    }
    
  }
  
  @media (max-width: 768px) {
    
    .youtube-video-block .main-video iframe {
      height: 300px;
    }
    
    .youtube-video-block .secondary-videos .col {
      margin-bottom: 1.5rem;
    }
    
    .youtube-video-block .secondary-videos .col:last-child {
      margin-bottom: 0;
    }

    .media-block-container {
      padding-top: 0;
      padding-bottom: 0px;
    }

    .shorts-block .section-title--with-line{
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .youtube-video-block .main-video iframe {
      height: 250px;
    }
    
  }