/*
 * SCCT — Pages de consultation PDF (menu du site conservé).
 */

body.scct-pdf-viewer-page .scct-pdf-viewer {
	padding-top: 40px;
	padding-bottom: 60px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

body.scct-pdf-viewer-page .scct-pdf-viewer .spnc-row {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

/* spnc-col-12 = ~17 % dans Newscrunch ; spnc-col-1 = pleine largeur */
body.scct-pdf-viewer-page .scct-pdf-viewer .scct-pdf-viewer-col {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	padding: 0 !important;
	box-sizing: border-box;
}

.scct-pdf-viewer-card {
	width: 100%;
	max-width: 100%;
	background: #fff;
	box-shadow: 0 0 8px 2px rgba(23, 23, 35, 0.05);
	padding: 24px 24px 20px;
	box-sizing: border-box;
	border-radius: 10px;
}

.scct-pdf-viewer-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #d7d7d7;
}

.scct-pdf-viewer-title {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	color: #000;
}

.scct-pdf-viewer-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.scct-pdf-viewer-actions--stack {
	flex-direction: column;
	align-items: stretch;
}

.scct-pdf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 18px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	color: #000;
	text-decoration: none;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	cursor: pointer;
	box-sizing: border-box;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.scct-pdf-btn:hover,
.scct-pdf-btn:focus {
	color: #fff;
	background-color: #d20000;
	border-color: #d20000;
}

.scct-pdf-btn--primary {
	color: #fff;
	background-color: #d20000;
	border-color: #d20000;
}

.scct-pdf-btn--primary:hover,
.scct-pdf-btn--primary:focus {
	color: #fff;
	background-color: #a80000;
	border-color: #a80000;
}

.scct-pdf-viewer-frame-wrap {
	width: 100%;
	max-width: 100%;
	height: calc(100vh - 280px);
	min-height: 480px;
	box-sizing: border-box;
}

.scct-pdf-viewer-frame {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	background: #f5f5f5;
	box-sizing: border-box;
}

.scct-pdf-viewer-mobile-cta {
	display: none;
	width: 100%;
	max-width: 100%;
	padding: 20px;
	margin-bottom: 16px;
	background: #fafafa;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	box-sizing: border-box;
}

.scct-pdf-viewer-mobile-cta p {
	margin: 0 0 16px;
	font-family: "Poppins", sans-serif;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #404040;
}

@media (max-width: 900px) {
	.scct-pdf-viewer-frame-wrap {
		height: calc(100vh - 320px);
		min-height: 360px;
	}

	.scct-pdf-viewer-mobile-cta {
		display: block;
	}

	/* Boutons du bandeau mobile uniquement (pas de doublon dans l’en-tête) */
	.scct-pdf-viewer-header .scct-pdf-viewer-actions {
		display: none;
	}
}

@media (max-width: 550px) {
	body.scct-pdf-viewer-page .scct-pdf-viewer {
		padding-top: 20px;
		padding-bottom: 40px;
	}

	body.scct-pdf-viewer-page .scct-pdf-viewer .spnc-row {
		padding-left: 12px;
		padding-right: 12px;
	}

	.scct-pdf-viewer-card {
		padding: 16px;
		border-radius: 8px;
	}

	.scct-pdf-viewer-title {
		font-size: 1.25rem;
	}

	.scct-pdf-viewer-frame-wrap {
		height: calc(100vh - 340px);
		min-height: 280px;
	}
}
