.podcasts__swiper-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    height: auto;
    border-radius: 16px;
    cursor: pointer;
    user-select: none;
    transition: .2s ease;
}

.podcasts__swiper-card:hover {
    transition: .2s ease;
}

.podcasts__swiper-title {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 500;
}

.podcasts__swiper-description,
.podcasts__swiper-description * {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 300;
    margin: 0;
}


/* Podcast header */
.podcasts__swiper-header {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Podcast footer */
.podcasts__swiper-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    margin-top: 8px;
}

.podcasts__swiper-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 8px;
}


/* Podcasts swiper pagination */
.podcasts-swiper-pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.podcasts-swiper-pagination .swiper-pagination-bullet  {
    background: var(--theme-palette-color-6);
}


/*
*
* Podcasts colors
*
*/
/* Child * n + 1 */
.podcasts__swiper-card:nth-child(4n+1) {
    background-color: var(--theme-palette-color-6);
}

.podcasts__swiper-card:nth-child(4n+1) .podcasts__swiper-title,
.podcasts__swiper-card:nth-child(4n+1) .podcasts__swiper-description,
.podcasts__swiper-card:nth-child(4n+1) .podcasts__swiper-description * {
    color: var(--theme-palette-color-8);
}

.podcasts__swiper-card:nth-child(4n+1) path {
    fill: var(--theme-palette-color-4)
}

.podcasts__swiper-card:nth-child(4n+1) .podcasts__swiper-link {
    color: var(--theme-palette-color-4)
}

/* Hover */
.podcasts__swiper-card:nth-child(4n+1):hover {
    background-color: #4F343C;
}

.podcasts__swiper-card:nth-child(4n+1):hover .podcasts__swiper-title,
.podcasts__swiper-card:nth-child(4n+1):hover .podcasts__swiper-description,
.podcasts__swiper-card:nth-child(4n+1):hover .podcasts__swiper-description *{
    color: #E0BDC7;
}
/* End of child * n + 1 */


/* Child * n + 2 */
.podcasts__swiper-card:nth-child(4n+2) {
    background-color: var(--theme-palette-color-4);
}

/* Hover */
.podcasts__swiper-card:nth-child(4n+2):hover {
    background-color: #474A2D;
}

.podcasts__swiper-card:nth-child(4n+2):hover * {
    color: #E7F388;
    fill: #E7F388;
}
/* End of child * n + 2 */


/* Child * n + 3 */
.podcasts__swiper-card:nth-child(4n+3) {
    background-color: var(--theme-palette-color-3);
}

.podcasts__swiper-card:nth-child(4n+3) .podcasts__swiper-title,
.podcasts__swiper-card:nth-child(4n+3) .podcasts__swiper-description,
.podcasts__swiper-card:nth-child(4n+3) .podcasts__swiper-description * {
    color: var(--theme-palette-color-8);
}

.podcasts__swiper-card:nth-child(4n+3) path {
    fill: var(--theme-palette-color-4)
}

.podcasts__swiper-card:nth-child(4n+3) .podcasts__swiper-link {
    color: var(--theme-palette-color-4)
}

/* Hover */
.podcasts__swiper-card:nth-child(4n+3):hover {
    background-color: #D2D6BC;
}

.podcasts__swiper-card:nth-child(4n+3):hover *{
    color: #47525E;
    fill: #47525E;
}
/* End of child * n + 3 */


/* Child * n + 4 */
.podcasts__swiper-card:nth-child(4n+4) {
    background-color: #A7B9CD;
}

/* Hover */
.podcasts__swiper-card:nth-child(4n+4):hover {
    background-color: #47525E;
}

.podcasts__swiper-card:nth-child(4n+4):hover *{
    color: #A7B9CD;
    fill: #A7B9CD;
}
/* End of child * n + 4 */


/* Media queries */ 
@media only screen and (max-width:767px) {
    .podcasts__swiper-card {
        padding: 16px;
    }

    .podcasts__swiper-title {
        font-size: 20px;
    }

    .podcasts__swiper-footer {
        flex-direction: column-reverse;
        justify-content: start;
        align-items: start;
        gap: 16px;
        margin-top: 24px;
    }

    .podcasts__swiper-footer img {
        width: 150px;
    }
}