.work-rows {
    .work {
        .row {
            margin-top: 0;

            &:first-of-type {
                margin-top: -30px;
            }
            &.columns-two {
                .plyr__control--overlaid {
                    padding: 25px;

                    @media screen and (max-width: 576px) {
                        padding: 20px;
                    }
                    svg {
                        width: 25px;
                        height: 25px;

                        @media screen and (max-width: 576px) {
                            width: 20px;
                            height: 20px;
                        }
                    }
                }
            }
            &.columns-three {
                .plyr__control--overlaid {
                    padding: 20px;

                    svg {
                        width: 20px;
                        height: 20px;
                    }
                }
            }
        }
        .work-image {
            border-radius: 30px;
            overflow: hidden;
            display: block;

            @media screen and (max-width: 576px) {
                border-radius: 20px;
            }
            img {
                display: block;
                width: 100%;
            }
        }
        .work-video {
            border-radius: 30px;
            overflow: hidden;
            
            @media screen and (max-width: 576px) {
                border-radius: 20px;
            }
            &.border {
                border: 2px solid rgba(var(--color-white-rgb), .15) !important;
            }
        }
        .work-audio {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            
            h3 {
                font-family: var(--font-primary);
                font-size: var(--font-size-md);
                font-weight: 800;
                font-style: normal;
                text-transform: uppercase;
                letter-spacing: 2.4px;
                margin-bottom: 2rem;

                @media screen and (max-width: 576px) {
                    font-size: 2rem;
                    letter-spacing: 2px;
                    margin-bottom: 1.5rem;
                }
            }
            .audio-player, .audio-players {
                width: 100%;
                max-width: 430px;

                .audio-player {
                    margin-bottom: 1.6rem;

                    &:last-of-type {
                        margin-bottom: 0;
                    }
                    .audio-player-heading {
                        font-family: var(--font-secondary);
                        font-size: 1.8rem;
                        font-weight: 700;
                        font-style: italic;
                        letter-spacing: .45px;
                        color: var(--color-primary);
                        margin-bottom: 1rem;
                        text-align: center;
                    }
                    audio {
                        display: block;
                        width: 100%;
                    }
                    .plyr {
                        width: 100%;
                        
                        &.plyr--stopped .plyr__controls {
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                }
                .plyr__control[data-plyr="settings"] {
                    display: none;
                }
            }
            .audio-players {
                padding-bottom: 65px;

                .plyr__control[data-plyr="play"] {
                    display: none;
                }
                .swiper-navigation {
                    position: absolute;
                    bottom: 5px;
                    left: 0;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 30px;
                    z-index: 10;
                    opacity: 1;
                    visibility: visible;
                    transition: none;
                }
                .swiper-button-prev, .swiper-button-next, .play-pause {
                    background: none;
                    border: none;
                    padding: 0;
                    font-size: 0;
                    position: relative;
                    top: auto;
                    margin: 0;
                    transition: .3s ease;
                    opacity: 1;
                    visibility: visible;

                    &:hover, &:focus-visible {
                        transform: scale(1.1);
                    }
                    svg {
                        .bg, .caret, .bar {
                            transition: .3s ease;
                        }
                    }
                }
                .swiper-button-prev, .swiper-button-next {
                    &:hover, &:focus-visible {
                        svg {
                            .bg {
                                fill: var(--color-blue);
                                fill-opacity: 1;
                            }
                            .caret, .bar {
                                fill: var(--color-black);
                            }
                        }
                    }
                }
                .play-pause {
                    &:hover, &:focus-visible {
                        svg {
                            .bg {
                                fill: var(--color-primary);
                            }
                            .caret, .bar {
                                fill: var(--color-white);
                            }
                        }
                    }
                }
            }
            .up-next {
                width: 100%;
                max-width: 430px;
                margin-top: 15px;
                background-color: rgba(var(--color-white-rgb), .1);
                border-radius: 8px;
                padding: 30px 25px 20px;
                transition: .8s ease;

                p {
                    font-size: 1.2rem;
                    font-weight: bold;
                    text-transform: uppercase;
                    letter-spacing: 1.2px;
                    color: #F2F2F2;
                    margin-bottom: 1.6rem;
                }
                .upcoming-audio {
                    overflow: hidden;
                    position: relative;
                    transition: height 0.4s ease;
                    
                    .up-next-audio {
                        display: none;
                        justify-content: space-between;
                        gap: 10px;
                        padding-bottom: 7px;
                        opacity: 0;
                        transition: opacity 0.8s ease;

                        &.visible {
                            opacity: 1;
                            transition: opacity 0.4s ease;
                        }
                        .title, .duration {
                            font-size: 1.6rem;
                            line-height: 1.3;
                            letter-spacing: .08px;
                            opacity: .75;
                        }
                    }
                }
            }
        }
    }
}