/* ── Article Title ── */
.article-title {
	max-width: 680px;
	margin: 0 auto 48px;
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.3px;
	color: #111;
}

/* ── Image + Paragraph Row ── */
.media-row {
	display: flex;
	gap: 32px;
	margin-bottom: 32px;
	align-items: stretch;
}

.media-row .article-image {
	flex: 0 0 500px;
	max-width: 500px;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 4px;
}

.media-row .side-paragraph {
	flex: 1;
	display: flex;
	align-items: flex-start;
}

.media-row .side-paragraph p {
	margin: 0;
}

/* ── Full-Width Body Text ── */
.article-body p {
	margin-bottom: 24px;
}

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

/* ── Consent Dialog ── */
.consent-backdrop {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.45);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s ease;
}

.consent-backdrop.hidden {
	opacity: 0;
	pointer-events: none;
}

.consent-dialog {
	background-color: #ffffff;
	border-radius: 6px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
	max-width: 480px;
	width: 90%;
	padding: 48px 40px 40px;
	text-align: center;
}

.consent-dialog h2 {
	font-size: 24px;
	font-weight: 700;
	color: #111;
	margin-bottom: 20px;
	letter-spacing: -0.2px;
}

.consent-dialog p {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 32px;
}

.consent-privacy-link {
	color: #111;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s ease;
}

.consent-privacy-link:hover {
	color: #555;
}

.consent-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
}

.consent-actions button {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 15px;
	padding: 10px 28px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.consent-actions .btn-continue {
	background-color: #111;
	color: #fff;
	border-color: #111;
}

.consent-actions .btn-continue:hover {
	background-color: #333;
}

.consent-actions .btn-leave {
	background-color: transparent;
	color: #888;
	border-color: #d0d0d0;
}

.consent-actions .btn-leave:hover {
	color: #555;
	border-color: #aaa;
}

/* ── Page content blur while consent pending ── */
.page-content {
	transition: filter 0.3s ease;
}

.page-content.locked {
	filter: blur(6px);
	pointer-events: none;
	user-select: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.article-title {
		font-size: 28px;
	}

	.media-row {
		flex-direction: column;
	}

	.media-row .article-image {
		flex: none;
		max-width: 100%;
		width: 100%;
	}

	.consent-dialog {
		padding: 36px 28px 32px;
	}
}
