/* ==========================================================================
   Showcase Produits — Fribourg
   ========================================================================== */

.fribourg-sc {
	max-width: 1600px;
	margin: 30px auto;
	padding: 0;
}

/* Admin label */
.fribourg-sc__admin-label {
	background: #1e1e1e;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 6px 14px;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 15px;
}

.fribourg-sc__title {
	font-size: 25px !important;
	font-weight: 700;
	margin-bottom: 30px;
}

/* Grid */
.fribourg-sc__grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sc-gap, 5px);
}

/* Item */
.fribourg-sc__item {
	position: relative;
	overflow: hidden;
	border-radius: var(--sc-radius, 0px);
	height: var(--sc-height, 400px);
	text-decoration: none !important;
	color: #fff !important;
	cursor: pointer;
}

.fribourg-sc__item--25 {
	width: calc(25% - var(--sc-gap, 5px) * 3 / 4);
}

.fribourg-sc__item--33 {
	width: calc(33.333% - var(--sc-gap, 5px) * 2 / 3);
}

.fribourg-sc__item--50 {
	width: calc(50% - var(--sc-gap, 5px) / 2);
}

.fribourg-sc__item--66 {
	width: calc(66.666% - var(--sc-gap, 5px) / 3);
}

.fribourg-sc__item--75 {
	width: calc(75% - var(--sc-gap, 5px) / 4);
}

.fribourg-sc__item--100 {
	width: 100%;
}

/* Image */
.fribourg-sc__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.fribourg-sc__item:hover .fribourg-sc__img {
	transform: scale(1.05);
}

/* Overlay gradient */
.fribourg-sc__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
	padding: 40px 30px 30px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.fribourg-sc__item-title {
	font-size: clamp(20px, calc(20px + (30 - 20) * ((100vw - 375px) / (1200 - 375))), 30px) !important;
	font-weight: 700;
	margin: 0;
	color: #fff;
	line-height: 1.2;
}

/* Bouton */
.fribourg-sc__btn {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 24px;
	background: #fff;
	color: #000 !important;
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none !important;
	transition: background 0.2s ease, transform 0.2s ease;
}

.fribourg-sc__btn:hover {
	background: #f0f0f0;
	transform: scale(1.03);
}

/* === RESPONSIVE === */

@media screen and (max-width: 960px) {
	.fribourg-sc__item {
		height: var(--sc-height-mobile, 250px);
	}

	.fribourg-sc__item--25,
	.fribourg-sc__item--33,
	.fribourg-sc__item--50,
	.fribourg-sc__item--66,
	.fribourg-sc__item--75 {
		width: 100%;
	}

	.fribourg-sc__overlay {
		padding: 30px 20px 20px;
	}
}
