/* Related Episodes - podcast-card style parity */
.pod-related-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.single-pod-related-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-pod-related-title {
    font-size: 28px;
    color: #003366;
    margin-bottom: 30px;
    font-weight: 700;
}

.pod-related-section .podcast-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.pod-related-section .podcast-card {
    flex: 0 0 220px;
    width: 220px;
    scroll-snap-align: start;
    text-decoration: none;
    display: block;
    transition: transform 0.2s;
}

.pod-related-section .podcast-card:hover {
    transform: translateY(-4px);
}

.pod-related-section .video-media {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.pod-related-section .video-media img,
.pod-related-section .video-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pod-related-section .video-media video {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.pod-related-section .video-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
}

.pod-related-section .duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    color: #fff;
    z-index: 2;
}

.pod-related-section .play-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pod-related-section .video-meta {
    margin-top: 10px;
}

.pod-related-section .video-meta .category {
    font-size: 12px;
    font-weight: 600;
    color: #FF8C00;
    text-transform: uppercase;
}

.related-episode-title {
    color: #003366;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 4px;
    margin-bottom: 4px;
}

.pod-related-meta {
    color: #999;
    font-size: 12px;
}
