.pewc-group-help {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-left: 8px;
	border: 1px solid #333;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	font-weight: 700;
	font-size: 12px !important;
	line-height: 18px;
	color: #333;
}

.pewc-group-help:hover {
	background: #7f1e1b;
	color: #fff;
}

.pewc-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 9999;
	opacity: 0;
	transition: opacity .15s ease;
}

.pewc-modal-overlay.is-visible { opacity: 1; }

.pewc-modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	width: min(900px, 92%);
	max-height: 82vh;
	overflow: hidden;
}

.pewc-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid #eee;
}
.pewc-modal-header h3 { margin: 0; font-size: 18px; }

.pewc-modal-header .pewc-modal-close {
	border: none;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 10px 13px;
}

.pewc-modal-content {
	padding: 14px 16px;
	max-height: calc(82vh - 56px);
	overflow: auto;
}

.pewc-modal-items { display: grid; gap: 12px; }

.pewc-modal-item {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 12px;
	align-items: start;
	border: 1px solid #f0f0f0;
	border-radius: 6px;
	padding: 10px;
	background: #fafafa;
}

[data-elementor-device-mode="mobile"] .pewc-modal-item {
	grid-template-columns: 1fr;
}

.pewc-modal-item.no-thumbnail {
	grid-template-columns: 1fr;
}

.pewc-modal-item-image {
	width: 96px;
	height: auto;
	border-radius: 4px;
	background: #fff;
}

.pewc-modal-item-title { font-weight: 600; margin-bottom: 4px;}
.pewc-modal-item-desc { color: #333; font-size: 13px; line-height: 1.45; font-size: 16px;}


