.sym-podcast-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sym-border);
    border-radius: 20px;
    background: var(--sym-surface);
    box-shadow: var(--sym-shadow);
}

.sym-podcast-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.sym-podcast-card__cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37,240,184,.12), rgba(141,94,255,.08));
}

.sym-podcast-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sym-podcast-card__badges {
    position: absolute;
    inset: 10px 10px auto 10px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.sym-podcast-card__badges span,
.sym-podcast-card__chips span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    border: 1px solid rgba(37,240,184,.22);
    border-radius: 999px;
    background: rgba(37,240,184,.09);
    color: var(--sym-text);
    font-size: 9px;
    line-height: 1;
    padding: 5px 8px;
}

.sym-podcast-card__body {
    padding: 13px;
}

.sym-podcast-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--sym-muted);
    font-size: 9px;
    text-transform: uppercase;
}

.sym-podcast-card h3 {
    margin: 0 0 6px;
    font-size: clamp(19px, 1.8vw, 26px);
    line-height: .92;
    letter-spacing: -.04em;
}

.sym-podcast-card__subtitle {
    margin-bottom: 7px;
    color: var(--sym-muted);
    font-size: 12px;
}

.sym-podcast-card p {
    margin: 0;
    color: var(--sym-muted);
    font-size: 12px;
    line-height: 1.42;
}

.sym-podcast-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 11px;
}

.sym-podcast-card__metrics {
    display: flex;
    gap: 10px;
    margin-top: 11px;
    color: var(--sym-muted);
    font-size: 10px;
}
