@media screen and (min-width:992px){
    #Eroz:not(.on) .Row .Video-Principal-Content {
        padding-right:1rem;
        padding-bottom:0;
        flex-basis:0;
        flex-grow:1;
        max-width:100%;
    }
    #Eroz:not(.on) .Row aside {
        padding-right:0;
        flex:0 0 300px;
        max-width:300px;
    }
}

.Video .Row .Video-Principal-Content {
    padding-bottom:1rem;
    transition:.2s;
}

.MoreInfo .description-content-wrapper {
    max-height: 100px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.35s ease;
    will-change: max-height;
}
.MoreInfo .description-content-wrapper.expanded {
    max-height: none;
}

.read-more-button {
    display: none;
    margin-top: 6px;
    padding: 2px 10px;
    background-color: #FFA90A;
    color: #333;
    border: none;
    cursor: pointer;
    text-align: left;
    border-radius: 9999px;
    font-size: 12px;
    width: auto;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}
.read-more-button:hover {
    background-color: #ffb833;
}
.read-more-button .arrow {
    display: inline-block;
    transition: transform 0.35s ease;
    /* Mostrar Más -> Flecha hacia abajo (rota 90 grados) */
    transform: rotate(90deg) 
}
.read-more-button.expanded .arrow {
    /* Mostrar Menos -> Flecha hacia arriba (rota -90 grados) */
    transform: rotate(-90deg)
}