  /*//////////////////////////////*/
 /*  CSS "Ciel" de ChrisPics.fr  */
/*//////////////////////////////*/


  /*/////////////////////*/
 /*////// GENERAL //////*/
/*/////////////////////*/

/* COULEURS SITE

#121212 = noir bandeau menu
#1e1e1e = fond gris foncé
#ffcb2d = jaune des liens
#e5e7eb = texte blanc-gris pour l'ensemble

*/


  /*///////////////////////////////////////*/
 /*////// MENU PRINCIPAL ("Navbar") //////*/
/*///////////////////////////////////////*/

body {
  padding-top: 140px;
  background: #1e1e1e url(/design/fondciel.png) repeat-x center 260px fixed;
  overflow-x: hidden;
}

.navbar {
  background-color: #121212;
  padding: 0.8rem 1.5rem;
  min-height: 72px;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  color: #d4b56a !important;
}

.navbar-brand span {
  color: #d4b56a;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* MENU - Liens */

.navbar-nav .nav-link {
  color: #e5e7eb;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #ffcb2d; /* jaune */
}

.navbar-nav .nav-link.active {
  color: #ffcb2d;
}

/* MENU - Hover dropdown sur PC */

@media (min-width: 992px) {
.dropdown:hover .dropdown-menu {
  display: block;
 }
}

/* MENU - Logo du site - Version PC */

.logo-navbar {
  height: 80px;
  width: auto;
  margin-bottom: 4px;
}

.logo-text {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f8fafc;
  line-height: 1;
}

/* MENU - Dropdown */

.dropdown-menu {
  background-color: #121212;
  border: none;
  border-radius: 0rem;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.dropdown-item {
  color: #e5e7eb;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: transparent;
  color: #ffcb2d;
}

/* MENU - Navbar pour Mobile V1 */

@media (max-width: 991.98px){
  .navbar > .container-fluid{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  .navbar-brand{
    flex: 0 1 auto;
    min-width: 0;
    margin-right: .5rem;
  }

  .logo-navbar{
    max-height: 45px;
    width: auto;
  }

  .navbar .logo-text{
    display: block;
    margin-top: 2px;
    font-size: 0.65rem;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }

  .navbar-toggler{
    flex: 0 0 auto;
    margin-left: auto;
    padding: .2rem .45rem;
    font-size: 1.5rem;
    line-height: 1;
    border: 0;
    box-shadow: none !important;
	color: #cbb26a !important;
  }
}

/* MENU - Navbar pour Mobile V2 */

@media (max-width: 575.98px){
  .logo-navbar{
    max-height: 40px;
  }

  .navbar .logo-text{
    font-size: 0.55rem;

  }

  .navbar-toggler{
    font-size: 1.5rem;
	color: #cbb26a !important;
  }
}

/* MENU - Navbar Ouverture Mobile */

@media (max-width: 991.98px){
  .navbar{
    position: fixed;
  }

  .navbar .container-fluid{
    position: relative;
  }

  #mainNavbar{
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 360px);
    z-index: 1050;
    background: rgba(43,43,43,0.97);
    border: 1px solid rgba(203,178,106,0.25);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
    padding: .85rem 1rem;
    text-align: center;
	backdrop-filter: blur(6px);
  }

  #mainNavbar .navbar-nav{
    width: 100%;
    gap: 0;
  }

  #mainNavbar .nav-item{
    width: 100%;
  }

  #mainNavbar .nav-link{
    display: block;
    padding: .7rem .5rem;
    color: #f8f9fa;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  #mainNavbar .nav-item:last-child .nav-link{
    border-bottom: 0;
  }

  #mainNavbar .nav-link:hover,
  #mainNavbar .nav-link:focus{
    color: #CBB26A;
    background: rgba(255,255,255,0.03);
  }
}

  /*///////////////////////////////////////*/
 /*//////////// PIED DE PAGE /////////////*/
/*///////////////////////////////////////*/

.pied {
  background-color: #121212;
  color: #f8f9fa;
  text-align: center;
  padding: 1rem 1rem;
  margin-top: 3rem;
  line-height: 1.6;
}

.pied small{
  display: block;
}

.pied a {
  color: #f8f9fa;
  transition: color 0.2s ease;
  text-decoration: none;
}

.pied a:hover {
  color: #ffcb2d;
  text-decoration: underline;
}

@media (max-width: 767.98px){
  .pied{
    padding: 1rem;
    font-size: 0.9rem;
  }
}

  /*//////////////////////////////////////////*/
 /*//////////// Bandeau Réseaux /////////////*/
/*//////////////////////////////////////////*/

.cp-socials{
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}

.cp-socials-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:1.25rem;
}

.cp-socials-heading span{
  display:block;
  width:70px;
  height:1px;
  background:rgba(203,178,106,0.28);
}

.cp-socials-title{
  font-size:.92rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.6);
  white-space:nowrap;
}

.cp-socials-list{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.cp-social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:43px;
  height:43px;
  border:1px solid rgba(255,255,255,0.3);
  background:rgba(255,255,255,0.02);
  color:rgba(255,255,255,0.58);
  text-decoration:none;
  border-radius:0;
  transition:all .2s ease;
}

.cp-social-link i{
  font-size:1.22rem;
  line-height:1;
}

.cp-social-link:hover{
  color:#CBB26A;
  border-color:rgba(203,178,106,0.7);
  background:rgba(203,178,106,0.08);
  transform:translateY(-1px);
}

@media (max-width: 767.98px){
  .cp-socials{
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .cp-socials-heading{
    gap:10px;
  }

  .cp-socials-heading span{
    width:36px;
  }

  .cp-socials-title{
    font-size:.82rem;
    letter-spacing:.08em;
    text-align:center;
    white-space:normal;
  }

  .cp-social-link{
    width:42px;
    height:42px;
  }

  .cp-social-link i{
    font-size:1.08rem;
  }
}

  /*//////////////////////////////////////////////////////*/
 /*//////////////// TITRES & TYPOLOGIES /////////////////*/
/*//////////////////////////////////////////////////////*/

h1, .h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.5px;
}

h2, .h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 1.5rem;
}

h3, .h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 1rem;
}

h4, .h4 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.5px;
}

  /*///////////////////////////////////////////////*/
 /*//////////////// FIL D'ARIANE /////////////////*/
/*///////////////////////////////////////////////*/

.fil {
    color: #c8c8c8;
}

.fil a {
    color: #c8c8c8;
    text-decoration: none;
}

.fil a:hover {
    text-decoration: underline;
	color: #ffcb2d;
	transition: color 0.25s ease;
}

  /*/////////////////////////////////////////////////////*/
 /*//////////////// RETOUR A L'ACCUEIL /////////////////*/
/*/////////////////////////////////////////////////////*/

.btn-retour-accueil {
    display: inline-block;
    border: 1px solid #e5e7eb;
    color: #e5e7eb;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: 0.25s ease;
	letter-spacing: 0.3px;
	font-size: 0.95rem;
    font-weight: 600;
}

.btn-retour-accueil:hover {
    color: #ffcb2d;
	background: rgba(203,178,106,0.02);
}

  /*////////////////////////////////////////////////////*/
 /*//////////////// BOUTONS BOOTSTRAP /////////////////*/
/*////////////////////////////////////////////////////*/

.btn-primary {
  background-color: #0f172a;
  border-color: #0f172a;
}

.btn-primary:hover {
  background-color: #16223c;
  border-color: #16223c;
}

.retour-plusloin-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

  /*///////////////////////////////////////////////////////////////////////////*/
 /*//////////////// TEMPLATE CHANTIERS (chantier.php) ////////////////////////*/
/*///////////////////////////////////////////////////////////////////////////*/


/* Header chantier */

.chantier-header {
    all: unset; /* reset léger */
}

.chantier-header.mu-header {
    display: block;
}

.chantier-title {
  font-size:2.2rem;
  letter-spacing:1px;
  text-transform:uppercase;
  margin:0 0 .4rem 0;
}

.chantier-subtitle {
  color:#cbd5f5;
  margin:0;
}

.chantier-month {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

/* Miniatures */

.chantier-thumb {
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  transition:transform .15s ease;
}

.chantier-thumb:hover {
  transform:scale(1.02);
}

/* GLightbox */

.gslide-description{
  background: rgba(0, 0, 0, 0.72) !important;
  max-width: min(92vw, 880px);
  margin: 6px auto 0 !important;
  padding: 10px 14px !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
}

.gslide-title{
  color: #d4b56a !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  line-height: 1.3;
}

.gslide-desc,
.gdesc-inner{
  color: rgba(203, 178, 106, 0.82) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

@media (max-width: 767.98px){
  .gslide-description{
    width: calc(100vw - 24px);
    margin-top: 4px !important;
    padding: 8px 10px !important;
  }

  .gslide-title{
    font-size: 0.92rem !important;
    margin-bottom: 3px !important;
  }

  .gslide-desc,
  .gdesc-inner{
    font-size: 0.86rem !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 767.98px){
  /*.gslide-description{
    display: none !important;
  }*/

  .cp-bestof-mobile-panel{
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2147483647;
    display: none;
    padding: 10px 12px;
    background: rgba(0,0,0,0.82);
    border: 1px solid rgba(212,181,106,0.18);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.32);
    backdrop-filter: blur(4px);
    text-align: center;
  }

  .cp-bestof-mobile-panel.is-visible{
    display: block;
  }

  .cp-bestof-mobile-panel-title{
    color: #d4b56a;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .cp-bestof-mobile-panel-text{
    color: rgba(203,178,106,0.88);
    font-size: 0.86rem;
    line-height: 1.45;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .cp-bestof-mobile-panel-text i.bi{
    color: #d4b56a;
    margin-right: .35rem;
  }
}

.cp-search-lightbox-label{
  color: rgba(255,255,255,.62);
  font-size: .9rem;
  margin-right: .35rem;
}

.cp-search-lightbox-link{
  display: inline-block;
  color: #d4b56a !important;
  text-decoration: none !important;
  font-weight: 600;
  padding: .28rem .6rem;


  border-radius: 999px;
  transition: all .2s ease;
}

.cp-search-lightbox-link:hover{
  color: #ffcb2d !important;

  text-decoration: none !important;
}

/* Si l'arrondi est "mangé" par le parent */

a.glightbox {
  display: block;
}

a.glightbox .chantier-thumb {
  border-radius: 10px;
}

/* Optionnel : garantit un rendu net si parent a un fond */

a.glightbox {
  border-radius: 10px;
  overflow: hidden;
}

/* Grille Commune des Galeries Photos : 5 par lignes Desktop, 2 par lignes Mobile */

.cp-grille-galerie{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.cp-grille-galerie > div{
  min-width: 0;
}

.cp-grille-galerie > div > a{
  display: block;
  width: 100%;
}

.cp-grille-galerie .ciel-thumb{
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (min-width: 992px){
  .cp-grille-galerie{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

  /*////////////////////////////////////////////////////////////////*/
 /*//////////////// CHRISPICS - ACCORDÉONS ////////////////////////*/
/*////////////////////////////////////////////////////////////////*/


:root{
  --cp-ink: #d4b56a;          /* jaune */
  --cp-line: rgba(212,181,106,.22); /* lignes normales */
  --cp-line-strong: rgba(212,181,106,.38); /* lignes plus marquées */
  --cp-muted: rgba(212,181,106,.68);
}

/* ACCORDÉONS - Conteneur Catégorie */

.cp-acc{
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-color: var(--cp-ink);
  --bs-accordion-btn-color: var(--cp-ink);
  --bs-accordion-btn-focus-box-shadow: none;
  border-top: 12px solid;
  color:#d4b56a;
}

body.ciel .cp-op .cp-op {
  padding-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ACCORDÉONS - item = juste une ligne horizontale */

.cp-acc-item{
  background: transparent !important;
  border: 0 !important;
  border-bottom: 12px solid  !important; /* plus marqué */
  border-radius: 0 !important;
}

/* ACCORDÉONS - bouton header */

.cp-acc-btn{
  background: transparent !important;
  color: var(--cp-ink) !important;
  padding: 0.9rem 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.cp-acc-btn-best{
  background: transparent !important;
  color: var(--cp-ink) !important;
  padding: 0.9rem 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* ACCORDÉONS - enlève le fond/ombre Bootstrap à l'ouverture */

.cp-acc-btn:not(.collapsed)::after{
  color: var(--cp-ink) !important;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffcb2d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* ACCORDÉONS - chevron en doré, via un SVG inline */

.cp-acc-btn::after{
  filter: none !important;
  opacity: .55;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffcb2d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ACCORDÉONS - Chevron désactivé pour la ligne "Le Meilleur" */

.cp-acc-btn-best::after{
  display: none !important;
  content: none !important;
  background-image: none !important;
}

/* ACCORDÉONS - layout tête */

.cp-acc-head{
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.cp-acc-title{
  font-weight: 600;
  font-size : 2rem;
  color: #e5e7eb;
}

.cp-acc-sub{
  font-size: .85rem;
  color: var(--cp-muted);
  margin-top: 2px;
}

/* ACCORDÉONS - stats */

.cp-acc-stats{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cp-muted);
  font-size: .92rem;
  white-space: nowrap;
}

.cp-acc-stats .cp-num{
  color: var(--cp-ink);
  font-weight: 800;
  letter-spacing: .2px;
}

/* ACCORDÉONS - Formatage Mobile Titres de l'Accordéon */

@media (max-width: 767.98px){
  .cp-acc-btn-best .cp-acc-head{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .cp-acc-btn-best .cp-acc-title{
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 2rem;
    line-height: 1.2;
  }

  .cp-acc-btn-best .cp-acc-stats{
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 0;
    white-space: normal;
    text-align: right;
    justify-content: flex-end;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .cp-acc-btn-best .cp-acc-stats span{
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* ACCORDÉONS - séparateur vertical fin */

.cp-vr{
  width: 1px;
  height: 18px;
  background: var(--cp-line-strong);
  display: inline-block;
  opacity: 1;
}

/* ACCORDÉONS - body accordion (pas de fond blanc) */

.cp-acc-body{
  background: transparent !important;
  color: var(--cp-ink);
  padding: .8rem 0 1.1rem !important;
  border-top: 2px solid var(--cp-line-strong); /* petite ligne de respiration */
}

/* ACCORDÉONS - texte muted */

.cp-muted{
  color: #e5e7eb;
}

/* ACCORDÉONS - opérations : séparateur plus marqué */

.cp-op{
  padding-top: .7rem;
  border-top: 2px solid var(--cp-line-strong);
}

.cp-op:first-child{
  border-top: 0;
  padding-top: 0;
}

.cp-op-title{
  font-weight: 700;
  color: var(--cp-ink);
  margin-bottom: .55rem;
}

/* ACCORDÉONS - Lignes ciels */

.cp-list{
  display: block;
  border-top: 0px solid rgba(212,181,106,0.25);   /* ligne en haut de la liste */
}

.cp-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  padding:5px 5px;
  text-decoration:none;
  color:#e5e7eb;
  border-top:1px solid rgba(212,181,106,0.18);   /* ligne en haut */
  border-bottom:1px solid rgba(212,181,106,0.25);
  border-left:3px solid rgba(212,181,106,0.35);
  border-radius:6px;
  transition:all .18s ease;
}

/* ACCORDÉONS - éviter double ligne en haut */

.cp-row:first-child{
  border-top:none;
  border-top:1px solid rgba(212,181,106,0.25);
}

/* ACCORDÉONS - optionnel : hover discret */

.cp-row:hover{
  color:#c79726;
  border-left-color:#c79726;
  background:rgba(199,151,38,0.04);
}

/* ACCORDÉONS - bloc gauche */

.cp-left{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* ACCORDÉONS - titre chantier */

.cp-title{
  font-weight:600;
  font-size:15.5px;
}

/* ACCORDÉONS - meta inline */

.cp-meta{
  font-size:13px;
  opacity:.75;
}

/* ACCORDÉONS - bloc droite */

.cp-right{
  font-size:14px;
  white-space:nowrap;
  opacity:.85;
}

/* ACCORDÉONS - Conteneur Quartiers */

.cp-accq{
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-color: var(--cp-ink);
  --bs-accordion-btn-color: var(--cp-ink);
  --bs-accordion-btn-focus-box-shadow: none;
  border-top: 2px solid;
}

/* ACCORDÉONS - item = juste une ligne horizontale */

.cp-accq-item{
  background: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid  !important; /* plus marqué */
  border-radius: 0 !important;
}

/* ACCORDÉONS - bouton header */

.cp-accq-btn{
  background: transparent !important;
  color: #fff;
  padding: .9rem 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* ACCORDÉONS - enlève le fond/ombre Bootstrap à l'ouverture */

.cp-accq-btn:not(.collapsed){
  background: transparent !important;
  color: var(--cp-ink) !important;
  box-shadow: none !important;
}

/* ACCORDÉONS - layout tête */

.cp-accq-head{
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.cp-accq-title{
  font-weight: 650;
  font-size : 1.2rem;
  color: var(--cp-ink);
}

.cp-accq-sub{
  font-size: .85rem;
  color: var(--cp-muted);
  margin-top: 2px;
}

.cp-hauteur{
  font-size:.9em;
  font-style:italic;
  opacity:.9;
  margin-left:6px;
}

/* ACCORDÉONS - mois reportages ciel */

.cp-month{
  margin-top: 1rem;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cp-month:first-child{
  margin-top: 0.8rem;
  border-top: none;
}

.cp-month-title{
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e5e7eb;
  opacity: 0.75;
  margin-left : 10px;
}

/* ACCORDÉONS - stats alignées avec le titre */
.cp-month .cp-acc-stats{
  font-size: .85rem;
  opacity: 1;
}

  /*//////////////////////////////////////////////////////////////////*/
 /*//////////////// TEMPLATE CIEL (ciel.php) ////////////////////////*/
/*//////////////////////////////////////////////////////////////////*/

:root{
  --ciel-bg: #0b0f14;
  --ciel-panel: rgba(255,255,255,.06);
  --ciel-text: #e5e7eb;
  --ciel-muted: rgba(255,255,255,.70);
  --ciel-accent: #d4b56a; /* par défaut ton doré (modifiable) */
  --ciel-border: rgba(255,255,255,.12);
}

.ciel-page { color: var(--ciel-text); }
.ciel-page .text-muted { color: var(--ciel-muted) !important; }


/* CIEL - Bannières */

.ciel-header{
  position: relative;
  overflow: hidden;
  height: 203px;
  min-height: 203px;
  max-height: 203px;
  display: flex;
  align-items: center;
  background-position: center center !important;
  background-repeat: no-repeat;
  background-size: cover;
}

.ciel-header-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ciel-content{
  position: relative;
  z-index: 3;
  color: white;
  width: 100%;
}

.ciel-title{ 
  font-size: 42px;
  color: #CBB26A;
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
}

.ciel-subtitle{
  font-size: 18px;
  color: #CBB26A;
  margin-top: 10px;
  opacity: 0.9;
  line-height: 1.2;
}

.ciel-subtitle-lemeilleur{
  font-size: 18px;
  color: transparent;
  margin-top: 10px;
  opacity: 0.9;
  line-height: 1.2;
}

.ciel-header-slider{
  position: relative;
  height: 203px;
  min-height: 203px;
  max-height: 203px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ciel-slider{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ciel-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: block;
}

.ciel-slide.active{
  opacity: 1;
}

.ciel-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ciel-header-slider .ciel-content{
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
}

@media (max-width: 767.98px){
  .ciel-header,
  .ciel-header-slider{
    height: 203px;
    min-height: 203px;
    max-height: 203px;
  }

  .ciel-title{
    font-size: 28px;
    line-height: 1.1;
  }

  .ciel-subtitle{
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.1;
  }
  
}

/* CIEL - Date de mise à jour page */

.ciel-maj {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #e5e7eb;
}

.ciel-date {
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* CIEL -  Pages vues */

.ciel-meta-bas{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.ciel-views{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.72);
  font-size:.95rem;
}

.ciel-views i{
  color:#CBB26A;
  font-size : 1.2rem;
  line-height: 1;
}

.ciel-views-note{
  font-size: .82rem;
  color: rgba(255,255,255,.48);
}

@media (max-width: 767.98px){
  .ciel-meta-bas{
    flex-direction:column;
    align-items:center;
  }
}


/* CIEL -  Blocs */

.ciel-block-title{
  font-size: 1.55rem;
  margin: 0 0 12px 0;
  color: var(--ciel-accent);
}

.ciel-desc{
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.7;
  font-size: 1rem;
}

.ciel-desc p {
  margin: 0 0 1rem;
}

.ciel-desc br {
  line-height: 1.7;
}

.ciel-desc p:first-child::first-letter,
.ciel-desc p + p::first-letter {
  font-weight: 600;
  font-size: 1.45em;
}

.ciel-desc a {
  color: #ffcb2d;
  text-decoration: none;
}
.ciel-desc a:hover {
  color: #ffcb2d;
  text-decoration: underline;
  transition: color 0.25s ease;
}

/* CIEL -  Photos */

.ciel-thumb{
  border-radius: 10px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  transition: transform .15s ease;
}

.ciel-thumb:hover{
  transform:scale(1.02);
}

/* CIEL -  Vidéos */

.cp-video-consent{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(30,30,30,0.96);
  border: 2px solid rgba(203,178,106,0.35);
  overflow: hidden;
}

.cp-video-placeholder{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30,30,30,0.96);
  text-align: center;
}

.cp-video-placeholder-content{
  max-width: 560px;
  color: #fff;
}

.cp-video-placeholder-title{
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.cp-video-placeholder p{
  margin: 0 0 14px 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
}

.cp-video-consent-btn{
  border: 1px solid #CBB26A;
  background: transparent;
  color: #CBB26A;
  padding: 10px 16px;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.cp-video-consent-btn:hover{
  background: rgba(203,178,106,0.12);
}

.cp-video-consent iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* CIEL -  Tags */

.ciel-search-form .form-control,
.ciel-search-form .form-select{
  background:#1f1f1f;
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
}

.ciel-search-form .form-control::placeholder{
  color:rgba(255,255,255,.45);
}

.ciel-search-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}

.ciel-tag-pill{
  display:inline-flex;
  align-items:center;
  cursor:pointer;
  margin:0;
}

.ciel-tag-pill input{
  display:none;
}

.ciel-tag-pill span{
  display:inline-block;
  padding:.45rem .75rem;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:.9rem;
  transition:.2s ease;
  border:1px solid rgba(255,255,255,.08);
}

.ciel-tag-pill input:checked + span{
  background:rgba(255,203,45,.16);
  color:#ffcb2d;
  border-color:rgba(255,203,45,.35);
}

.ciel-tag-pill span:hover{
  background:rgba(255,255,255,.14);
}

.ciel-search-cat summary{
  list-style:none;
  cursor:pointer;
}

.ciel-search-cat summary::-webkit-details-marker{
  display:none;
}

.ciel-search-cat > summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.ciel-search-cat > summary::-webkit-details-marker{
  display: none;
}

.ciel-search-cat > summary::after{
  content: "\F282"; /* bi-chevron-down */
  font-family: "bootstrap-icons";
  color: #ffcb2d;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
  margin-left: 12px;
  flex: 0 0 auto;
}

.ciel-search-cat[open] > summary::after{
  transform: rotate(180deg);
}

.btn-recherche-submit {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    font-weight: 600;
    color: #1e1e1e;
    background-color: #d4b56a;
    border: 1px solid #f8fafc;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-recherche-submit:hover {
    color: #d4b56a;
    border-color: #d4b56a;
	background-color: transparent;
}

.btn-recherche-reinit {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    font-weight: 600;
    color: #b4b5b6;
    background-color: transparent;
    border: 1px solid #b4b5b6;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-recherche-reinit:hover {
    color: #d4b56a;
    border-color: #d4b56a;
	background-color: transparent;
}

/* CIEL - Résulats Recherche Ciel - Liens vers les pages */

.resultat-search{
  font-size: 0.8rem;
}

.resultat-search a {
  color: #d4b56a;
  text-decoration: none;
}
.resultat-search a:hover {
  color: #d4b56a;
  text-decoration: underline;
  transition: color 0.25s ease;
}

  /*///////////////////////////////////////*/
 /*/////////////// COOKIES ///////////////*/
/*///////////////////////////////////////*/

.cp-cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
}

.cp-cookie-box{
  max-width: 880px;
  margin: 0 auto;
  background: rgba(30,30,30,0.96);
  border: 2px solid rgba(203,178,106,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  padding: 18px 20px;
  color: #fff;
  backdrop-filter: blur(6px);
}

.cp-cookie-title{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.cp-cookie-text{
  margin: 0 0 14px 0;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
}

.cp-cookie-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.cp-cookie-btn{
  border: 1px solid #CBB26A;
  border-radius: 0;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.cp-cookie-btn-toutaccepter{
  background: #CBB26A;
  color: #111;
}

.cp-cookie-btn-toutaccepter:hover{
  background: #d8c27f;
}

.cp-cookie-btn-toutrefuser,
.cp-cookie-btn-personnaliser{
  background: transparent;
  color: #CBB26A;
}

.cp-cookie-btn-toutrefuser:hover,
.cp-cookie-btn-personnaliser:hover{
  background: rgba(203,178,106,0.12);
}

.cp-cookie-links a{
  color: #CBB26A;
  text-decoration: none;
}

.cp-cookie-links a:hover{
  text-decoration: underline;
}

@media (max-width: 767.98px){
  .cp-cookie-banner{
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cp-cookie-box{
    padding: 14px 14px;
  }

  .cp-cookie-actions{
    flex-direction: column;
  }

  .cp-cookie-btn{
    width: 100%;
  }
}

.cp-cookie-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cp-cookie-modal-box{
  width: 100%;
  max-width: 760px;
  background: rgba(30,30,30,0.96);
  border: 2px solid rgba(203,178,106,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  padding: 20px;
  color: #fff;
}

.cp-cookie-pref{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cp-cookie-pref-title{
  font-weight: 600;
  margin-bottom: 4px;
}

.cp-cookie-pref-text{
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.45;
}

.cp-cookie-switch{
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

@media (max-width: 767.98px){
  .cp-cookie-pref{
    flex-direction: column;
    align-items: flex-start;
  }
}