.post_podcast {
    margin: 40px 0;
}

.post_podcast__wrapper {
    background: #F5F5F5;
    padding: 24px;
}

.post_podcast .post_podcast__row {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post_podcast .post_podcast__row:hover {
    opacity: .8
}

.post_podcast__icon {
    margin-right: 24px;
}

.post_podcast__icon svg {
    display: block;
}

.post_podcast__title {
    color: #000;
    font-family: "PlayfairDisplay";
    font-size: 24px;
    font-weight: 500;
    line-height: 125%;
    max-width: 310px;
    letter-spacing: normal;
}

@media (max-width: 768px) {
    .post_podcast__wrapper {
        padding: 18px;
    }

    .post_podcast__icon {
        margin-right: 16px;
    }

    .post_podcast__title {
        font-size: 18px;
    }
}