/* Kaartstijl voor ALLE referentiegrids (zowel /references/ als het uitgelichte blok):
   afgeronde kaart + witte locatie-"ribbon" met schuine rechterkant.
   Laadt NA referenties.css (dependency) en overschrijft daar enkel de kaart/locatie van.
   Jouw referenties.css blijft het bestand dat je zelf bewerkt; dit voegt enkel de look toe. */

.cibor-ref__card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

/* Locatie als witte ribbon met schuine rechterkant, linksboven */
.cibor-ref__loc {
	background: #fff;
	color: #1a1a1a;
	font-weight: 600;
	font-size: 13px;
	padding: 8px 30px 8px 16px;
	text-shadow: none;
	-webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
	z-index: 2;
}

/* Eigen "alle referenties"-knop — alleen in het uitgelichte blok */
.cibor-ref--uitgelicht .cibor-ref__more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}
.cibor-ref--uitgelicht .cibor-ref__allbtn {
	display: inline-block;
	background: #1457c4;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 6px;
	transition: filter .15s ease;
}
.cibor-ref--uitgelicht .cibor-ref__allbtn:hover {
	filter: brightness(.92);
	color: #fff;
}
