.cdn-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background-color: rgba(41, 38, 35, 0.55);
	box-sizing: border-box;
}

.cdn-popup-overlay[hidden] {
	display: none;
}

.cdn-popup-dialog {
	position: relative;
	width: 100%;
	max-width: 34rem;
	max-height: calc(100vh - 2rem);
	overflow-y: auto;
	padding: 2rem 2rem 1.75rem;
	background: #fff;
	border-top: 3px solid #e2d399;
	box-shadow: 0 1.25rem 3rem rgba(41, 38, 35, 0.18);
	box-sizing: border-box;
	font-family: var(--wp--preset--font-family--inter, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.cdn-popup-close {
	position: absolute;
	top: 0.875rem;
	right: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: none;
	background: transparent;
	color: #292623;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.55;
	transition: opacity 0.2s ease-in-out;
}

.cdn-popup-close:hover,
.cdn-popup-close:focus {
	opacity: 1;
	outline: none;
}

.cdn-popup-title {
	margin: 0 2rem 1.25rem 0;
	font-family: var(--wp--preset--font-family--pt-serif, "PT Serif", Georgia, "Times New Roman", serif);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.35;
	color: #292623;
}

.cdn-popup-body {
	margin-bottom: 1.5rem;
}

.cdn-popup-body p {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #292623;
}

.cdn-popup-body p:last-child {
	margin-bottom: 0;
}

.cdn-popup-dates {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0 0 1.25rem;
	padding: 1rem 1.125rem;
	background: #edebe2;
	border-left: 3px solid #0a3934;
}

.cdn-popup-dates-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #0a3934;
}

.cdn-popup-dates-range {
	font-family: var(--wp--preset--font-family--pt-serif, "PT Serif", Georgia, "Times New Roman", serif);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.3;
	color: #292623;
}

.cdn-popup-dates-detail {
	font-size: 0.875rem;
	color: #292623;
	opacity: 0.75;
}

.cdn-popup-actions {
	display: flex;
	justify-content: flex-end;
}

.cdn-popup-ok {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 0;
	background: #0a3934;
	color: #fff;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
	cursor: pointer;
	transition: opacity 0.2s ease-in-out;
}

.cdn-popup-ok:hover,
.cdn-popup-ok:focus {
	opacity: 0.9;
	outline: 2px solid #0a3934;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.cdn-popup-close,
	.cdn-popup-ok {
		transition: none;
	}
}

@media (max-width: 480px) {
	.cdn-popup-dialog {
		padding: 1.5rem 1.25rem 1.25rem;
	}

	.cdn-popup-title {
		font-size: 1.25rem;
	}

	.cdn-popup-dates-range {
		font-size: 1.125rem;
	}

	.cdn-popup-body p {
		font-size: 0.875rem;
	}

	.cdn-popup-actions {
		justify-content: stretch;
	}

	.cdn-popup-ok {
		width: 100%;
		text-align: center;
	}
}
