.podcast-navbar .nav-content {
    justify-content: space-between;
}

.podcast-hero {
    position: relative;
    min-height: min(78vh, 760px);
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
    background-image: url('https://www.triplemstudios.co.uk/images/podcastStudio/podcast1.jpg');
    background-size: cover;
    background-position: center;
}

.podcast-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.podcast-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: var(--white);
}

.podcast-kicker {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    text-transform: uppercase;
}

.podcast-hero h1 {
    margin-bottom: 22px;
    font-size: 3rem;
    line-height: 1.15;
}

.podcast-lead {
    max-width: 680px;
    margin-bottom: 30px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.podcast-price {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
}

.podcast-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.podcast-secondary {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.podcast-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.podcast-heading {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 2rem;
}

.podcast-intro-grid p {
    color: var(--text-light);
    line-height: 1.8;
}

.podcast-intro-grid p + p {
    margin-top: 16px;
}

.podcast-stat-panel {
    display: grid;
    gap: 18px;
}

.podcast-stat-panel div,
.podcast-contact-box {
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white);
}

.podcast-stat-panel strong {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.podcast-stat-panel span {
    color: var(--text-light);
    line-height: 1.5;
}

.podcast-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.podcast-card {
    padding: 26px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white);
}

.podcast-card h3 {
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.podcast-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.podcast-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.podcast-gallery picture {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
}

.podcast-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.podcast-steps li {
    display: grid;
    gap: 10px;
    padding: 28px;
    border-radius: 8px;
    background-color: var(--white);
}

.podcast-steps strong {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.podcast-steps span {
    color: var(--text-light);
    line-height: 1.7;
}

.podcast-booking-frame {
    min-height: 720px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white);
}

#my-cal-inline-30min {
    width: 100%;
    min-height: 720px;
}

@media (max-width: 900px) {
    .podcast-card-grid,
    .podcast-gallery,
    .podcast-steps,
    .podcast-intro-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .podcast-hero {
        min-height: 620px;
    }

    .podcast-hero h1 {
        font-size: 2.25rem;
    }

    .podcast-booking-frame,
    #my-cal-inline-30min {
        min-height: 780px;
    }
}
