.em-caratteristiche-wrap {
	background: #e8e8e8;
	border-radius: 8px;
	padding: clamp(16px, 2.4vw, 32px);
	margin: 24px 0;
}

.em-caratteristiche-title {
	margin: 0 0 16px;
	font-weight: 700;
	font-size: clamp(28px, 4vw, 64px);
	line-height: 1.1;
	color: #000;
}

.em-caratteristiche-list {
	display: grid;
	gap: 12px;
}

.em-acc-item {
	background: #f3f3f3;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
	overflow: hidden;
}

.em-acc-trigger {
	width: 100%;
	border: 0;
	background: transparent;
	padding: clamp(16px, 1.8vw, 26px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	text-align: left;
	font-size: clamp(20px, 2.1vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	color: #000;
}

.em-acc-icon {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #ff2d68;
	position: relative;
}

.em-acc-icon::before,
.em-acc-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 2px;
	background: #fff;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease;
}

.em-acc-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.em-acc-item.is-open .em-acc-icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.em-acc-panel {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, opacity 0.25s ease;
}

.em-acc-item.is-open .em-acc-panel {
	opacity: 1;
}

.em-acc-content {
	padding: 0 clamp(16px, 1.8vw, 26px) clamp(16px, 1.8vw, 26px);
	color: #5e5e5e;
	font-size: 16px;
	line-height: 1.6;
}
.em-acc-content a{
	color:#000;
	text-decoration:underline;
}
.em-acc-content > :first-child {
	margin-top: 0;
}

.em-acc-content > :last-child {
	margin-bottom: 0;
}
.em-acc-text{
	font-size:30px;
}
@media screen and (max-width:980px){
	.em-acc-text{
		font-size:20px;
	}
}
@media (max-width: 767px) {
	.em-acc-trigger {
		font-size: 26px;
	}

	.em-acc-icon {
		flex-basis: 26px;
		width: 26px;
		height: 26px;
	}
}
