/*
 * Brand-Hero head-block, server-rendered above the funnel on the checkout
 * segment (/reserviert). Loaded via <f:asset.css priority="1"> so it paints
 * before the Vue bundle mounts. All colors come from the theme vars passed
 * inline by Funnel.html (--hero-bg/-fg/-accent) so every theme is covered.
 *
 * clever-fit brand DNA: angular, typographic, no gradients/glass/shadow glow.
 */

.igs-funnel-hero {
    background: var(--hero-bg, #ffffff);
    color: var(--hero-fg, #0a0a0a);
    border-bottom: 1px solid color-mix(in srgb, var(--hero-fg, #0a0a0a) 12%, transparent);
}

.igs-funnel-hero__inner {
    max-width: 56rem;
    margin: 0 auto;
    padding: clamp(1.75rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.igs-funnel-hero__logo {
    max-width: 140px;
    max-height: 56px;
    object-fit: contain;
}

.igs-funnel-hero__block {
    position: relative;
    padding-left: 1rem;
    text-align: left;
}

/* 3px brand accent line to the left of the headline block. */
.igs-funnel-hero__block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 3px;
    background: var(--hero-accent, #e2001a);
}

.igs-funnel-hero__headline {
    margin: 0;
    font-family: var(--igs-font-heading, 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: -0.01em;
    font-size: clamp(2rem, 6vw, 3.25rem);
    color: var(--hero-fg, #0a0a0a);
}

.igs-funnel-hero__subline {
    margin: 0.5rem 0 0;
    font-weight: 400;
    line-height: 1.4;
    font-size: clamp(0.95rem, 2.5vw, 1.125rem);
    color: color-mix(in srgb, var(--hero-fg, #0a0a0a) 62%, transparent);
}
