/* Base required imports
--------------------------------------------- */
/* Bootstrap
--------------------------------------------- */
/* Import variables and mixins
--------------------------------------------- */
/* Bootsrap required imports & components
--------------------------------------------- */
.block-news .block-news-container {
	padding-bottom: 3rem;
}

.block-news .block-news-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.block-news .block-news-filter {
	border: 1px solid rgba(17, 17, 17, 0.1);
	border-radius: 4px;
	background: #fff;
	color: #21201e;
	font-family: "unbounded-400", "unbounded-fallback", Arial, sans-serif;
	font-size: 1rem;
	letter-spacing: 0.03em;
	line-height: 1;
	text-decoration: none;
	padding: 1rem 2rem;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.block-news .block-news-filter.is-active, .block-news .block-news-filter:hover, .block-news .block-news-filter:focus {
	border-color: #df9f69;
	background: #FCF7F0;
	color: #df9f69;
}

.block-news .block-news-filter.is-active {
	position: relative;
}

.block-news .block-news-filter.is-active::before {
	position: absolute;
	content: "";
	margin-left: -15px;
	width: 6px;
	height: 6px;
	background: #df9f69;
	border-radius: 100%;
	transform: translateY(-50%);
	top: 50%;
}

.block-news .block-news-card {
	border-radius: 16px;
	overflow: hidden;
	background: transparent;
}

.block-news .block-news-card-link {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
	text-decoration: none;
	color: #21201e;
}

.block-news .block-news-card-media {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #e8e8e8;
	aspect-ratio: 0.9;
}

.block-news .block-news-card-image,
.block-news .block-news-card-placeholder {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.block-news .block-news-card-placeholder {
	background: linear-gradient(160deg, #e8ebef 0%, #d7d7d7 100%);
}

.block-news .block-news-card-category {
	position: absolute;
	top: 0.65rem;
	left: 0.65rem;
	border-radius: 999px;
	font-family: "unbounded-500", "unbounded-fallback", Arial, sans-serif;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 0.85rem;
}

.block-news .block-news-card-category.block-news-card-category--cas-pratique {
	background: #df9f69;
	color: #21201e;
}

.block-news .block-news-card-category.block-news-card-category--les-fondamentaux {
	background: #21201e;
	color: #FFFFFF;
}

.block-news .block-news-card-category.block-news-card-category--lobservatoire {
	background: #FCF7F0;
	color: #21201e;
}

.block-news .block-news-card-body {
	margin-top: -3rem;
	margin-left: 1rem;
	margin-right: 1rem;
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.65rem 0.65rem 0.65rem 0.8rem;
	position: relative;
	z-index: 2;
}

.block-news .block-news-card-title {
	margin: 0;
	color: #21201e;
	font-family: "unbounded-600", "unbounded-fallback", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.4;
}

.block-news .block-news-card-arrow {
	width: 50px;
	min-width: 50px;
	height: 50px;
}

.block-news .block-news-pagination {
	margin-top: 2.2rem;
	display: flex;
	justify-content: center;
}

.block-news .block-news-pagination-list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
}

.block-news .block-news-pagination-item a,
.block-news .block-news-pagination-item span {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	border: 1px solid #FCF7F0;
	background: #FCF7F0;
	color: #21201e;
	font-family: "unbounded-300", "unbounded-fallback", Arial, sans-serif;
	font-size: 13px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.block-news .block-news-pagination-item .current {
	background: #fff;
	border-color: transparent;
	color: #df9f69;
	font-weight: 600;
}

.block-news .block-news-pagination-item a:hover,
.block-news .block-news-pagination-item a:focus {
	background: #FCF7F0;
	border-color: #df9f69;
}

.block-news .block-news-empty {
	padding: 2rem 1rem 1rem;
}

.block-news .block-news-empty-title {
	margin: 0;
	font-family: "unbounded-400", "unbounded-fallback", Arial, sans-serif;
	font-size: 24px;
	color: #21201e;
}

.block-news .block-news-empty-text {
	margin: 0.65rem 0 0;
	font-family: "unbounded-300", "unbounded-fallback", Arial, sans-serif;
	color: #505050;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.block-news .block-news-filters .block-news-filter {
		width: 48.9%;
	}
}

@media (max-width: 767.98px) {
	.block-news .block-news-filters .block-news-filter {
		width: 100%;
	}
	.block-news .block-news-card-media {
		height: 250px;
	}
}

/*# sourceMappingURL=news.css.map */