/* =========================================================================
 * PDF (CACC) — bouton front
 * Sobre, pro, toujours centré horizontalement, responsive.
 * ========================================================================= */

.bcpdf-wrap{
	width:100%;
	text-align:center;      /* centrage horizontal du bouton */
	margin:22px 0;
	box-sizing:border-box;
}

.bcpdf-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:12px;
	max-width:100%;
	background:#000C77;      /* bleu marine demandé */
	color:#fff !important;
	text-decoration:none;
	font-weight:600;
	font-size:16px;
	line-height:1.3;
	padding:16px 30px;
	border-radius:10px;
	box-shadow:0 6px 16px rgba(0,12,119,.22);
	transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
	box-sizing:border-box;
}

.bcpdf-btn:hover,
.bcpdf-btn:focus{
	background:#000a5e;
	transform:translateY(-2px);
	box-shadow:0 10px 22px rgba(0,12,119,.30);
	color:#fff !important;
}

.bcpdf-btn__icon{
	flex:0 0 auto;
}

.bcpdf-btn__label{
	overflow-wrap:anywhere;
}

/* ---- Mobile ---- */
@media (max-width:600px){
	.bcpdf-btn{
		width:100%;
		font-size:15px;
		padding:15px 20px;
	}
}
