.media-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.media-nav-link {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    color: #2f5d2f;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.media-nav-link:hover,
.media-nav-link:focus {
    background: #7fb06f;
    color: #fff;
}

.media-section {
    margin-bottom: 4rem;
    scroll-margin-top: 120px;
}

.media-section-header {
    margin-bottom: 1.5rem;
}

.media-card {
    height: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.media-card-art {
    position: relative;
    min-height: 180px;
    background-size: cover;
    background-position: center;
}

#radio-interviews .media-card-art {
    background-position: top center;
}

.media-card-art-review {
    background: linear-gradient(135deg, #7fb06f 0%, #4f7f45 100%);
}

.media-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
}

.media-card-body {
    padding: 20px;
}

.media-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.media-card-desc {
    color: #555;
    margin-bottom: 1rem;
}

.media-audio {
    width: 100%;
    accent-color: #7fb06f;
}

.media-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.media-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767.98px) {
    .media-section {
        scroll-margin-top: 90px;
    }
}
