.yg-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}

.yg-popup-overlay.yg-popup-open {
	opacity: 1;
	visibility: visible;
}

.yg-popup-dialog {
	position: relative;
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	padding: 40px 30px 30px;
	box-sizing: border-box;
}

.yg-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	color: #555;
	text-decoration: none;
}

.yg-popup-close:hover {
	text-decoration: none;
}

.yg-popup-title {
	margin: 0 0 15px;
	font-size: 20px;
}

.yg-popup-content {
	font-size: 15px;
	line-height: 1.5;
}

.yg-popup-content p:last-child {
	margin-bottom: 0;
}
