.podcast-player{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.podcast-player .desktop{
    display: flex !important;
}
.podcast-player .mobile{
    display: none !important;
}
.a-single-post > .section > .podcast-player{
    margin-bottom: 3rem;
}
.podcast-player > .img{
    position: relative;
    flex: 0 0 15%;
}
.a-single-post > .section > .podcast-player > .img{
    flex-basis: 20%;
}
.podcast-player > .img > .i{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}
.podcast-player > .img > .i > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.podcast-player > .cnt{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}
.podcast-player > .cnt > .t{
    font-weight: 700;
    font-size: 1.8rem;
}
.podcast-player > .cnt > .audio-player > audio{
    display: none;
}
.podcast-player .player-controls{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.podcast-player .player-controls.mobile{
    gap: 1rem 2rem;
    flex-basis: 100%;
    flex-wrap: wrap;
}
.podcast-player .player-controls.mobile .time{
    flex-basis: 100%;
    justify-content: space-between;
}
.podcast-player .player-controls.mobile .time > .sep{
    display: none;
}
.podcast-player .player-controls .play{
    position: relative;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    border: none;
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    background-color: var(--color_orange);
    padding: 0;
    display: grid;
    place-items: center;
}
.podcast-player .player-controls .play > .icon{
    --size: 2rem;
    background: transparent;
    width: 0;
    height: var(--size);
    transition: 300ms all ease;
    cursor: pointer;
    border-style: solid;
    border-width: calc(var(--size) / 2) 0 calc(var(--size) / 2) calc(var(--size) * .8);
    border-color: transparent transparent transparent #fff;
    transform: translateX(12%);
}
.podcast-player.paused .player-controls .play > .icon{
    border-style: double;
    border-width: 0 0 0 calc(var(--size) * .8);
    transform: none;
}
.podcast-player .player-controls .time{
    flex: 0 0 13.5rem;
    font-size: 1.4rem;
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
}
.podcast-player .player-controls .seek-bar-container{
    flex: 1;
}
.podcast-player .player-controls .seek-bar-container .seek-bar{
    color: var(--color_orange);
    --thumb-height: 1.5rem;
    --thumb-width: 1.5rem;
    --track-height: .5rem;
    --track-color: rgba(0, 0, 0, .2);
    /*--brightness-hover: 180%;
    --brightness-down: 80%;*/
    --clip-edges: 0.125em;
    position: relative;
    background: #fff0;
    overflow: hidden;
    box-shadow: none;
}
.podcast-player .player-controls .seek-bar-container .seek-bar[type="range"]:disabled{
    filter: grayscale(1);
    opacity: 0.3;
    cursor: not-allowed;
}
.podcast-player .player-controls .seek-bar-container .seek-bar:active{
    cursor: grabbing;
}
/* === WebKit specific styles === */
.podcast-player .player-controls .seek-bar-container .seek-bar,
.podcast-player .player-controls .seek-bar-container .seek-bar::-webkit-slider-runnable-track,
.podcast-player .player-controls .seek-bar-container .seek-bar::-webkit-slider-thumb{
    -webkit-appearance: none;
    transition: all ease 100ms;
    height: var(--thumb-height);
    border-radius: 10rem;
    display: block;
    width: 100%;
}
.podcast-player .player-controls .seek-bar-container .seek-bar::-webkit-slider-runnable-track,
.podcast-player .player-controls .seek-bar-container .seek-bar::-webkit-slider-thumb{
    position: relative;
}
.podcast-player .player-controls .seek-bar-container .seek-bar::-webkit-slider-thumb{
    --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
    --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
    --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
    --clip-further: calc(100% + 1px);
    --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 100vmax currentColor;
    width: var(--thumb-width, var(--thumb-height));
    background: linear-gradient(currentColor 0 0) scroll no-repeat left center / 50% calc(var(--track-height) + 1px);
    background-color: currentColor;
    box-shadow: var(--box-fill);
    border-radius: var(--thumb-width, var(--thumb-height));
    /*filter: brightness(100%);*/
    clip-path: polygon(
            100% -1px,
            var(--clip-edges) -1px,
            0 var(--clip-top),
            -100vmax var(--clip-top),
            -100vmax var(--clip-bottom),
            0 var(--clip-bottom),
            var(--clip-edges) 100%,
            var(--clip-further) var(--clip-further)
    );
}
.podcast-player .player-controls .seek-bar-container .seek-bar:hover::-webkit-slider-thumb{
    /*filter: brightness(var(--brightness-hover));*/
    cursor: grab;
}
.podcast-player .player-controls .seek-bar-container .seek-bar:active::-webkit-slider-thumb{
    /*filter: brightness(var(--brightness-down));*/
    cursor: grabbing;
}
.podcast-player .player-controls .seek-bar-container .seek-bar::-webkit-slider-runnable-track{
    background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center /
		100% calc(var(--track-height) + 1px);
}
/* === Firefox specific styles === */
.podcast-player .player-controls .seek-bar-container .seek-bar,
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-track,
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-thumb{
    appearance: none;
    transition: all ease 100ms;
    height: var(--thumb-height);
}
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-track,
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-thumb,
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-progress{
    background: #fff0;
}
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-thumb{
    background: currentColor;
    border: 0;
    width: var(--thumb-width, var(--thumb-height));
    border-radius: var(--thumb-width, var(--thumb-height));
    cursor: grab;
}
.podcast-player .player-controls .seek-bar-container .seek-bar:active::-moz-range-thumb{
    cursor: grabbing;
}
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-track{
    width: 100%;
    background: var(--track-color);
}
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-progress{
    appearance: none;
    background: currentColor;
    transition-delay: 30ms;
}
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-track,
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-progress{
    height: calc(var(--track-height) + 1px);
    border-radius: var(--track-height);
}
/*
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-thumb,
.podcast-player .player-controls .seek-bar-container .seek-bar::-moz-range-progress{
    filter: brightness(100%);
}
.podcast-player .player-controls .seek-bar-container .seek-bar:hover::-moz-range-thumb,
.podcast-player .player-controls .seek-bar-container .seek-bar:hover::-moz-range-progress{
    filter: brightness(var(--brightness-hover));
}
.podcast-player .player-controls .seek-bar-container .seek-bar:active::-moz-range-thumb,
.podcast-player .player-controls .seek-bar-container .seek-bar:active::-moz-range-progress{
    filter: brightness(var(--brightness-down));
}*/
@media (max-width: 1000px){
    .podcast-player > .img{
        flex-basis: 20%;
    }
    .a-single-post > .section > .podcast-player > .img{
        flex-basis: 25%;
    }
}
@media (max-width: 834px){
    .a-single-post > .section > .podcast-player .desktop{
        display: none !important;
    }
    .a-single-post > .section > .podcast-player .mobile{
        display: flex !important;
    }
    .a-single-post > .section > .podcast-player > .cnt{
        gap: 0;
    }
    .a-single-post > .section > .podcast-player > .cnt > .t{
        font-size: 1.6rem;
    }
}
@media (max-width: 768px){
    .podcast-player > .img{
        flex-basis: 30%;
    }
    .a-single-post > .section > .podcast-player > .img{
        flex-basis: 35%;
    }
}
@media (max-width: 650px){
    .podcast-player .desktop{
        display: none !important;
    }
    .podcast-player .mobile{
        display: flex !important;
    }
    .podcast-player > .img{
        flex-basis: 40% !important;
    }
    .podcast-player > .cnt{
        gap: 0;
    }
    .podcast-player > .cnt > .t{
        font-size: 1.6rem;
    }
}