/* Google Font import will be handled by typography controls, but ensuring family here as fallback */
.melitos-hero-wrapper-239fbe47 {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    border-radius: var(--hero-br, 24px);
    min-height: var(--hero-height, 600px);
    width: 100%;
}

.melitos-hero-left-239fbe47 {
    width: 60%;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.melitos-hero-left-239fbe47::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.melitos-hero-left-title-239fbe47 {
    position: relative;
    z-index: 2;
    margin: 0;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.melitos-hero-right-239fbe47 {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--grad-1, #fe5f15), var(--grad-2, #f38a00));
}

.melitos-hero-right-title-239fbe47 {
    margin: 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .melitos-hero-wrapper-239fbe47 {
        flex-direction: column;
    }
    .melitos-hero-left-239fbe47, .melitos-hero-right-239fbe47 {
        width: 100%;
    }
    .melitos-hero-left-239fbe47 {
        min-height: calc(var(--hero-height, 600px) * 0.6);
    }
    .melitos-hero-right-239fbe47 {
        min-height: calc(var(--hero-height, 600px) * 0.4);
    }
}