.dhb-6543-wrapper {
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    display: none !important; /* Force hidden initially */
    align-items: center;
    overflow: hidden;
}

/* Visibile State - Toggled by Inline JS or Fallback */
.dhb-6543-wrapper.dhb-visible,
.dhb-6543-wrapper.is-active,
.elementor-editor-active .dhb-6543-wrapper {
    display: flex !important; /* Force shown */
}

/* Full Width Hack */
.dhb-6543-wrapper.dhb-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.dhb-6543-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* Default overlay, overridden by control */
    z-index: 1;
}

.dhb-6543-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.dhb-6543-text-col {
    flex: 1;
    min-width: 300px;
}

.dhb-6543-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* gap: 20px; Removed GAP to allow margin-left overlap */
}

.dhb-6543-headline {
    margin: 0 0 20px;
    line-height: 1.2;
}

.dhb-6543-subheadline {
    margin: 0 0 30px;
    font-size: 1.1em;
    line-height: 1.5;
}

.dhb-6543-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dhb-6543-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
}

.dhb-6543-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.dhb-6543-img-main,
.dhb-6543-img-secondary {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .dhb-6543-content {
        flex-direction: column; 
        text-align: center;
        gap: 30px;
    }

    .dhb-6543-text-col {
        min-width: 100%;
    }

    .dhb-6543-image-col {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .dhb-6543-actions {
        justify-content: center;
    }
}
