: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);
}

/* ===== Hosts Hero ===== */
.hosts-hero {
    padding: 120px 0 48px;
    text-align: center;
    background: rgb(0, 51, 102);
    background: linear-gradient(
        135deg,
        rgba(0, 51, 102, 1) 0%,
        rgba(5, 111, 82, 1) 50%,
        rgba(81, 129, 176, 1) 100%
    );
}

.hosts-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hosts-hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

/* ===== Hosts Grid ===== */
.hosts-grid {
    padding: 48px 0 80px;
    background: var(--bg-secondary);
}

@media (max-width: 575.98px) {
    .hosts-grid {
        padding-bottom: 48px;
    }

    .hosts-grid .row {
        --bs-gutter-y: 0.75rem;
    }
}

/* ===== Host Card ===== */
.host-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.host-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);
    text-decoration: none;
    color: var(--text-primary);
}

.host-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-glass);
}

.host-info {
    min-width: 0;
}

.host-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1px;
    line-height: 1.25;
}

.host-title {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0;
}

.host-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
}

@media (min-width: 992px) {
    .host-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        padding: 28px 20px 24px;
    }

    .host-photo {
        width: 112px;
        height: 112px;
        border: 3px solid var(--border-glass);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        margin-bottom: 16px;
    }

    .host-name {
        font-size: 1.05rem;
    }

    .host-title {
        font-size: 0.82rem;
    }

    .host-arrow {
        display: none;
    }
}
