.edit-link {
	display: none;
}
.topbar {
	background-color: white;
	height: 20px;
}
#lastvideo-container {
	position: relative;
	width: 120%;
	margin: 12px 0;
	background-color: #efdad1;
	margin: 0 -2rem;
	max-width: 1200px;
	padding: 2rem 2rem 0 2rem;
}
#allvideo-container {
	position: relative;
	width: 120%;
	margin: 12px 0;
	background-color: white;
	margin: 0 -2rem;
	max-width: 1200px;
	padding: 2rem;
}
#lastvideo-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1FR);
	gap: 0 24px;
	align-content: space-around;
}
.video-item {
	text-decoration: none;
	overflow: hidden;
	margin: 0 0 36px 0;
	scale: 1;
	transition: 0.3s linear;
}
.allvideo-item {
	text-decoration: none;
	overflow: hidden;
	margin: 0 0 36px 0;
	background-color: white;
}
.video-item:hover {
	scale: 1.05;
	z-index: 999;
	transition: 0.3s linear;
}
.video-item:hover .video-thumb {
	filter: brightness(0.6);
	transition: 0.3s linear;
}
.allvideo-item:hover {
	scale: 1.1;
	border-radius: 12px;
	box-shadow: 0 0 12px rgba(0,0,0,0.25);
	z-index: 999;
}
.video-item-inner {
	display: flex;
	flex-direction: column;
	text-align: center;
}
.video-thumb {
	width: 100%;
	height: 140px;
	overflow: hidden;
	filter: brightness(1);
	transition: 0.3s linear;
}
.video-pict {
	width: 100%;
	height: 100%;
}
.video-info {
	display: flex;
	flex-direction: column;
	padding: 6px 0;
	color: #193d6a;
	font-size: 14px;
}
.allvideo-info {
	display: flex;
	flex-direction: column;
	padding: 6px 0;
	color: black;
	font-size: 14px;
}
.video-country {
	display: block;
	font-size: 12px;
	color: white;
	width: 100%;
	text-align: center;
	margin: 0 auto 12px auto;
	padding: 2px 12px;
	background-color: #193d6a;
	border-radius: 12px;
	width: fit-content;
}
.single-video .post-title {
	display: none;
}
.linkall,
.actus-seeall {
	width: fit-content;
	margin: 0 auto;
	display: block;
	text-decoration: none;
	color: #193d6a;
	font-size: 14px;
	text-align: center;
	opacity: 0.75;
	scale: 0.85;
	transition: 0.5s linear;
}
.linkall:hover,
.actus-seeall:hover {
	opacity: 1;
	scale: 1;
	transition: 0.5s linear;
}
#topost {
	display: grid;
	grid-template-columns: repeat(3, 1FR);
	gap: 2rem;
	align-items: start;
	margin-bottom: 2rem;
}
.topost-imgcol {
	width: 100%;
}
.topost-thumbnail {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	object-fit: cover;
}
.topost-noimg {
	background: #eee;
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 8px;
}
.topost-infocol {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	grid-column: 2 / 4;
}
.topost-date {
	font-size: 0.75em;
	color: #888;
}
.topost-title {
	margin: 0 0 0.5em 0;
	font-size: 1.8em;
	color: #193d6a;
}
.topost-title a {
	color: inherit;
	text-decoration: none;
}
.topost-excerpt {
	font-size: 17px;
	line-height: 1.5;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.topost-readmore {
	align-self: flex-start;
	margin-top: 0.5em;
	font-size: 1rem;
	color: #ab3a61;
	text-decoration: underline;
	transition: color 0.2s;
	text-decoration: none;
}
.topost-readmore:hover {
	color: #0e4a7a;
}
.actus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 2rem 0;
}
.actus-card-link {
	text-decoration: none;
	scale: 1;
	transition: 0.5s linear;
}
.actus-card-link:hover {
	scale: 1.05;
	transition: 0.5s linear;
}
.actus-card-link:hover .actus-card {
	background: #193d6a;
}

.actus-card {
	display: flex;
	flex-direction: column;
	background: #bab4b6;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
	min-height: 520px;
	max-height: 520px;
	justify-content: space-between;
	color: #fff;
}
.actus-card-content {
	padding: 1.5rem;
}
.actus-title {
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	margin: 0;
	height: 112px;
	line-height: 1.5rem;
}
.actus-excerpt {
	font-size: 16px;
	margin-bottom: 1em;
	text-align: center;
	line-height: 1.25rem;
	max-height: 84px;
	overflow: hidden;
}
.actus-img {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #231323;
	max-height: 264px;
}
.actus-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 1;
	transition: 0.5s linear;
}
.actus-card-link:hover .actus-img img {
	opacity: 0.65;
	transition: 0.5s linear;
}
.actus-noimg {
	width: 100%;
	height: 200px;
	background: #333;
	border-radius: 0 0 16px 16px;
}
.actus-seeall {
	display: block;
	color: #ab3a61;
	text-decoration: none;
	font-size: 14px;
	transition: color .5s;
	margin: 0 auto 50px auto;
	display: block;
}
.actus-seeall:hover {
	color: #193d6a;
}

@media (max-width: 900px) {
	.actus-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 600px) {
	.actus-grid {
		grid-template-columns: 1fr;
	}
	.actus-card-content { padding: 1.2rem 0.7rem 1rem 0.7rem; }
}

.hidden { display: none !important; }
#filter-country-form {
	margin-bottom: 48px;
}
.country-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-bottom: 1.5em;
}
.country-radio-label {
	display: inline-block;
	padding: 6px 24px;
	border: 1px solid #193d6a;
	color: #193d6a;
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	user-select: none;
	font-weight: 500;
}
.country-radio-input {
	display: none;
}
.country-radio-input:checked + .country-radio-label {
	background: #193d6a;
	color: #fff;
	border-color: #193d6a;
}

.allpost-grid {
	display: grid;
	grid-template-columns: repeat(4, 1FR);
	gap: 20px;
	grid-auto-flow: row;
}
.allpost-item {
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
}
.allpost-linkblock {
	display: block;
	width: 100%;
	aspect-ratio: 1/1;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	text-decoration: none;
}
.allpost-linkblock:hover,
.allpost-linkblock:focus {
	transform: scale(1.015);
}
.allpost-imgcol {
	display: block;
	width: 100%;
	aspect-ratio: 1/1;
	overflow: hidden;
	border-radius: 12px;
	transition: filter 0.25s;
}
.allpost-thumbnail {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
	transition: filter 0.25s;
}
.allpost-linkblock:hover img.allpost-thumbnail,
.allpost-linkblock:focus img.allpost-thumbnail {
	filter: brightness(0.65) blur(1px);
}
.allpost-overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0; top: 0;
	background: rgba(0,0,0,0.72);
	color: #fff;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2em 1em;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: opacity 0.27s cubic-bezier(.5,.2,.2,1);
	border-radius: 12px;
	pointer-events: none;
}

.allpost-overlay span {
	display: inline-block;
	transform: scale(0.7);
	opacity: 0;
	transition:
			transform 0.33s cubic-bezier(.36,1.6,.47,1.13),
			opacity 0.29s cubic-bezier(.25,.9,.51,1);
	transition-delay: 0.08s;
}
.allpost-linkblock:hover .allpost-overlay,
.allpost-linkblock:focus .allpost-overlay {
	opacity: 1;
	pointer-events: auto;
}
.allpost-linkblock:hover .allpost-overlay span,
.allpost-linkblock:focus .allpost-overlay span {
	transform: scale(1);
	opacity: 1;
}
.allpost-noimg {
	width:100%;
	aspect-ratio:16/9;
	background:#222;
	border-radius:12px;
}
#topvideo-container {
	position: relative;
	width: 120%;
	background-color: #efdad1;
	margin: 0 -2rem;
	max-width: 1200px;
	padding: 2rem 2rem 1rem 2rem;
}
.topvideo-iframe {
	display: block;
	width: fit-content;
	margin: 0 auto;
}
.topvideo-title {
	display: block;
	width: fit-content;
	text-align: center;
	color: #193d6a;
	font-size: 28px;
	text-transform: uppercase;
	margin: 0 auto 24px auto;
	padding-top: 12px;
	border-top: 1px solid #193d6a;
}
#topvideo-container iframe {
	max-width: 100%;
	width: 1200px;
	height: auto;
	aspect-ratio: 16/9;
}
.cat-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-bottom: 1.5em;
}
.cat-radio-label {
	display: inline-block;
	padding: 0.4em 1.1em;
	border: 2px solid #193d6a;
	color: #193d6a;
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.18s, color 0.18s, border-color 0.2s;
	font-weight: 500;
}
.cat-radio-input {
	display: none;
}
.cat-radio-input:checked + .cat-radio-label {
	background: #193d6a;
	color: #fff;
	border-color: #193d6a;
}
.backvideo a {
	padding: 3px 24px 6px 24px;
	background-color: white;
	color: #193d6a;
	width: fit-content;
	border-radius: 24px;
	margin: 24px auto;
	display: block;
	border: 1px solid #193d6a;
	text-decoration: none;
	font-size: 16px;
}
.backvideo a:hover {
	background-color: #193d6a;
	color: white;
}

.toptalent_title {
	display: block;
	width: fit-content;
	text-align: center;
	color: #193d6a;
	font-size: 28px;
	text-transform: uppercase;
	margin: 36px auto;
	padding-top: 12px;

}
.toptalent-container {
	display: grid;
	grid-template-columns: 30% 70%;
	gap: 24px;
	align-items: center;
	justify-items: start;
	padding: 1.5rem 2.2rem 1.5rem 1.5rem ;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.10);
	margin-bottom: 24px;
}
#toptalent-container {
	display: grid;
	grid-template-columns: 30% 70%;
	gap: 24px;
	align-items: center;
	justify-items: start;
	padding: 1.5rem 2.2rem 1.5rem 1.5rem ;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.10);
}
.talent-portrait {
	aspect-ratio: 1/1;
	overflow: hidden;
	display: block;
	width: 100%;
	max-width: 350px;
	border-radius: 100%;
	margin: 0 auto;
	background-color: #f0f0f0; /* optionnel : couleur de fond pour les bords vides */
}

.talent-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


.toptalent-name {
	font-size: 28px;
	font-weight: 700;
	color: #193d6a;
	display: block;
	line-height: 33px
}
.toptalent-action {
	font-size: 16px;
	font-weight: 300;
	color: #bab4b6;
	display: block
}
.talent-content {
	text-align: center;
}
.toptalent-content p {
	font-size: 17px;
	line-height: 20px;
	color: #193d6a;
	margin-bottom: 12px;
}
.toptalent-readmore {
	width: fit-content;
	display: block;
	text-decoration: none;
	color: #193d6a;
	font-size: 14px;
	border: 1px solid #193d6a;
	border-radius: 24px;
	padding: 6px 24px;
}
.toptalent-portrait {
	aspect-ratio: 1/1;
	overflow: hidden;
	display: block;
	width: 100%;
	max-width: 350px;
	border-radius: 100%;
	margin: 0 auto;
}
.toptalent-portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
	transition: filter 0.25s;
}
.type-talent {
	text-align: center;
}
.talent-portrait {
	aspect-ratio: 1/1;
	overflow: hidden;
	display: block;
	width: 100%;
	max-width: 350px;
	border-radius: 100%;
	margin: 0 auto;
}
.talent-action {
	display: block;
}
.talent-reseaux {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 12px auto;
	width: fit-content;
}
.talent-reseaux a {
	width: fit-content;
	display: block;
	text-decoration: none;
	color: #193d6a;
	font-size: 14px;
	border: 1px solid #193d6a;
	border-radius: 24px;
	padding: 6px 24px;
}
.talent-reseaux a:not(.talent-fb) {
	margin-left: 12px;
}
.focus-container:hover {
	box-shadow: 0 0 18px rgba(0,0,0,0.2);
	transition: box-shadow 0.55s;
}
.nav-previous .link-text,
.nav-next .link-text {
	display: none;
}
.single-video .nav-next:before {
	content: "Vidéo suivante";
}
.single-video .nav-previous:after {
	content: "Vidéo précédente";
}
.single-post .nav-next:before {
	content: "News suivante";
}
.single-post .nav-previous:after {
	content: "News précédente";
}
.single-talent .nav-next:before {
	content: "Talent suivant";
}
.single-talent .nav-previous:after {
	content: "Talent précédent";
}
.single-focus .nav-next:before {
	content: "Focus suivant";
}
.single-focus .nav-previous:after {
	content: "Focus précédent";
}
.singlevideo-container h1 {
	display: block;
	width: fit-content;
	margin: 0 auto 12px auto;
}
.singlevideo-container iframe {
	display: block;
	margin: 12px auto;
}
.single-focus .post-title {
	display: block;
	margin: 0 auto 24px auto;
	width: fit-content;
}