/* ==================== HERO SECTIONS ==================== */

/* --- Compact Hero (Authenticated) --- */
.hero-compact {
    padding-bottom: var(--space-xl);
}

.hero-compact-card {
    position: relative;
    height: 100px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--glass-shadow);
    background: var(--color-bg-elevated);
}

.hero-compact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* Focus on top part of image usually */
    opacity: 0.4;
    filter: blur(4px);
    /* Strong blur for text readability */
}

.hero-compact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-panel-bg);
    opacity: 0.8;
    z-index: 1;
}

.hero-compact-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-2xl);
}

.hero-compact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-label-sm {
    font-size: 0.7rem;
    color: var(--color-purple-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-text-group {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
}

.hero-title-sm {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.hero-chapter-sm {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.btn-hero-compact {
    background: var(--color-purple-primary);
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-hero-compact:hover {
    background: var(--color-purple-hover);
    transform: translateX(3px);
}

.arr {
    transition: transform 0.2s;
}

.btn-hero-compact:hover .arr {
    transform: translateX(3px);
}

/* --- Guest Teaser Hero --- */
.hero-guest {
    padding-bottom: var(--space-xl);
}

.hero-guest-card {
    background: var(--color-bg-elevated);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.hero-guest-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.badge-feature {
    background: linear-gradient(90deg, #f43f5e, #db2777);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.guest-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.guest-desc {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.hero-guest-deco {
    font-size: 5rem;
    opacity: 0.1;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    filter: blur(2px);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-compact-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
        padding: var(--space-lg);
    }

    .hero-compact-card {
        height: auto;
    }

    .hero-text-group {
        flex-direction: column;
        gap: 0;
    }

    .btn-hero-compact {
        width: 100%;
        justify-content: center;
    }
}