/* =========================================
   HERO WIDGETS
   ========================================= */

/* KSTA-Stil: Kompakte Hero für Home (eine Klasse pro Element) */
.base-hero-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
    text-align: center;
}

@media (min-width: 1024px) {
    .base-hero-compact {
        flex-direction: row;
        text-align: left;
        padding: 24px 0 80px;
        gap: 50px;
    }
}

.base-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px 0 3rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

@media (min-width: 1024px) {
    .base-hero {
        flex-direction: row;
        text-align: left;
        padding: 2px 0 5rem;
        gap: 50px;
    }
}

.base-hero-content {
    flex: 1;
    max-width: 600px;
    padding: 3px;
}

.base-hero-visual {
    flex: 0 0 auto;
    position: relative;
    perspective: 1000px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* KSTA-Stil: Dezente Rahmen, reduzierte Abrundung */
.base-hero-image-wrapper {
    position: relative;
    transition: box-shadow 0.2s ease;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: inline-block;
}

.base-hero-image-wrapper:hover {
    box-shadow: var(--shadow-lg);
}

.base-hero-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

@media (min-width: 1024px) {
    .base-hero-image {
        max-height: 420px;
    }
}

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

/* KSTA-Stil: Hero-Badge mit Primärfarbe #00b7ff */
.base-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 183, 255, 0.08);
    border: 1px solid rgba(0, 183, 255, 0.2);
    border-radius: 2px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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