/* E2G Hero Block Styles */

.e2g-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.e2g-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.e2g-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 2rem;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .e2g-hero__content {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .e2g-hero__content {
        padding: 1rem;
    }
}

