.podcasts_card_list_section .cards {
    padding: 20px 0 0;
}

.podcasts_card_list_section .cards .cards_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.podcasts_card_list_section .cards .card {
    overflow: hidden;
    margin-bottom: 0;
    width: calc((100% - 40px) / 3);
}

.podcasts_card_list_section .cards .card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 28px;
}

.podcasts_card_list_section .cards .card-img-wrap {
    aspect-ratio: 1 / 1;
    height: inherit !important;
}

.podcasts_card_list_section .cards .card-img-wrap:before {
    top: auto;
    bottom: -50%;
    background: url(../images/frame3_Big.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 100%;
}

.podcasts_card_list_section .cards .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


.podcasts_card_list_section .section_detail h2 {
    font-family: "Roboto Slab", serif;
    font-weight: bold;
    font-size: 48px;
    line-height: 110%;
    margin-bottom: 30px;
    color: #000000;
}

.podcasts_card_list_section .section_detail h3 {
    font-family: "Roboto Slab", serif;
    font-weight: bold;
    font-size: 40px;
    line-height: 110%;
    margin-bottom: 30px;
    color: #000000;
}

.podcasts_card_list_section .cards .card-title {
    height: inherit !important;
}

@media (max-width: 1023px) {

    .podcasts_card_list_section .section_detail h2,
    .podcasts_card_list_section .section_detail h3 {
        margin-bottom: 20px;
    }

    .podcasts_card_list_section .section_detail h2 {
        font-size: 44px;
    }

    .podcasts_card_list_section .section_detail h3 {
        font-size: 34px;
    }

    .podcasts_card_list_section .cards .card {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 991px) {
    .podcasts_card_list_section .cards .card-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .podcasts_card_list_section .section_detail h2 {
        font-size: 34px;
    }

    .podcasts_card_list_section .section_detail h3 {
        font-size: 30px;
    }

    .podcasts_card_list_section .cards .cards_list {
        column-gap: 0;
    }

    .podcasts_card_list_section .cards .card {
        width: 100%;
    }
}



.podcasts_card_list_section .cards_list {
    position: relative;
}

/* 3 items: normal 3-column layout on desktop */
.podcasts_card_list_section .cards_list:not(.slick-slider) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Slick */
.podcasts_card_list_section .cards_list.slick-slider {
    display: block;
}

.podcasts_card_list_section .section_detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.podcasts_card_list_section .section_detail h2 {
    margin: 0;
}

.podcasts_card_list_section .podcast_slider_arrows {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.podcasts_card_list_section .cards_list .slick-list {
    margin: 0 -10px;
}

.podcasts_card_list_section .cards_list .slick-slide {
    height: auto;
    padding: 0 10px;
}

.podcasts_card_list_section .cards_list .slick-track {
    display: flex;
}

.podcasts_card_list_section .cards_list .slick-slide>div,
.podcasts_card_list_section .cards_list .card {
    height: 100%;
}

/* Arrows */
.podcasts_card_list_section .custom-slick-arrow {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
}

.podcasts_card_list_section .custom-slick-arrow:hover {
    background: #000;
    color: #fff;
}

.podcasts_card_list_section .custom-slick-arrow svg {
    display: block;
}

.podcasts_card_list_section .custom-slick-arrow:hover svg path {
    fill: #FFFFFF;
}

@media (max-width: 1024px) {
    .podcasts_card_list_section .cards_list:not(.slick-slider) {
        display: block;
    }
}

/*
@media (max-width: 782px) {
    .podcasts_card_list_section .container {
        max-width: 100%;
        padding: 0 30px;
    }
}
*/

@media (max-width: 767px) {
    .podcasts_card_list_section .cards_list .slick-slide {
        padding: 0 10px;
    }

    .podcasts_card_list_section .cards_list .slick-list {
        margin: 0 -10px;
    }

    .podcasts_card_list_section .custom-slick-arrow {
        width: 36px;
        height: 36px;
    }
}