/* Utopia Life — page styles. Extends ugv-core.css; tokens only, no new colors. */

/* Hero */
.ugv-life-hero {
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(123, 92, 255, 0.10), transparent 60%),
        radial-gradient(ellipse 70% 55% at 20% 85%, rgba(255, 46, 206, 0.08), transparent 60%),
        var(--ugv-ink);
    padding: calc(96px + clamp(3rem, 7vw, 5.5rem)) 0 clamp(3.5rem, 7vw, 6rem);
}

.ugv-life-hero__title {
    font-size: clamp(2.75rem, 6.5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.02;
    margin-bottom: 1.25rem;
}

.ugv-life-hero .ugv-lede { margin-bottom: 2rem; }

.ugv-life-host { margin-bottom: 2.25rem; }
.ugv-life-host__name {
    font-family: var(--ugv-voice);
    font-style: italic;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: #fff;
    line-height: 1.2;
    margin: 0.375rem 0 0.125rem;
}
.ugv-life-host__role { font-size: 0.875rem; color: var(--ugv-ash); margin: 0; }

.ugv-life-hero__video .ugv-video {
    border-radius: var(--ugv-radius);
    border: 1px solid var(--ugv-hairline);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* About the show */
.ugv-life-about p { font-size: var(--ugv-lede); line-height: 1.65; }

.ugv-life-feature { text-align: left; }
.ugv-life-feature__icon {
    display: inline-grid;
    place-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    background: rgba(204, 0, 204, 0.1);
    color: var(--ugv-magenta);
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}

/* Latest episode — inside the On Air frame */
.ugv-video--tall {
    aspect-ratio: auto;
    height: 100%;
    min-height: 320px;
}
@media (max-width: 991px) {
    .ugv-video--tall { aspect-ratio: 16 / 9; height: auto; min-height: 0; }
}

.ugv-episode-panel {
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ugv-episode-panel__title {
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
    margin-bottom: 0.875rem;
}
.ugv-episode-panel .ugv-eyebrow { margin-bottom: 0.625rem; }
.ugv-episode-panel__meta {
    font-family: var(--ugv-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ugv-ash);
    margin-bottom: 1rem;
}
.ugv-episode-panel__about {
    font-size: 0.9375rem;
    color: var(--ugv-ash);
    line-height: 1.65;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.ugv-episode-panel__about p { margin-bottom: 0.75em; }
.ugv-episode-panel__foot {
    margin-top: auto;
    padding-top: 1.375rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Host section */
.ugv-life-hostname { margin-bottom: 1.25rem; }

/* Be a guest */
.ugv-guest-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3rem);
    background:
        radial-gradient(ellipse 90% 90% at 100% 0%, rgba(123, 92, 255, 0.08), transparent 55%),
        var(--ugv-graphite);
}
.ugv-guest-card h2 { max-width: 18ch; margin-bottom: 0.875rem; }
