/* ---------- ACTUALITÉS — grille listing + "Autres actualités" ---------- */

.actualites-grid {
	list-style: none;
	padding: 0;
}

.proj {
	display: block;
	cursor: pointer;
}

.proj-link,
.proj-link:focus,
.proj-link:visited,
.proj-link h3,
.proj-link p,
.proj-link span {
	text-decoration: none !important;

}

.proj-link:hover{
	color: var(--red);
}

.proj-img {
	position: relative;
	height: 300px;
	overflow: hidden;
	background: var(--line);
	border-radius: 2px;
}

.proj-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.proj:hover .proj-img img {
	transform: scale(1.05);
}

.proj-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--red);
	color: var(--white);
	padding: 6px 12px;
	font-family: var(--font-tertiary);
	font-weight: 600;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.proj-year {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255, 255, 255, .92);
	color: var(--anthracite);
	padding: 6px 10px;
	font-family: var(--font-tertiary);
	font-weight: 600;
	font-size: 10px;
	letter-spacing: .1em;
}

.proj-content {
	padding-top: 18px;
}

.proj-meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-top: 15px;
	font-family: var(--font-tertiary);
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--body);
}

.proj-location {
	color: var(--red);
	font-weight: 600;
}

.proj h3 {
	margin-top: 10px;
	margin-bottom: 3px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -.01em;
	line-height: 1.2;
	transition: color .2s;
}

.proj:hover h3 {
	color: var(--red);
}

.proj p {
	margin-top: 8px;
	font-size: 14px;
	color: var(--body);
	line-height: 1.6;
}

.grid-foot {
	margin-top: 24px;
}

/* Aucun résultat - Actualités */
.actualites-empty .empty-title {
    font-family: var(--font-primary); /* Montserrat */
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--anthracite);
    line-height: 1.1;
}

.actualites-empty .empty-text {
    font-family: var(--font-secondary); /* Open Sans */
    font-size: var(--font-size-md); 
	color: var(--dark-grey);
}


#content-actualite .actu-nav {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 36px 40px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition: background .2s;
}

#content-actualite .actu-nav a {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 36px 40px;
	text-decoration: none;
	transition: background .1s;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--black);
}

.read-more:hover {
	color: var(--red);
	text-decoration: none;
}

.js-load-more-actualites.is-loading {
	opacity: 0.8;
	pointer-events: none;
	position: relative;
}

.js-load-more-actualites.is-loading::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 10px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
	vertical-align: middle;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
