/* Elementor Form Summary – frontend */

.efs-summary {
	--efs-title-color: inherit;
	--efs-label-color: inherit;
	--efs-value-color: inherit;
	--efs-image-border: rgba(0, 0, 0, 0.15);
}

.efs-summary__title {
	margin-bottom: 0.5em;
	color: var(--efs-title-color, inherit);
	font-weight: 600;
}

.efs-summary__list {
	display: grid;
	grid-template-columns: max-content 1fr;
	column-gap: 1em;
	row-gap: 0.35em;
	margin: 0;
}

.efs-summary__label {
	color: var(--efs-label-color, inherit);
	font-weight: 600;
}

.efs-summary__value {
	margin: 0;
	color: var(--efs-value-color, inherit);
	overflow-wrap: anywhere;
}

.efs-summary__image {
	max-width: 240px;
	max-height: 120px;
	display: block;
	border: 1px solid var(--efs-image-border, rgba(0, 0, 0, 0.15));
	background: #fff;
}

@media (max-width: 480px) {
	.efs-summary__list {
		grid-template-columns: 1fr;
	}
}
