.rvsph-home-podcast {
    width: min(1180px, calc(100% - 40px));
    margin: 52px auto;
    font-family: inherit;
}

.rvsph-home-podcast__link {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px 32px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 187, 0, .4);
    border-radius: 20px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 187, 0, .18), transparent 38%),
        linear-gradient(135deg, #121212 0%, #050505 100%);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.rvsph-home-podcast__link:hover,
.rvsph-home-podcast__link:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    border-color: #f7b900;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .36);
}

.rvsph-home-podcast__icon {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    color: #050505;
    border-radius: 50%;
    background: #f7b900;
}

.rvsph-home-podcast__icon .material-icons {
    font-size: 34px;
}

.rvsph-home-podcast__copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.rvsph-home-podcast__kicker {
    color: #f7b900;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.rvsph-home-podcast__copy strong {
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.05;
}

.rvsph-home-podcast__copy > span:last-child {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
}

.rvsph-home-podcast__action {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #f7b900;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.rvsph-menu-item > a {
    font-weight: 700;
}

@media (max-width: 700px) {
    .rvsph-home-podcast {
        width: min(100% - 24px, 520px);
        margin: 34px auto;
    }

    .rvsph-home-podcast__link {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 16px;
        padding: 22px;
    }

    .rvsph-home-podcast__icon {
        width: 54px;
        height: 54px;
    }

    .rvsph-home-podcast__icon .material-icons {
        font-size: 28px;
    }

    .rvsph-home-podcast__copy > span:last-child {
        font-size: 14px;
    }

    .rvsph-home-podcast__action {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}
