#how-to-watch .dark-page-section {
    position: relative;
    color: #fff;
    background: var(--color-black-4);
}
#how-to-watch .dark-page-section .section-background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#how-to-watch .how-to-watch-section .country-selector span {
    color: var(--color-yellow-1);
}
#how-to-watch .how-to-watch-section .event-info {
    position: relative;
}
#how-to-watch .how-to-watch-section .event-info .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg,rgba(0,0,0,.75) 0%,rgba(0,0,0,0) 100%);
}
#how-to-watch .how-to-watch-section .event-info .event-date.is-ended {
    color: var(--color-black-3);
}
#how-to-watch .how-to-watch-section .event-info .event-date {
    display: inline-block;
    margin-bottom: 0.25em;
    padding: 0.3em 0.5em;
    background: rgba(0,0,0,.5);
}
#how-to-watch .use-letter-spacing-hint {
    letter-spacing: var(--letter-spacing-hint);
}
#how-to-watch .how-to-watch-section .event-info a.nav-event {
    position: absolute;
    top: 50%;
    right: calc(100% + 1.25rem);
    transform: translateY(-50%);
    color: #fff;
    overflow: visible;
}
#how-to-watch .how-to-watch-section .event-info a.nav-event.right {
    left: calc(100% + 1.25rem);
    right: auto;
}
#how-to-watch .how-to-watch-section .event-info a.nav-event .image {
    width: 12rem;
}
#how-to-watch .how-to-watch-section .event-info a.nav-event .icon-arrow {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    padding-right: 0.5rem;
    transition: .2s all ease-in;
    font-size: 3rem;
}
#how-to-watch .how-to-watch-section .event-info a.nav-event.right .icon-arrow {
    left: 100%;
    right: auto;
    padding-left: 0.5rem;
    padding-right: 0;
}
#how-to-watch .how-to-watch-bout-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}
#how-to-watch .how-to-watch-bout-cards .title {
    font-size: .875rem;
    text-transform: uppercase;
    color: var(--color-black-3);
}
#how-to-watch.how-to-watch-bout-cards .date-and-time {
    font-size: 1.25rem;
}
#how-to-watch.editor-content {
    line-height: 1.625rem;
    overflow: auto;
}

@media (min-width: 768px) {
    #how-to-watch .how-to-watch-bout-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding-bottom: 0.5rem;
    }
    #how-to-watch .how-to-watch-bout-cards>* {
        margin-bottom: 1rem;
    }
}