    /* Estilo para que los PDF se vean bien en dispositivos móviles */
    .pdf-viewer {
      width: 100%;
      height: 500px;
      border: 1px solid #e2e8f0;
      border-radius: 0.5rem;
    }
    @media (max-width: 768px) {
      .pdf-viewer {
        height: 400px;
      }
    }
    /* Estilo para el video destacado */
    .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 */
      height: 0;
      overflow: hidden;
      border-radius: 0.75rem;
    }
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0.75rem;
    }