.vm-podcast {
    padding: 80px 20px;
    background: #fff;
}


.vm-podcast-intro {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 42px;
    align-items: center;
    margin-bottom: 55px;
}


.vm-podcast-image-wrap {
    width: 100%;
}

.vm-podcast-image {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.vm-podcast-eyebrow,
.vm-podcast-date {
    margin-bottom: 10px;
}

.vm-podcast-title {
    margin: 0 0 18px;
}

.vm-podcast-description {
    max-width: 760px;
}

.vm-podcast-episodes {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vm-podcast-episode {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    background: #F8F7F4;
    border-radius: 18px;
    padding: 30px 34px;
}

.vm-podcast-episode-title {
    margin: 0 0 10px;
}

.vm-podcast-episode-desc {
    margin: 0;
}

.vm-podcast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 14px 24px;
    background: #9b633f;
    color: #fff;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.vm-podcast-btn:hover {
    background: #231f20;
    color: #fff;
}

@media (max-width: 991px) {

    .vm-podcast {
        padding: 60px 20px;
    }

    .vm-podcast-intro {
        grid-template-columns: 220px 1fr;
        gap: 28px;
    }

    .vm-podcast-episode {
        padding: 24px;
    }
}

@media (max-width: 767px) {

    .vm-podcast {
        padding: 50px 18px;
    }

    .vm-podcast-intro {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px;
    }

    .vm-podcast-image-wrap {
        max-width: 260px;
    }

    .vm-podcast-episode {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 20px;
    }

    .vm-podcast-episode-action {
        width: 100%;
    }

    .vm-podcast-btn {
        width: 100%;
    }
}

.vm-podcast-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.vm-podcast-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #F8F7F4;
    color: #262626;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.vm-podcast-pagination .page-numbers.current,
.vm-podcast-pagination .page-numbers:hover {
    background: #9b633f;
    color: #fff;
}