/* Match Shows timeline styling for Highlights */

#highlights .timeline-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
}

#highlights .timeline-image .img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#highlights .timeline-image img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

#highlights .timeline-panel hr {
    margin-top: 4px;
    margin-bottom: 4px;
}

#highlights .timeline {
    position: relative;
}

#highlights .timeline::before {
    left: 50% !important;
    transform: translateX(-50%);
}

#highlights .timeline > li .timeline-image {
    left: 50% !important;
    margin-left: -75px !important;
}






#highlights.has-awards-background {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#highlights.has-awards-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 0;
}

#highlights.has-awards-background .container {
    position: relative;
    z-index: 1;
}





@media (max-width: 768px) {
    #highlights .timeline::before {
        left: 40px !important;
        transform: none !important;
    }

    #highlights .timeline > li {
        padding-left: 85px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    #highlights .timeline > li .timeline-image {
        width: 80px !important;
        height: 80px !important;
        left: 0 !important;
        margin-left: 0 !important;
    }

    #highlights .timeline > li .timeline-panel {
        width: 100% !important;
        float: none !important;
        padding: 0 0 0 0.75rem !important;
        text-align: left !important;
    }
}