/* ── Podcast Hero ── */
.pc-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
}
.pc-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}
.pc-hero-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #000;
}
.pc-hero-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pc-hero-body {
    padding: 0;
}
.pc-hero-desc {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}
.pc-subscribe-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.pc-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #111827;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 100px;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
    white-space: nowrap;
}
.pc-subscribe-btn:hover {
    border-color: #007652;
    background: #f0fdf4;
    color: #007652;
}
.pc-subscribe-btn i {
    font-size: 1rem;
}

/* ── Episode List ── */
.vh-grid-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
.vh-grid-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #111827;
}
.vh-grid-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    border: none;
}
.vh-grid-count {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}
.pc-episodes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.pc-episode {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.pc-episode:last-child {
    border-bottom: none;
}
.pc-episode-thumb {
    flex: 0 0 40% !important;
    max-width: 40%;
    overflow: hidden;
    border-radius: 4px;
    background: #f3f4f6;
}
.pc-episode-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
}
.pc-episode-body {
    flex: 0 0 60% !important;
    max-width: 60%;
    min-width: 0;
}
h3.pc-episode-title,
.pc-episode h3.pc-episode-title,
.pc-episode-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #111827 !important;
    margin: 0 0 0.4rem 0 !important;
    transition: color 0.15s;
    border: none !important;
    padding: 0 !important;
}
.pc-episode:hover .pc-episode-title {
    color: #007652;
}
.pc-episode-excerpt {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}
.pc-episode-date {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}

/* ── Load More ── */
.vh-loadmore {
    text-align: center;
    padding: 1.5rem 0 2rem;
}
.vh-loadmore a {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    background: #fff;
    border: 2px solid #111827;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.vh-loadmore a:hover {
    background: #111827;
    color: #fff;
}

/* ── No Results ── */
.vh-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
    font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pc-hero { padding: 1.5rem 1rem 0; }
    .pc-hero-inner { grid-template-columns: 1fr; gap: 1.25rem; }
    .vh-grid-section { padding: 1.5rem 1rem; }
    .pc-episode { flex-direction: column-reverse !important; gap: 0.75rem; }
    .pc-episode-thumb { flex: none !important; width: 100% !important; max-width: 100% !important; }
    .pc-episode-body { flex: none !important; width: 100% !important; max-width: 100% !important; }
}
