:root {
	--bg-primary: #121212;
	--bg-secondary: #1a1a1a;
	--bg-card: rgba(255, 255, 255, 0.04);
	--bg-card-hover: rgba(255, 255, 255, 0.08);
	--text-primary: #f8f9fa;
	--text-secondary: #DDDDDD;
	--text-muted: #999999;
	--accent: #87CEFA;
	--accent-hover: #5bb8e8;
	--accent-glow: rgba(135, 206, 250, 0.25);
	--border-light: rgba(255, 255, 255, 0.06);
	--border-glass: rgba(255, 255, 255, 0.1);
}

/* ===== Host Profile Hero ===== */
.host-header {
    padding: 110px 0 70px;
    background: rgb(0, 35, 72);
    background: linear-gradient(
        90deg,
        rgba(0, 35, 72, 1) 0%,
        rgba(3, 78, 57, 1) 35%,
        rgba(55, 95, 135, 1) 75%,
        rgba(0, 35, 72, 1) 100%
    );
    position: relative;
    overflow: hidden;
}

.host-headshot-wrap {
    max-width: 260px;
    margin: 0 auto;
}

.host-headshot {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    display: block;
}

.host-name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .host-name {
        font-size: 2.4rem;
    }
}

.host-role {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
}

.host-header .show-badge {
    background: linear-gradient(135deg, var(--accent), #66b0ff);
    color: #121212;
}

.host-header .show-meta {
    display: none;
}

@media (max-width: 991.98px) {
    .host-headshot-wrap {
        max-width: 190px;
    }
}

@media (max-width: 575.98px) {
    .host-headshot-wrap {
        max-width: 140px;
    }
}

@media (max-width: 991.98px) {
    .host-header {
        padding: 50px 0 50px;
    }

    .host-header .show-badge {
        display: table;
        /* margin: 0 auto 0.75rem; */
    }

    .host-name,
    .host-role {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .host-name {
        font-size: 1.6rem;
    }

    .host-role {
        margin-bottom: 0;
    }
}

/* ===== Host Sections ===== */
.host-shows,
.host-episodes {
    padding: 60px 0 80px;
    background: var(--bg-primary);
}

.host-episodes {
    padding-top: 0;
}

.host-section-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== Episode Rows (show name above title) ===== */
.ep-row-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ep-row-show {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.ep-row-main .ep-row-title {
    flex: 0 1 auto;
    display: block;
}

@media (max-width: 575.98px) {
    .ep-row-main {
        order: 2;
        flex: 1;
        min-width: 0;
    }

    .ep-row-main .ep-row-title {
        order: unset;
        flex: 0 1 auto;
        font-size: 0.9rem;
    }
}

/* ===== Shows Hosted Card ===== */
.host-show-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.host-show-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.host-show-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.host-show-art {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.host-show-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.25;
}

.host-show-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.host-show-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 16px;
    flex: 1;
}

.host-show-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.host-show-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #121212;
}

.host-show-btn svg {
    transition: transform 0.2s ease;
}

.host-show-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 575.98px) {
    .host-show-card {
        padding: 16px;
    }

    .host-show-art {
        width: 64px;
        height: 64px;
        border-radius: 10px;
    }
}
