.podcast-hero {
    background: rgb(var(--color-dark-blue));
}

.quote-highlight {
    position: relative;
    padding: 2rem;
    margin: 2rem 0;
    background: rgb(var(--color-light));
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quote-highlight::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgb(var(--color-blue));
    font-weight: bold;
    line-height: 1;
}

/* Podcast Player Styles - Fixed at bottom */
.podcast-player-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 1rem 1rem;
}

.podcast-player-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgb(var(--color-dark-blue));
    border-radius: 16px;
    max-width: 56rem;
    margin: 0 auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

/* Space at bottom to prevent content being hidden by fixed player */
.content-spacer {
    height: 120px;
}

.podcast-thumbnail {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.podcast-info {
    flex: 1;
    min-width: 0;
}

.podcast-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.podcast-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Hide the video, show only controls */
.podcast-player-wrapper {
    width: 100%;
    position: relative;
}

.podcast-player-wrapper .plyr__video-wrapper {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.podcast-player-wrapper .plyr__poster {
    display: none !important;
}

.podcast-player-wrapper .plyr__controls {
    position: relative !important;
}

.podcast-player-wrapper .plyr {
    --plyr-color-main: rgb(var(--color-blue));
    --plyr-audio-controls-background: transparent;
    --plyr-audio-control-color: white;
    --plyr-audio-control-color-hover: rgb(var(--color-blue));
    border-radius: 8px;
    min-height: 46px;
}

.podcast-player-wrapper .plyr__controls {
    padding: 0;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.podcast-player-wrapper .plyr__control {
    color: white;
}

/* Bigger play/control buttons */
.podcast-player-wrapper .plyr__control--overlaid,
.podcast-player-wrapper .plyr__controls__item[data-plyr="play"],
.podcast-player-wrapper .plyr__controls__item[data-plyr="rewind"],
.podcast-player-wrapper .plyr__controls__item[data-plyr="fast-forward"] {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
}

.podcast-player-wrapper .plyr__control svg {
    width: 24px;
    height: 24px;
}

.podcast-player-wrapper .plyr__controls__item[data-plyr="play"] svg {
    width: 28px;
    height: 28px;
}

.podcast-player-wrapper .plyr__progress__buffer {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .podcast-player-container {
        gap: 1rem;
        padding: 0.75rem 1rem;
    }

    .podcast-thumbnail {
        width: 50px;
        height: 50px;
    }

    .podcast-title {
        font-size: 0.9rem;
    }

    .podcast-author {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

.share-buttons {
    margin-top: 2rem;
    width: 100%;
    border: 1px solid rgb(var(--color-light-gray));
    border-radius: 10px;
    overflow: hidden;
}

.share-buttons tr {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.share-buttons td {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    flex: 1;
    border-right: 1px solid rgb(var(--color-light-gray));
}

.share-buttons td:last-child {
    border-right: none;
}

.share-buttons button {
    height: 1.5rem;
    width: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.share-buttons button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.science-badge {
    background: rgb(var(--color-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}
