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

.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;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    overflow-x: hidden;
}

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

    .base-hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 600px;
    }
}

.base-hero-content {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

.base-hero-visual {
    flex: 1;
    min-width: 0;
    position: relative;
    perspective: 1000px;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.base-hero-image-wrapper {
    position: relative;
    display: inline-block;
    transform: rotateY(-5px) rotateX(2px);
    transition: transform 0.5s ease;
    border-radius: 0.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    max-width: 1024px;
    margin: 0 auto;
}

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

.base-hero-image-wrapper:hover {
    transform: rotateY(-2px) rotateX(1px);
}

.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;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* Badge specific to hero usually – b-cube: neutral */
.base-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--color-surface-hover);
    border: 1px solid var(--color-border);
    border-radius: 0.25rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    margin: 0 auto 1.5rem auto;
}

.base-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}