@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Changa:wght@200..800&display=swap');

/* Corps global */
body {
  	font-family: "Montserrat", serif;
    margin: 0;
    padding: 0;
    background: #fff;
    /* background: linear-gradient(to right, #1e3c72, #2a5298); */
    color: #ffffff;
	overflow-x:hidden;
  }

* {
	box-sizing:border-box;
	outline:none;
	font-family: "Montserrat", serif;
}

a {
	text-decoration:none;
}
blockquote {
	margin:0;
}
/* En-tête global */
.site-header {
	z-index:10;
/*     background:linear-gradient(to bottom, #002828, #034141); */
    padding: 20px 0;
	background: #022340;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
	transition:.5s ease-in-out;
}
.logo a {
  	font-family: "Changa", serif;
	text-decoration:none;
	font-size:24px;
	text-align:left;
	font-weight:600;
	color:#fff;
}

.main-menu-wrapper {
	display:flex;
	align-items:center;
	gap:20px;
}
/* Conteneur principal */
.site-header {
	position: fixed;
	top:0;
	width: 100%;
    z-index: 9999;

}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Logo */
.site-header .logo img {
    max-height: 50px;
}
header.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 15px 0;
}

/* Menu */
.main-menu {
    display: flex;
    align-items: center;
	gap:12px;
}

.main-menu .menu {
    list-style: none;
    display: flex;
	gap: 10px;
    margin: 0;
    padding: 0;
}

.main-menu .menu li {
    margin: 0;
    display: flex;
    width: auto;
}

.main-menu .menu li a {
	display:flex;
	justify-content:center;
    color: #edf6f9;
    text-decoration: none;
    font-size: 14px;
	line-height:1;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
    font-weight: 600;
    letter-spacing: .71px;
    background: #fff;
    padding: 6px 16px;
    color: #000;
}

.main-menu .menu li a:hover {
    color: #0880bb; 
}
/* Search input Header  */
#search-form-header {
	display: flex;
	align-items: center;
	flex-direction:row;
	gap: 10px;
}

#search-form-header input {
	padding: 5px 10px;
	border: none;
}

#search-form-header button {
	background-color: #fff;
	color: #000;
	border: none;
	padding: 5px;
	cursor: pointer;
	transition:.4s ease-in-out;
	overflow:hidden;
}
#search-form-header button svg {
	display:block;
    width: 20px;
    height: 20px;
	transform:scale(1);
	transform-origin: center;
}
#search-form-header button svg,
#search-form-header button svg path{
	transition:.4s ease-in-out;

}

#search-form-header button:hover {
	background:#fff;
}

#search-form-header button:hover svg {
	transform: scale(1.2) rotate(-21deg);
}
#search-form-header button:hover svg path{
	fill:#023535;
}
/* Menu Hamburger (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

/* Hamburger menu ouvert */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Menu Mobile */

  
  /* Conteneur principal */
  .filter-container, .results-container {
    max-width: 100%;
    margin: 16px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .filter-container {
	padding-top:90px;
    background: #022340;
  }

  .filter-container h1, .results-container h2 {
    margin: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
.filter-container h1 {
	text-align:right;
	font-size:16px
}
   .results-container .results-container-intr {
   		display:flex;
	   flex-direction:row;
	   gap:20px;
	   justify-content:space-between;
	   align-items:center;
    
  }
.results-container .results-container-intr h2 {
	font-size:18px;
	color: #f9f9f9;
    padding: 9px 24px;
    font-weight: 600;
    border-radius: 0;
    background: #022340;
	margin:0;
}
span#results-count {
	display:block;
    font-size: 20px;
    font-style: italic;
    background: #215786;
    padding: 9px 24px;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
}
  /* Formulaire */
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
	  position:relative;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
	  width:100%;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
	width:100%;
	gap: 8px;
  }
  
  .form-group label {
	font-weight: bold;
    margin-bottom: 0px;
    color: #ebe4e4;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .form-group input,
  .form-group select {
	  width:100%;
    height: 100%;
    padding: 6px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    background: #f9f9f9;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 5px rgba(42, 82, 152, 0.5);
  }

.choices__inner {
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding:4px 5.75px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
/*     min-height: auto; */
    overflow: hidden;
/*     display: flex;
	align-items:center; */
}

.choices {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.choices__input {
	margin-bottom:0;
}
.choices__list--multiple .choices__item {
	text-wrap:nowrap;
	display: flex;
    justify-content: space-between;
	background-color: #154066;
}
  /* Résultats */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .grid-item {
	flex-direction:column;
	gap:18px;
	text-decoration:none;
    cursor: pointer;
    padding: 0;
    background: white;
    border: none;
    border-radius: 0;
    overflow: hidden;
/*     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); */
    transition: 0.4s ease-in-out;
  }
  
 
  .grid-item img {
	  width: 100%;
	  height: 150px;
	  object-fit: cover;
	  border-bottom: 1px solid #ddd;
	  transition: 0.4s ease-in-out;
  }
  
  .grid-item h3 {
    font-size: 23px;
    color: #000;
    margin: 0;
  }
  
  .grid-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
  }
  
	.grid-item:hover {
		transform: translateY(8px);
	/*     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
	}
	.grid-item:hover img {
    	transform:scale(1.1);
	}
	.grid-item:hover .tag.collection {
		background: #011826;
		color: #fff;
	}
  /* Boutons */
  .form-actions {
    display: flex;
    justify-content: end;
    gap: 20px;
  }
  #no-results button,
  #reset-button {
	font-family: "Montserrat", serif;
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 4px 12px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color:#e63946;
  }
  
  #reset-button:hover {
    background: #ddd;
  }
  
  #search-button {
    background: #2a5298;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #search-button:hover {
    background: #1e3c72;
  }
  /* .grid-item {
    transform-origin: center;
    transition: all 0.3s ease-in-out;
  }
  
  .filter-container,
  .results-container {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  } */
  /* Résultats */

.results-container-intr h2 span {
    color: #D2E8E3;
    text-transform: initial;
}
.grid-item {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  
  .grid-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none; 
  }
  .post-thumbnail {
	  height: 250px;
	  position:relative;
	  border-radius: 12px;
	  overflow: hidden;
	}
	.grid-item .post-thumbnail span {
		position: absolute;
		top: 8px;
		left: 8px;
		border-radius: 12px;
	}
  /* Pagination  */
  #pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }
  
  .pagination-button {
    padding: 10px 15px;
    background: #152328;
	 border:1px solid #152328;
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
	font-size: 24px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
  }
  
.pagination-button.active {
	background: #fff;
    box-shadow: 0 8px 15px #043a5b8c;
    color: #04395b;
    border: 1px solid #04395b;
  }
  
  .pagination-button:hover {
	background: linear-gradient(to top, #152328, #172026);
    box-shadow: 0 8px 15px #1523288c;
    color: #D2E8E3;
  }
  
/* No results    */

#no-results p {
    font-size: 18px;
    color: #555;
  }
	#no-results button {
		border-color: #A60D29;
	}

  #no-results button:hover {
    background: #A60D29;
    color: #ffffff;
  }
  

  /* Animation pour l'apparition */
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Style des blocs avec animation */
  .grid-item {
    display: none; /* Les blocs sont masqués par défaut */
    animation: fadeIn 0.5s ease-in-out;
  }
  
  /* Style pour le layout masonry */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Layout responsive */
    grid-gap: 20px;
  }
  
  /* Style général des tags */
.filter-links .tag,
.grid-item .tag {
    display: flex;
    padding: 6px 10px;
	border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    color: #fff;
    position: relative;
    cursor: context-menu;
    transition: all 0.3s ease-in-out;

}
.filter-links .tag.medium,  
.grid-item .tag.medium {
    background-color: #1B72BF; 
}
.filter-links .tag.industry,  
.grid-item .tag.industry {
    background-color: #043c5e; 
}
.filter-links .tag.collection,  
.grid-item .tag.collection {
	background-color: #ffffff;
    color: #011826;
}

.single article .filter-links .tag.collection,  
.single article .grid-item .tag.collection {
	background-color: #011826;
    color: #ffffff;
}
.filter-links .tag.agency,  
.grid-item .tag.agency {
    background-color: #2e719bde; 
}
.post-title-wrapper .adv-agency .filter-links a {
	color:#fff;
}
  /* Ajouter un peu d'espace entre les catégories */
  .categ-sect {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
 	.filter-links .tag:hover,
  .grid-item .tag:hover {
    background-color: #fff;
    color: #022340;
    border: 1px solid #022340;
  }
	body.single .filter-links .tag {
		cursor:pointer
	}
	body.single .filter-links .tag:hover {
		
	}
  

/* Featured Posts Section  */

/* Conteneur principal des Featured Posts */
.featured-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #043c5e, #022340);
    border-radius: 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    color: #333;
	display: flex;
    flex-direction: column;
    gap: 36px;
}

.featured-container h2 {
    margin: 0;
    text-align: center;
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
}

/* Grille des Featured Posts */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 colonnes en desktop */
    gap: 20px;
}

/* Style des articles Featured */
.featured-item {
	height:100%;
     display: flex;
    text-decoration: none;
    color: inherit;
    padding: 0;
    background: white;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    flex-direction: column;
    gap: 12px;
    align-items: self-start;
}


.featured-item a {
	width:100%;
}

.featured-item .post-thumbnail {
	overflow:hidden;
    height: 200px;
    width: 100%;
	border-radius:12px 12px 0 0;
	transition: all 0.3s ease;
}


.featured-item .post-thumbnail img {
    width: 100%;
    height: 100%;
	border-radius:0;
    object-fit: cover;
	outline: none;
    border: none;
	transition: all 0.56s cubic-bezier(0.39, 0.22, 1, 1);
}

.featured-item .featured-item-info {
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-item h3 {
     font-size: 22px;
    color: #033859;
    margin: 0;
    text-transform: initial;
    text-align: left;
    letter-spacing: -.81px;
	transition: all 0.4s ease;
}

.featured-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
	text-align:left;
}
.featured-item:hover {
    transform: translateY(-8px);    
}

.featured-item:hover .post-thumbnail img {
	transform:scale(1.13);
	filter: grayscale(.551);
}
.featured-item:hover h3 {
	color: #50575e;
	padding-left: 8px;
	font-size: 23px;
	letter-spacing:1px;
}
/* Single Post  */

/* Conteneur principal */
.single-post-container {
    max-width: 90%;
    margin: 40px auto;
	margin-top:90px;
    padding: 20px;
	padding-top:36px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}
.single-post-container article {
	display:flex;
	gap:20px;
	flex-direction:column;
}
.single-post-container article .post-thumbnail {
    width: 100%;
    height: 500px;
}
.post-thumbnail img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin-bottom: 0;
    object-fit: cover;
}

/* Titre */
.post-title {
    font-size: 2rem;
    color: #034141;
    margin-bottom: 10px;
}

/* Meta des articles */
.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.post-meta span {
    margin-right: 15px;
}

/* Contenu */
.post-header {
	display:flex;
	flex-direction:column;
	gap:16px;
	
}
.post-title-wrapper h1.post-title {
	margin:0;
	text-align:left;
}
.post-title-wrapper {
	display:flex;
	flex-direction:column;
    gap: 16px;
    align-items: self-start;
    width: 100%
}
.post-title-wrapper .adv-agency {
    display:flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.post-title-wrapper .adv-agency strong {
    color:#054b6e;
    font-weight: bold;
}
.post-title-wrapper .adv-agency a {
    font-size: 18px;
    text-decoration: none;
    color: #182625;
    font-weight: bold;
    text-wrap: nowrap;
    transition: all 0.4s ease-in-out;
}
.post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #002929;
	margin-bottom: 40px;
}
.post-content p {
	color: #022340;
}
.post-content .post-content-title span {
    font-size: 16px;
    text-decoration: none;
    color:#054b6e;
    font-weight: bold;
    text-wrap: nowrap;
    transition: all 0.4s ease-in-out;
}

/* Tags */
.post-footer {
    margin-top: 30px;
}
.post-tags strong {
    font-weight: bold;
    color: #2a5298;
}
.post-tags a {
    background: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 0;
    margin-right: 5px;
    text-decoration: none;
    font-size: 0.9rem;
}
.post-tags a:hover {
    background: #0056b3;
}
.post-navigation {
    display: flex;
    justify-content: space-between;
}

.post-navigation .next-post, .post-navigation .prev-post {
	display:flex;
	align-items: center;
    color: #fff;
	transition: all 0.4s ease-in-out;

}
.post-navigation a {
	color: #fff;
	border-radius: 0;
    text-decoration: none;
    font-weight: bold;
	background: linear-gradient(to left, #0d82e8, #022340);
    padding: 10px 17px;
    text-transform: uppercase;
	border-color:transparent;
	overflow:hidden;
	position:relative;
	z-index:1;
    transition: all 0.5s ease-in-out;

}
.post-navigation a::after {
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:-1;
	background: linear-gradient(to left, #012a2a, #022340);
	transition: all 0.4s ease-in-out;
}
.post-navigation a:hover {
	color: #fff;
	transform:scale(1.1);
}
.post-navigation a:hover::after {
	left:100%;
}
.post-filters {
    margin: 0;
    padding: 10px 20px;
    background: transparent;
    border: .5px solid #1e595954;
    border-radius: 0;
}

.post-filters .filters-list {
    list-style: none;
    margin: 0;
    padding: 0;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap:12px;
}

.post-filters .filters-list li {
    font-size: 1rem;
    color: #333;
    display: flex;
    gap: 10px;
    align-items: center;
	
}

.post-filters .filters-list strong {
    color:#054b6e;
    font-weight: bold;
}

.filters-list a {
	font-size:18px;
    text-decoration: none;
    color:#07a9aa;
    font-weight: bold;
	text-wrap:nowrap;
    transition: all 0.4s ease-in-out;
}
.filter-links {
    display: flex;
    gap: 10px;
    align-items: center;
	flex-wrap: wrap;
}
.filter-name {
    display: flex;
    align-self: center;
}
/* Related posts  */

/* Conteneur principal des articles liés */
.related-posts-container {
	margin: 0px auto;
    width: 100%;
    padding: 70px;
    background: #022340;
    border-radius: 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
	display: flex;
    flex-direction: column;
    gap: 36px;
}

.related-posts-container h2 {
    margin: 0;
    text-align: center;
    font-size: 36px;
	text-transform:uppercase;
    color: #ffffff;
}

.related-posts-container .featured-item a {
	width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: self-start;
}

/* Grille des articles */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Style des articles */
.related-post-item {
    text-align: center;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-post-item a {
	text-decoration:none;
}

.related-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Image */
.related-post-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Titre */
.related-post-item h3 {
    font-size: 1.2rem;
    color: #007bff;
    margin: 10px 0;
}

/*  FORM Contact  */

.acf-form-submit {
	display:flex;
	align-content:center;
	justify-content:center;
}
.acf-form {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0;
}

.acf-form input[type="text"],
.acf-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}
.acf-form-submit input,
.acf-form input[type="submit"] {
    background-color:#186b6b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
	font-size: 20px;
    font-weight: 600;
	width: auto;
	transition:.5s ease-in-out;
}
.acf-form-submit input:hover,
.acf-form input[type="submit"]:hover {
    background-color: #186b6b;
	color: #fff;

}


.select2-dropdown .select2-results__option {
	background:#000;
	color:#fff;
}
.contact-form-container p, 
.acf-field .acf-label label,
.select2-container.-acf .select2-selection--multiple .select2-selection__choice {
	color:#000;
}
input[type="file"] {
	color: #000;
    font-size: 16px;
    font-style: italic;
}
.contact-form-container {
	max-width: 80%;
	margin: 120px auto 60px;
	padding:0 25px;
}
.contact-form-container h1 {
	text-align: center;
    color: #fff;
    background: #0B2B40;
    text-transform: uppercase;
    letter-spacing: -1.7px;
    padding: 12px;
}


footer {
    padding: 5px 20px;
    background:#022340;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .site-info {
	font-family: "Changa", serif;
	font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}


  /* Thank you page  */
  .thank_you .thank-you-container {
    display: flex;
    padding: 0 25px;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100vh;
  }
  
  .thank_you .content {
	display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 90%;
    background-color: #0A3148;
    padding: 120px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 750px;
	}
  .thank_you .content  .text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;  
    }
  .thank_you .text-section h1 {
    font-size: 46px;
    color: #fff;
    margin: 0;
  }
  
   .thank_you .text-section p {
		margin: 0;
	   color: #d0c7c7;
		font-size: 20px;
  	}

  
    .thank_you .text-section .share {
		margin-top: 20px;
		font-size: 1em;
		color: #888;
	  }
	.thank_you .text-section-title span {
		display:block;
		font-family: "Changa", serif;
		text-decoration: none;
		font-size: 32px;
		text-align: center;
		font-weight: 600;
		color: #fff;
	}

/* Responsive */
@media screen and (max-width: 1024px) {
	.post-filters .filters-list li {
		flex-direction: column;
		align-items: self-start;
	}
	.filter-name {
		align-self: self-start;
	}
	.post-title-wrapper .adv-agency .filter-name {
		align-self: center;
	}
}

@media screen and (max-width: 992px) {
	.post-filters .filters-list {
        grid-template-columns: initial;
    }
}
@media screen and (max-width: 768px) {
	site-header {
		height:80px;
	}	

	.filter-container, .results-container {
		width:100%;
		max-width: 100%;
		padding-top: 100px;
	}
    .menu-toggle {
        display: flex;
    }
    .main-menu {
        display: flex;
    }
	
	.main-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 75%;
		height: 100vh;
		background:linear-gradient(to bottom, #0e1010, #086565);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: all 0.4s ease-in-out;
	}

	.main-menu.active {
		right: 0;
		width:100%;
	}

	.main-menu .menu {
		flex-direction: column;
		text-align: center;
		gap: 26px;
	}

	.main-menu .menu li {
		display: flex;
		gap:20px;
        width: 100%;
	}

	.main-menu .menu li a {
		font-size: 18px;
		width: 100%;
	}
	.related-posts-grid {
        grid-template-columns: 1fr;
    }
	.featured-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }

    .featured-item img {
        height: 100%; 
    }
	 .form-row {
      grid-template-columns: 1fr;
    }
	body.single .post-filters .filters-list {
        grid-template-columns: initial;
    }
	.single-post-container {
		max-width: 100%;
		margin: 80px auto;
		padding: 30px 20px;
	}
	.related-posts-container {
		margin: 0;
		width: 100%;
		padding: 60px 20px;
		border-radius: 0;
	}
	.main-menu-wrapper {
		position:absolute;
	}
	.contact-form-container {
		max-width: 100%;
		padding:0 15px;
	}
	.post-filters .filter-links {
		justify-content:flex-end;
	}
	.post-filters .filters-list li {
		justify-content:space-between;
	}
}

@media screen and (max-width: 468px) {
    body.single .post-filters .filters-list {
        grid-template-columns: initial;
    }
	.post-filters .filters-list li {
		flex-direction:column;
		align-items: self-start;
	}
	.post-filters .filters-list li .filter-name {
		align-self: self-start;
	}
	.single-post-container article .post-thumbnail {
		width: 100%;
		height: 300px;
	}
	.post-title {
		font-size: 30px;
	}
	.post-filters .filters-list strong {
		font-size:13px;
	}
	.filters-list a {
		font-size: 16px;
	}
	.post-navigation a {
		padding: 12px 16px;
		border-radius: 0;
		font-size: 14px;
		
	}
	.results-container .results-container-intr {
		flex-direction:column;
		align-items: self-start;
	}
	span#results-count {
		font-size: 16px;
		padding: 6px 16px;
	}
	.results-container {
		padding-top:40px;
	}
	.post-filters .filter-links {
		justify-content: start;
	}
	.post-filters {
		margin: 0;
		background: transparent;
		border-radius: 0;
		border:0;
		padding:0;
	}

}

/* Additionnals  */

* .toHide {
	display:none !important;
	transition:.5s ease-in-out !important;
}

.autocomplete-suggestions {
    position: absolute;
    border: 1px solid #ddd;
    background-color: #fff;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.autocomplete-suggestions li {
    padding: 10px;
    cursor: pointer;
}

.autocomplete-suggestions li:hover {
    background-color: #f0f0f0;
}

.autocomplete-suggestions .no-results {
    color: #666;
    text-align: center;
}
