/* =========================================
   HERO WIDGETS – ohne Glow
   ========================================= */

.base-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    padding: 0 0 3rem;
    background-color: var(--color-background);
}

@media (min-width: 1024px) {
    .base-hero {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding-bottom: 4rem;
    }
}

.base-hero-content {
    flex: 1;
    max-width: 640px;
    background-color: transparent;
}

.base-hero-text {
    width: 100%;
    text-align: left;
}

.base-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-width: 0;
}

.base-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

@media (max-width: 479px) {
    .base-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .base-hero-actions > .base-button-primary-lg,
    .base-hero-actions > .base-button-secondary-lg {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .base-hero-actions {
        justify-content: flex-start;
    }
}

.base-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.875rem;
    background: var(--color-primary-soft-bg);
    border: 1px solid var(--color-primary-soft-border);
    border-radius: 999px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.base-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.base-hero-action-icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .base-hero-content {
        display: contents;
    }

    .base-hero-text {
        display: contents;
    }

    .base-hero-text > .base-badge {
        order: 0;
        width: 100%;
    }

    .base-hero-text > .base-headline-hero-h1 {
        order: 1;
        width: 100%;
    }

    .base-hero-visual {
        order: 2;
        width: 100%;
    }

    .base-hero-text > .base-content-text-large {
        order: 3;
        width: 100%;
    }

    .base-hero-actions {
        order: 4;
        width: 100%;
    }
}
