/* =====================================================
   Popup text content typography
   Applies to .popup__text — p, ul, ol rich-text output
   ===================================================== */

.popup__text {
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 20px;
}

/* Paragraphs */
.popup__text p {
	margin: 0 0 1rem;
}

.popup__text p:last-child {
	margin-bottom: 0;
}

/* Unordered list */
.popup__text ul {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.popup__text ul li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.5rem;
}

.popup__text ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #e0b534;
	flex-shrink: 0;
}

/* Ordered list */
.popup__text ol {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	counter-reset: popup-counter;
}

.popup__text ol li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.5rem;
	counter-increment: popup-counter;
}

.popup__text ol li::before {
	content: counter(popup-counter) '.';
	position: absolute;
	left: 0;
	top: 0;
	color: #e0b534;
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1.7;
}

/* Last list has no bottom margin */
.popup__text ul:last-child,
.popup__text ol:last-child {
	margin-bottom: 0;
}

/* Strong / bold */
.popup__text strong,
.popup__text b {
	color: #e0b534;
	font-weight: 600;
}

/* Links */
.popup__text a {
	color: #e0b534;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.2s;
}

.popup__text a:hover {
	opacity: 0.75;
}
