.platforms-row {
    justify-content: center;
    column-gap: 15px;
}

.platforms-row a {
    padding: 20px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 29px;
    background-color: #fff7e7;
}



.podcast-links {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-top: 30px;
}

.podcasts-wrapper h3 {
    font-size: 24px;
    line-height: 27px;
    color: #21334b;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-image {
    border-radius: 5px;
    height: 240px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all ease-in-out;
}

.post-image:hover .play-icon {
    opacity: .7;
}

.podcasts-wrapper {
    display: flex;
    align-items: center;
}

.podcast-filter-section {
    padding-block: 60px;
    position: relative;
    z-index: 20;
}

.podcast-row {
    padding: 40px 20px 40px 40px;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 20px;
}

.podcast-date {
    opacity: 0.502;
    font-size: 14px;
}

#podcasts-nav a {
    font-size: 18px;
    line-height: 34px;
    color: #21334b;
    font-weight: 500;
    position: relative;
}

.podcast-description p {
    font-size: 16px;
    line-height: 22px;
}

#podcasts-nav ul li {
    border-left: 3px solid rgba(255,255,255,0);
    transition: padding-left 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

#podcasts-nav ul li.active, #podcasts-nav ul li:hover {
    padding-left: 20px;
    border-left: 3px solid var(--yellow-color);
    transition: padding-left 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

#podcasts-nav ul li {
    margin-bottom: 25px;
}

#podcasts-nav {
    border-bottom: 1px solid rgba(0,0,0,.10);
    margin-bottom: 30px;
}

.podcast-container {
    margin-bottom: 15px;
}

.podcast-container:last-of-type {
    margin-bottom: 0;
}

.active-year, .active-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 15px;
}

.years-filter-wrapper, .category-filter-wrapper {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.10);
    padding-block: 15px;
}

.active-year span:first-of-type {
    font-size: 18px;
    line-height: 34px;
    color: #21334b;
}

.active-year i{
    font-size: 20px;
    color: rgba(0,0,0,.10);
    transition: 0.3s all ease-in-out;
}

.years-selection p, .category-selection a {
    padding: 10px 15px;
    transition: 0.3s all ease-in-out;
    font-size: 16px;
    line-height: 34px;
    color: #21334b;
}

.years-selection p:hover, .years-selection p.active-year {
    background-color: var(--yellow-color);
}

.years-selection, .category-selection {
    display: none;
}

.years-selection.active {
    display: block;
}

.open i {
    rotate: 180deg;
}

.platforms-row a.platform-mobile {
    display: none;
}

.mobile-filter {
    display: none;
}

.platforms-row a:hover {
    background-color: var(--yellow-color);
}

.podcast-links a {
    background-color: var(--dark-blue);
    -webkit-mask-repeat: no-repeat !important;
    -webkit-mask-size: contain !important;
    position: relative;
    z-index: 20;
}

.podcast-links a:first-of-type {
    width: 75px;
    height: 17px;
    color: var(--dark-blue);
}

.podcast-links a:nth-of-type(2) {
    width: 79px;
    height: 24px;
}

.podcast-links a:nth-of-type(3) {
    width: 83px;
    height: 27px;
}

.podcast-links a:hover {
    background-color: var(--yellow-color);
}

@media(max-width: 991px) {
    .platforms-row a.platform-mobile {
        display: flex;
        padding: 20px;
    }

   .platforms-row  a.platform-desktop {
        display: none;
    }

   .mobile-filter {
       display: flex;
       justify-content: space-between;
       margin-inline: -15px;
       margin-bottom: 60px;
   }

   .mobile-filter .col-9, .mobile-filter .col-3 {
       padding-inline: 0;
   }

   .mobile-filter .col-9 {
       padding-right: 10px;
   }

   #podcasts-nav, .show-desktop {
       display: none;
   }

    .active-year span:first-of-type, .active-category span:first-of-type {
        font-size: 16px;
        line-height: 34px;
        color: #21334b;
    }

    .category-selection.active {
        display: block;
    }

    .active-category i {
        transition: 0.3s all ease-in-out;
        color: rgba(0,0,0,.10);
    }


}

@media(max-width: 768px) {
    .podcasts-wrapper {
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .podcast-row {
        padding: 20px;
    }

    .podcasts-wrapper .left-column, .podcasts-wrapper .right-column {
        padding-inline: 0;
    }
}

@media(max-width: 575px) {
    .podcast-filter-section {
        padding-top: 30px;
    }

    .mobile-filter {
        margin-bottom: 30px;
    }

    .podcast-links {
        column-gap: 15px;
    }
}