:root {
    --smp-player-height: 118px;
    --smp-player-video-height: 214px;
    --smp-player-ink: #f4eee9;
    --smp-player-muted: #a99490;
    --smp-player-accent: #e00813;
    --smp-player-accent-bright: #ff4436;
    --smp-player-surface: #16090b;
    --smp-player-panel: #1e0b0d;
    --smp-player-line: rgba(224, 8, 19, 0.28);
}

.smp-listen-button,
.smp-watch-button {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 1px solid rgba(224, 8, 19, 0.52);
    border-radius: 2px;
    color: #f4eee9;
    cursor: pointer;
    display: inline-flex;
    font: 700 10px/1.4 "Inter Tight", Inter, sans-serif;
    gap: 7px;
    justify-content: center;
    letter-spacing: 0.14em;
    min-height: 34px;
    padding: 7px 12px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.smp-listen-button svg,
.smp-watch-button svg {
    display: block;
    fill: currentColor;
    height: 14px;
    width: 14px;
}

.smp-listen-button:hover,
.smp-listen-button.is-smp-playing,
.smp-watch-button:hover,
.smp-watch-button.is-smp-playing {
    background: rgba(224, 8, 19, 0.14);
    border-color: var(--smp-player-accent-bright);
    box-shadow: 0 0 18px -8px rgba(255, 68, 54, 0.8);
    color: #fff;
    transform: translateY(-1px);
}

.smp-listen-button.is-smp-playing,
.smp-watch-button.is-smp-playing {
    background: var(--smp-player-accent);
    border-color: var(--smp-player-accent);
}

.smp-listen-button:focus-visible,
.smp-watch-button:focus-visible {
    outline: 2px solid var(--smp-player-accent-bright);
    outline-offset: 3px;
}

body.smp-podcast-player-visible {
    --smp-active-player-height: var(--smp-player-height);
    padding-bottom: calc(var(--smp-active-player-height) + env(safe-area-inset-bottom, 0px)) !important;
}

body.smp-podcast-player-visible.smp-podcast-player-video-visible {
    --smp-active-player-height: var(--smp-player-video-height);
}

.smp-podcast-player[hidden],
.smp-podcast-player [hidden],
.smp-podcast-player [data-smp-control-disabled] {
    display: none !important;
}

.smp-podcast-player {
    background:
        radial-gradient(80% 160% at 12% -50%, rgba(224, 8, 19, 0.16), transparent 55%),
        linear-gradient(110deg, #13080a 0%, var(--smp-player-surface) 48%, #0f0a0b 100%);
    border-top: 1px solid rgba(224, 8, 19, 0.62);
    bottom: 0;
    box-shadow: 0 -18px 54px rgba(0, 0, 0, 0.52), 0 -1px 18px rgba(224, 8, 19, 0.12);
    color: var(--smp-player-ink);
    font-family: "Inter Tight", Inter, sans-serif;
    left: 0;
    min-height: var(--smp-player-height);
    padding: 12px max(20px, env(safe-area-inset-right, 0px)) calc(12px + env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
    position: fixed;
    right: 0;
    transition: min-height 220ms ease, background-color 220ms ease;
    z-index: 2147483000;
}

.smp-podcast-player[data-smp-mode="video"] {
    min-height: var(--smp-player-video-height);
}

.smp-podcast-player,
.smp-podcast-player * {
    box-sizing: border-box;
}

.smp-podcast-player button,
.smp-podcast-player [type="button"] {
    appearance: none;
    border-radius: 0;
    box-shadow: none;
    font: inherit;
    margin: 0;
    text-transform: none;
}

.smp-podcast-player__inner {
    align-items: center;
    display: grid;
    gap: clamp(18px, 2vw, 32px);
    grid-template-columns: minmax(360px, 1.05fr) minmax(340px, 0.95fr) auto;
    margin: 0 auto;
    max-width: 1180px;
    min-height: 92px;
}

.smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__inner {
    grid-template-columns: minmax(480px, 1.25fr) minmax(300px, 0.8fr) auto;
    min-height: 188px;
}

.smp-podcast-player__identity {
    align-items: center;
    display: grid;
    gap: 15px;
    grid-template-columns: auto minmax(0, 1fr);
    min-width: 0;
}

.smp-podcast-player__stage {
    align-items: center;
    aspect-ratio: 16 / 9;
    background: #090606;
    border: 1px solid rgba(244, 238, 233, 0.12);
    border-radius: 2px;
    display: flex;
    height: 72px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: height 220ms ease, width 220ms ease;
    width: 128px;
}

.smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__stage {
    border-color: rgba(224, 8, 19, 0.34);
    height: 169px;
    width: 300px;
}

.smp-podcast-player__cover {
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.smp-podcast-player__video,
.smp-podcast-player__video iframe {
    border: 0;
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.smp-podcast-player__copy {
    min-width: 0;
}

.smp-podcast-player__eyebrow {
    color: var(--smp-player-accent-bright);
    display: block;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.18em;
    line-height: 1.2;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.smp-podcast-player__eyebrow > span:first-child {
    color: rgba(244, 238, 233, 0.38);
    margin: 0 4px;
}

.smp-podcast-player__title {
    color: var(--smp-player-ink);
    display: -webkit-box;
    font-family: Fraunces, Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.28;
    max-width: 29ch;
    overflow: hidden;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.smp-podcast-player__title[href]:hover {
    color: var(--smp-player-accent-bright);
}

.smp-podcast-player__modes {
    align-items: center;
    display: flex;
    gap: 4px;
    margin-top: 10px;
}

.smp-podcast-player .smp-podcast-player__mode {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 1px solid rgba(244, 238, 233, 0.14);
    border-radius: 2px;
    color: var(--smp-player-muted);
    cursor: pointer;
    display: inline-flex;
    font: 700 9px/1 "Inter Tight", Inter, sans-serif;
    gap: 6px;
    letter-spacing: 0.12em;
    min-height: 27px;
    padding: 6px 9px;
    text-transform: uppercase;
}

.smp-podcast-player__mode svg {
    fill: currentColor;
    height: 12px;
    width: 12px;
}

.smp-podcast-player__mode:hover,
.smp-podcast-player__mode.is-active {
    background: rgba(224, 8, 19, 0.12);
    border-color: rgba(255, 68, 54, 0.72);
    color: #fff;
}

.smp-podcast-player__transport {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.smp-podcast-player__buttons {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.smp-podcast-player button,
.smp-podcast-player select,
.smp-podcast-player input {
    font: inherit;
}

.smp-podcast-player .smp-podcast-player__button,
.smp-podcast-player .smp-podcast-player__utility {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--smp-player-ink);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.smp-podcast-player__button svg,
.smp-podcast-player__utility svg {
    display: block;
    fill: currentColor;
    height: 18px;
    width: 18px;
}

.smp-podcast-player__button:focus-visible,
.smp-podcast-player__utility:focus-visible,
.smp-podcast-player__mode:focus-visible,
.smp-podcast-player select:focus-visible,
.smp-podcast-player input:focus-visible,
.smp-podcast-player__title:focus-visible {
    outline: 2px solid var(--smp-player-accent-bright);
    outline-offset: 3px;
}

.smp-podcast-player .smp-podcast-player__toggle {
    background: var(--smp-player-accent);
    border: 1px solid var(--smp-player-accent-bright);
    border-radius: 50%;
    color: #fff;
    height: 40px;
    transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    width: 40px;
}

.smp-podcast-player .smp-podcast-player__toggle:hover {
    background: var(--smp-player-accent-bright);
    box-shadow: 0 0 22px -6px rgba(255, 68, 54, 0.9);
    transform: scale(1.04);
}

.smp-podcast-player .smp-podcast-player__skip {
    color: var(--smp-player-muted);
    height: 34px;
    position: relative;
    width: 34px;
}

.smp-podcast-player__skip svg {
    height: 28px;
    width: 28px;
}

.smp-podcast-player__skip small {
    color: currentColor;
    font-size: 8px;
    font-weight: 750;
    left: 50%;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -43%);
}

.smp-podcast-player__skip:hover,
.smp-podcast-player__utility:hover {
    color: var(--smp-player-accent-bright);
}

.smp-podcast-player__timeline {
    align-items: center;
    color: var(--smp-player-muted);
    display: grid;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    gap: 9px;
    grid-template-columns: 40px minmax(90px, 1fr) 40px;
    min-width: 0;
}

.smp-podcast-player input[type="range"] {
    appearance: none;
    background: transparent;
    cursor: pointer;
    height: 20px;
    margin: 0;
    min-width: 0;
    padding: 0;
    width: 100%;
}

.smp-podcast-player input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(90deg, rgba(224, 8, 19, 0.72), rgba(244, 238, 233, 0.2));
    border-radius: 999px;
    height: 3px;
}

.smp-podcast-player input[type="range"]::-moz-range-track {
    background: rgba(244, 238, 233, 0.2);
    border-radius: 999px;
    height: 3px;
}

.smp-podcast-player input[type="range"]::-moz-range-progress {
    background: var(--smp-player-accent);
    height: 3px;
}

.smp-podcast-player input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    background: var(--smp-player-accent-bright);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(224, 8, 19, 0.36);
    height: 12px;
    margin-top: -4.5px;
    width: 12px;
}

.smp-podcast-player input[type="range"]::-moz-range-thumb {
    background: var(--smp-player-accent-bright);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(224, 8, 19, 0.36);
    height: 9px;
    width: 9px;
}

.smp-podcast-player__utilities {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.smp-podcast-player__rate select {
    appearance: auto;
    background: rgba(244, 238, 233, 0.06);
    border: 1px solid rgba(244, 238, 233, 0.18);
    border-radius: 2px;
    color: var(--smp-player-ink);
    font-size: 11px;
    height: 32px;
    padding: 0 5px;
    width: 60px;
}

.smp-podcast-player__rate option {
    color: #16090b;
}

.smp-podcast-player__volume {
    align-items: center;
    display: flex;
    gap: 5px;
}

.smp-podcast-player__volume input {
    width: 68px;
}

.smp-podcast-player .smp-podcast-player__utility {
    border: 1px solid rgba(244, 238, 233, 0.14);
    border-radius: 2px;
    height: 32px;
    width: 32px;
}

.smp-podcast-player__close {
    margin-left: 2px;
}

.smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__download {
    opacity: 0.44;
}

body.smp-podcast-ajax-loading {
    cursor: progress;
}

body.smp-podcast-ajax-loading [data-smp-ajax-root],
body.smp-podcast-ajax-loading [data-elementor-type="wp-page"],
body.smp-podcast-ajax-loading [data-elementor-type="wp-post"],
body.smp-podcast-ajax-loading [data-elementor-type="single-post"],
body.smp-podcast-ajax-loading [data-elementor-type="single"],
body.smp-podcast-ajax-loading [data-elementor-type="archive"],
body.smp-podcast-ajax-loading .elementor-location-single,
body.smp-podcast-ajax-loading .elementor-location-archive,
body.smp-podcast-ajax-loading main.site-main,
body.smp-podcast-ajax-loading main#content {
    opacity: 0.72;
    transition: opacity var(--smp-transition-duration, 180ms) ease;
}

@media (max-width: 1050px) {
    :root {
        --smp-player-height: 154px;
        --smp-player-video-height: 260px;
    }

    .smp-podcast-player__inner,
    .smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__inner {
        gap: 10px 20px;
        grid-template-columns: minmax(350px, 1fr) minmax(290px, 0.9fr);
        min-height: 128px;
    }

    .smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__inner {
        min-height: 234px;
    }

    .smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__stage {
        height: 135px;
        width: 240px;
    }

    .smp-podcast-player__utilities {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 700px) {
    :root {
        --smp-player-height: 236px;
        --smp-player-video-height: min(470px, 80vh);
    }

    .smp-podcast-player {
        max-height: 80vh;
        overflow-y: auto;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .smp-podcast-player__inner,
    .smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__inner {
        gap: 10px;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .smp-podcast-player__identity {
        padding-right: 38px;
    }

    .smp-podcast-player__stage {
        height: 63px;
        width: 112px;
    }

    .smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__identity {
        align-items: start;
        grid-template-columns: 1fr;
        padding-right: 0;
    }

    .smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__stage {
        height: auto;
        width: 100%;
    }

    .smp-podcast-player[data-smp-mode="video"] .smp-podcast-player__copy {
        padding-right: 38px;
    }

    .smp-podcast-player__eyebrow {
        margin-bottom: 4px;
    }

    .smp-podcast-player__title {
        font-size: 14px;
    }

    .smp-podcast-player__transport {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .smp-podcast-player__timeline {
        align-self: center;
    }

    .smp-podcast-player__utilities {
        grid-column: auto;
    }

    .smp-podcast-player__volume input {
        width: 54px;
    }

    .smp-podcast-player__close {
        position: absolute;
        right: 11px;
        top: 10px;
        z-index: 4;
    }
}

@media (max-width: 430px) {
    .smp-podcast-player__transport {
        grid-template-columns: 1fr;
    }

    .smp-podcast-player__utilities {
        gap: 6px;
        justify-content: flex-start;
    }

    .smp-podcast-player__rate select {
        width: 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .smp-podcast-player *,
    body.smp-podcast-ajax-loading [data-smp-ajax-root],
    body.smp-podcast-ajax-loading [data-elementor-type] {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
