.vvesb-wrapper {
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
	margin: 0 auto;
    transition: box-shadow 0.3s ease;
}

.vvesb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.vvesb-inner {
	position: relative;
	z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vvesb-grid {
	display: flex;
	flex-direction: column;
    height: 100%;
}

.vvesb-col {
	display: flex;
	flex-direction: column;
}

.vvesb-headline {
	margin: 0;
}

.vvesb-description {
	margin-bottom: 20px;
}

.vvesb-btn {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
    text-align: center;
    width: fit-content;
}

/* Desktop Two Columns */
@media (min-width: 768px) {
	.vvesb-cols-2 .vvesb-grid {
		flex-direction: row;
	}

	.vvesb-ratio-50-50 .vvesb-left-col { width: 50%; }
	.vvesb-ratio-50-50 .vvesb-right-col { width: 50%; }

	.vvesb-ratio-45-55 .vvesb-left-col { width: 45%; }
	.vvesb-ratio-45-55 .vvesb-right-col { width: 55%; }

	.vvesb-ratio-40-60 .vvesb-left-col { width: 40%; }
	.vvesb-ratio-40-60 .vvesb-right-col { width: 60%; }

	.vvesb-ratio-35-65 .vvesb-left-col { width: 35%; }
	.vvesb-ratio-35-65 .vvesb-right-col { width: 65%; }

	.vvesb-ratio-60-40 .vvesb-left-col { width: 60%; }
	.vvesb-ratio-60-40 .vvesb-right-col { width: 40%; }
}

/* Mobile defaults */
@media (max-width: 767px) {
    .vvesb-cols-2 .vvesb-grid {
        flex-direction: column;
        gap: 32px !important; /* Fallback override for mobile */
    }
    .vvesb-left-col, .vvesb-right-col {
        width: 100% !important;
    }
}