.talkradio-latest {
    --tr-accent: #F1BE35;
    --tr-bg: #111111;
    --tr-fg: #FFFFFF;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 18px;
    background: var(--tr-bg);
    color: var(--tr-fg);
    border-radius: 14px;
    overflow: hidden;
    font-family: inherit;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.talkradio-latest *,
.talkradio-latest *::before,
.talkradio-latest *::after {
    box-sizing: border-box;
}

.talkradio-latest__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 10px;
}

.talkradio-latest__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--tr-accent);
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1;
}

.talkradio-latest__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111111;
    opacity: .9;
}

.talkradio-latest__updated {
    margin-left: auto;
    font-size: 12px;
    opacity: .72;
    white-space: nowrap;
}

.talkradio-latest__title {
    margin: 0 0 14px;
    padding: 0;
    color: var(--tr-fg);
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.015em;
}

.talkradio-latest__player {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.talkradio-latest__player iframe {
    display: block;
    width: 100%;
    border: 0;
}

.talkradio-latest__loading {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: .75;
}

@media (max-width: 640px) {
    .talkradio-latest {
        padding: 14px;
        border-radius: 10px;
    }

    .talkradio-latest__topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .talkradio-latest__updated {
        margin-left: 0;
        white-space: normal;
    }
}
