.efb-609 {
	width: 100%;
}

.efb-609__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px; /* Fallback */
}

.efb-609__item {
	display: flex;
	align-items: flex-start;
	gap: 16px; /* Fallback */
	overflow: hidden; /* Ensures border-radius wraps content */
	transition: all 0.3s ease;
}

/* Alignment Variations */
.efb-609--align-center .efb-609__item {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.efb-609--align-right .efb-609__item {
	flex-direction: row-reverse;
	text-align: right;
}

.efb-609__icon-wrapper {
	flex-shrink: 0;
	display: flex;
	align-items: flex-start;
}

.efb-609__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #333; /* Fallback */
}

.efb-609__icon svg {
	width: 24px; /* Fallback */
	height: 24px; /* Fallback */
	fill: currentColor;
}

.efb-609__content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.efb-609__label {
	font-size: 0.85em;
	opacity: 0.7;
	line-height: 1.2;
}

.efb-609__value {
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.4;
}

.efb-609__value a {
	text-decoration: underline;
	transition: color 0.3s ease;
}

/* Responsive Handling is largely managed by Elementor controls (e.g., grid-template-columns),
   but we can set some sensible defaults for mobile here if needed. */
@media (max-width: 767px) {
	.efb-609__list {
		grid-template-columns: 1fr !important; /* Force 1 column on mobile unless overridden heavily */
	}
}
