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

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

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

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

.base-hero-visual {
    flex: 1;
    position: relative;
    perspective: 1000px;
    width: 100%;
}

.base-hero-image-wrapper {
    position: relative;
    transform: rotateY(-4px) rotateX(1px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    background-color: transparent;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .base-hero-visual {
        display: flex;
        align-items: stretch;
    }

    .base-hero-image-wrapper {
        height: 100%;
    }

    .base-hero-image {
        height: 100%;
        object-fit: cover;
    }
}

.base-hero-image-wrapper:hover {
    transform: rotateY(-2px) rotateX(0deg);
    box-shadow: var(--shadow-glow);
}

.base-hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-left: 0;
    margin-right: 0;
}

/* Badge specific to hero usually */
.base-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

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

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