 .c-videos__grid {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
     max-width: 1000px;
     margin: 1rem auto;
     padding: .7rem 0;
 }

 .c-videos__media {
     width: 100%;
     max-width: 450px;
     border-radius: var(--r-md);
     overflow: hidden;
     background: #000;
 }

 .c-videos__media-aspect {
     position: relative;
     width: 100%;
     aspect-ratio: 16/9;
 }

 .c-videos__media-play {
     position: relative;
     display: block;
 }

 .c-videos__media-play::after {
     content: ' ';
     position: absolute;
     width: 100%;
     height: 100%;
     background-color: #0000007a;
     top: 0;
     left: 0;
 }

 .c-videos__media-play i {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 3rem;
     color: var(--white);
     z-index: 30;
 }


 /* modales */

 .modal-vwifi-prepago video {
     width: 100%;
     height: 100%;
     aspect-ratio: 16/9;
     margin-bottom: -8px;
 }