.recode-podcasts {
    color: #e6e6e6;
    font-family: inherit;
    padding: 0 0 0;
}

.recode-podcasts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.recode-podcasts-dots {
    display: none;
}

.recode-podcast-card {
    display: grid;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.recode-podcast-image {
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease;
}

.recode-podcast-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.45) 100%);
}

.recode-podcast-image--empty {
    background: #222;
}

.recode-podcast-meta {
    display: grid;
    gap: 2px;
}

.recode-podcast-title {
    margin-top: 3.8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f0f0f0;
}

.recode-podcast-artist {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9a9a9a;
}

.recode-podcast-card:hover .recode-podcast-image {
    transform: translateY(-8px);
}

@media (max-width: 1200px) {
    .recode-podcasts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .recode-podcasts {
        overflow: hidden;
    }

    .recode-podcasts-grid {
        display: flex;
        gap: 16px;
        margin-right: -18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding: 0 18px 4px 0;
        scroll-padding-left: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .recode-podcasts-grid::-webkit-scrollbar {
        display: none;
    }

    .recode-podcast-card {
        flex: 0 0 84%;
        scroll-snap-align: start;
    }

    .recode-podcast-card:hover .recode-podcast-image {
        transform: none;
    }

    .recode-podcasts-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .recode-podcasts-dot {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: rgba(230, 230, 230, 0.32);
        transition: background-color 0.2s ease, transform 0.2s ease, width 0.2s ease;
    }

    .recode-podcasts-dot.is-active {
        width: 18px;
        background: #f0f0f0;
    }
}
