.emission-top-video {
    --gap: 3;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1100px) {
    .emission-top-video {
        grid-template-columns: 1fr 385px;
    }
}

.player {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.emission__player {
    height: 100%;
}

.emission__placeholder {
    display: block;
    position: relative;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    font-size: 15px;
}

.row:hover {
    background: var(--background);
}

.chapter__active {
    background: var(--background);
    color: var(--contrast);
    font-weight:500;
}

.chapter-icon button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.description {
    flex: 1;
    padding: 10px;
    text-align: left;
}

.play-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}


.duration {
    flex: 0 0 auto;
    /* Make sure the duration column only takes as much space as its content */
    padding: 10px;
    text-align: right;
    white-space: nowrap;

}