/* @keyframes */
@keyframes fadein {
    from {opacity:0;}
    to {opacity:1;}
}
@-moz-keyframes fadein { /* Firefox */
    from {opacity:0;}
    to {opacity:1;}
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {opacity:0;}
    to {opacity:1;}
}
@-o-keyframes fadein { /* Opera */
    from {opacity:0;}
    to {opacity: 1;}
}
@keyframes blink {
    0% {opacity: 1;} 50% {opacity: 0;} 100% {opacity: 1;}
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================
   LAYOUT
   ================================ */

  body {
  -webkit-font-smoothing: antialiased;
  font-family: myriad-pro, sans-serif;
  font-weight: 400;
  background-color: #F8F8F8;
  color: #25292B;
}

  ul {
    margin:0;
    padding:0;
    list-style:none;
}
ul, ol, dl {position:relative;}



/* ================================
   COLORS
   ================================ */

.black {color: #25292B;}
.bgblack {background-color: #25292B;}
.white {color: #FFFFFF;}
.bgwhite {background-color: #FFFFFF;}
.green {color: #42EA61;}
.bggreen {background-color: #42EA61;}
.blue {color: #3DC8E8;}
.bgblue {background-color: #3DC8E8;}
.pink {color:#FF0077;}
.bgpink {background-color:#FF0077;}
.red {color:#ff3c3c;}
.bgred {background-color:#ff3c3c;}
.orange {color: #FF9739;}
.bgorange {background-color: #FF9739;}
.grey {color: #F8F8F8;}
.bggrey {background-color: #F8F8F8;}
.bggreydark {background-color: #eeeeee;}
.off {color:#BDBEBF;}
.grayscale {filter: grayscale(90%);}


/* ================================
   ANIMATION
   ================================ */
  
.blink {
  animation: blink 1s infinite;
}

.zoom {
  transition: transform .2s;
}

.zoom:hover {
  transform: scale(1.05);
}


/* ================================
   BLOC
   ================================ */

.bloc {
  padding: 10px;
}
@media (min-width: 768px) {
  .bloc {
    padding: 40px;
  }
}

/* ================================
   DISPLAY
   ================================ */

.db {display:block;} /* TO DELETE SOON > HTML : d-block */
.di {display:inline;}
.dib {display:inline-block;}
.up {text-transform: uppercase;} /* TO DELETE SOON > HTML : text-uppercase */

/* BORDER */
.bd {border: 1px solid #eeeeee;}
.bt-dotted {border-top: 2px dotted #eeeeee;}
.bb-dotted {border-bottom: 2px dotted #eeeeee;}


/* ================================
   VIDEO PLAYER
   ================================ */

.vid {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 0;
}
.vid iframe, .vid object, .vid embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vid-vertical {
  position: relative;
  width: 100%;
  padding-bottom: 133.33%; /* 3:4 */
  overflow: hidden;
  border-radius: 12px;
}
.vid-vertical iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%; /* clé pour crop vertical */
  height: 100%;
  transform: translate(-50%, -50%);
}
.ad-video {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin: 0 auto 40px;
  display: block;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .ad-video {
    max-width: 420px;
  }
}
.ad-mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .ad-mobile-only {
    display: block;
  }
}

/* ================================
   BUTTONS
   ================================ */

/* --- Base commune --- */
.btn-custom,
.btn-custom-outline, 
.btn-custom-cta {
  padding: 7px 18px;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: none;
}
.btn-custom i,
.btn-custom-outline i {
  transition: transform 0.2s ease;
}
.btn-custom:hover i,
.btn-custom-outline:hover i {
  transform: translateX(3px);
}

/* --- Plein rouge --- */
.btn-custom {
  color: #ffffff;
  background-color: #ff3c3c;
}
.btn-custom:hover {
  background-color: #ae1c1c;
  color: #ffffff;
  transform: translateY(-2px);
}


/* --- Variante outline (cards) --- */
.btn-custom-outline {
  background-color: transparent;
  border: 1.5px solid #eeeeee;
  color: #5c5f60;
}
.btn-custom-outline:hover {
  background-color: #25292B;
  color: #ffffff;
}

.btn-custom-cta {
  color: #ffffff;
}

.btn-custom-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
}


/* FONTS STYLE */
p, h1, h2, h3, h4, li {padding: 0px; margin: 0px;}
a {color:#ff3c3c;}
a, a:hover, a:active, a:visited, a:focus, .btn-custom:hover {text-decoration:none;}
a:active {background-color: transparent !important;}
a:hover {color:#ff3c3c;}


/* ================================
   FONT SIZE (UTILS)
   ================================ */

.text-xxs  { font-size: 0.625rem; }  /* 10px */
.text-xs   { font-size: 0.75rem; }   /* 12px */
.text-sm   { font-size: 0.875rem; }  /* 14px */
.text-base { font-size: 1rem; }      /* 16px */
.text-md   { font-size: 1.125rem; }  /* 18px */
.text-lg   { font-size: 1.25rem; }   /* 20px */
.text-xl   { font-size: 1.5rem; }    /* 24px */
.text-2xl  { font-size: 1.75rem; }   /* 28px */
.text-3xl  { font-size: 2rem; }      /* 32px */
.text-4xl  { font-size: 2.5rem; }    /* 40px */
.text-5xl  { font-size: 3rem; }      /* 48px */


/* FONT SIZE - TO DELETE SOON */
.fs05 {font-size: 0.50em;}
.fs06 {font-size: 0.60em;}
.fs07 {font-size: 0.70em;}
.fs08 {font-size: 0.80em;}
.fs09 {font-size: 0.90em;}
.fs10 {font-size: 1.00em;}
.fs11 {font-size: 1.10em;}
.fs12 {font-size: 1.20em;}
.fs13 {font-size: 1.30em;}
.fs14 {font-size: 1.40em;}
.fs15 {font-size: 1.50em;}
.fs16 {font-size: 1.60em;}
.fs17 {font-size: 1.70em;}
.fs18 {font-size: 1.80em;}
.fs19 {font-size: 1.90em;}
.fs20 {font-size: 2.00em;}
.fs21 {font-size: 2.10em;}
.fs22 {font-size: 2.20em;}
.fs23 {font-size: 2.30em;}
.fs24 {font-size: 2.40em;}
.fs25 {font-size: 2.50em;}
.fs30 {font-size: 3.00em;}
/* TO DELETE SOON */


/* FONT WEIGHT */
.fw400 {font-weight: 400;}
.fw600 {font-weight: 600;}


/* BOLD 600 */
.bold, .nav-lg-horizontal li, .headline h1, .agenda-id h1, .nav-lg li, .navmob, .news .date, .footer h4, .annuaire-list h3, .comparatif .title, .jobs h3, .jobs .infos li, .shorturl h3, .contact h3, .form-container-title, .thumb-elections h3, .mentionslegales h2, .mentionslegales h3
{font-weight: 600;}

/* AZO */
.azo
{font-family: azo-sans-web, sans-serif;font-weight: 700;letter-spacing: -0.03em;}

/* TOP HORIZONTAL */
.top {padding:20px 0px;}
.top-logo {height: 45px;}
.top li {display:inline-block;text-align: center;font-size: 0.625rem;}
.top li a {color:#ffffff;}
.top li a:hover {color:#ff3c3c;text-decoration: none;}

/* ================================
   NAV LG HORIZONTAL
   ================================ */

.nav-lg-horizontal {
  text-align: center;
  margin-bottom: 40px;
  background-color: #25292B;
  padding: 12px 10px;
  border-top:1px solid #676a6b;
}
.nav-lg-horizontal li {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  position: relative;
}
.nav-lg-horizontal li a {
  display: inline-block;
  padding: 4px 2px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color:#ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-lg-horizontal li a:hover {
  color:#bdbebf;
  text-decoration: none;
}
.nav-lg-horizontal .active a {
  color: #eeeeee;
}
.nav-lg-horizontal a:focus {
  outline: none;
  box-shadow: none;
}
/* NAV LG HORIZONTAL DROPDOWN */
.nav-lg-horizontal .dropdown-menu {
  margin-top: 0;
  padding: 12px 0 8px;
  border: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.nav-lg-horizontal .dropdown-menu li {
  display: block;
  margin: 0;
  border-bottom: 1px solid #eeeeee;
}
.nav-lg-horizontal .dropdown-menu li:last-child {
  border-bottom: none;
}
.nav-lg-horizontal .dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #25292B;
  text-transform: none;
}
.nav-lg-horizontal .dropdown-menu .dropdown-item {
  font-size: 15px;
}
.nav-lg-horizontal .dropdown-menu a:hover {
  background-color: #F8F8F8;
  color: #ff3c3c;
}
.nav-lg-horizontal .dropdown-menu a:focus {
  outline: none;
  box-shadow: none;
  background-color: #F8F8F8;
}
/* hover desktop */
@media (min-width: 992px) {
  .nav-lg-horizontal .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* NAV XS */
.nav-xs li {line-height: 1.80em; text-transform: uppercase;}
.nav-xs li a {color:#ffffff;;text-decoration: none;}
.nav-xs li a:hover {color:#3DC8E8;text-decoration: none;}
.nav-xs li a:focus {background-color: transparent !important;}

/* SUB NAV */
.subnav {margin-bottom: 20px;text-align: center;}
.subnav li {display:inline; margin: 0px 20px;font-size: 1.00em;}
.subnav li a {color: #25292B;}
.subnav li a:hover {color: #ff3c3c; text-decoration: none;}


/* NEWS ID */
.article-content a:not(.btn-custom) {
  text-decoration: underline;
}
.news .photo {
  margin-bottom: 30px;
  position: relative;
}
.news .date {margin-bottom: 15px;
  font-size: 0.80em;
  display: block;
} 
.news h1 {
  font-size: 3.00em;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom:10px;
  font-weight: 600;
}
.news .chapo {
  font-family: myriad-pro, sans-serif;
  font-size: 1.5rem;
  line-height: 1.30em;
  text-align: center;
  margin-bottom:15px;
}
.news .legende {
  position: absolute;
  bottom: 10px;left: 10px;background-color: rgba(0, 0, 0, 0.5);color:#ffffff;font-size: 0.80em;}
.news p,
.news li {
  font-family: richmond-text, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom:20px;
}


.news p a {color: #ff3c3c;} 
.news p a:hover {color: #ff3c3c;text-decoration: underline;}
.news ul {margin: 0px 0px 20px 20px;padding: 0px;list-style-position:outside;list-style-type: disc;}



.news h2, .news h3 {
  font-size: 1.5rem; 
  margin-bottom: 20px;
  text-align: center;
  padding: 0px 40px;
  font-weight: 600;
}
.news h4 {font-size: 1.25rem;line-height: 1.60em;
  text-align: justify;
  margin:0px 15px 10px 15px;
  font-weight: 600;
}
.news .sponsor {color:#ffffff;background-color:#ff3c3c;padding:2px 4px;margin-right: 15px;}
.news .info {margin-bottom:30px;}
.news .info p {margin:0px;padding: 0px;text-align: left;font-size: 1.00em;font-family: myriad-pro, sans-serif;}

/* Pagination */
.pagination {margin: 0px 0px 40px 0px;padding: 40px 0px 0px 0px;text-align: center;}
.pagination ul {margin: 0px;padding: 0px;}
.pagination li {display:inline; padding: 10px 15px;margin: 0px 2px 0px 2px;font-size: 0.875rem;border: 2px solid #F8F8F8;}
.pagination li a {color:#25292B;}
.pagination li a:hover {color:#ff3c3c;background-color: #ffffff;}
.pagination li .active {color:#ff3c3c;}

/* Gallery */
.masonry {-moz-column-width: 15em; -webkit-column-width: 15em; -moz-column-gap: 0.1em; -webkit-column-gap:0.1em;}
.masonry-item {display: inline-block;padding: .25rem;width:  100%;}

/* Dossiers */
.dossiers .v-center {display:table; width: 100% !important; padding: 0px; height: 400px;}
.dossiers .content {display:table-cell; vertical-align:bottom; text-align:left; animation: fadein 2s;padding: 20px;}
.dossiers .content .bloc {width: 50% !important;background-image: url('https://www.saintnazairenews.fr//images/1pxbg-blue.png')}
.dossiers .content .bloc h1 {color:#ffffff;font-size: 3.00em; padding-bottom:10px;margin-bottom:10px; border-bottom:2px dotted #ffffff ;}

.dossiers-id .v-center {display:table; width: 100% !important; padding: 0px; height: 150px;}
.dossiers-id .content {display:table-cell; vertical-align:bottom; text-align:left; animation: fadein 2s;padding: 10px;}
.dossiers-id .content .bloc {width: 70% !important;background-image: url('https://www.saintnazairenews.fr//images/bg-immo.png')}
.dossiers-id .content .bloc h1 {color:#ffffff;font-size: 2.00em; padding-bottom:10px;margin-bottom:10px; border-bottom:2px dotted #ffffff ;}

.dossiers-thumb {height:400px;position: relative;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;background-repeat: no-repeat;background-position: center; margin-bottom: 20px;}
.dossiers-thumb .infos {position: absolute;bottom: 0px;padding: 10px 20px;color: #ffffff;background-image: url('https://www.saintnazairenews.fr//images/bg-immo.png');width: 100% !important;}
.dossiers-thumb .infos h3 {color:#ffffff;}



/* Agenda ID */
.agenda-id h1 {margin-bottom: 20px;font-size: 2.30em;letter-spacing:-0,03em; 1.20em;border-bottom: 3px dotted #eeeeee;padding-bottom: 20px;}
.agenda-id p {font-size:1.25em;padding-bottom: 20px;margin-bottom: 20px;border-bottom: 3px dotted #eeeeee;}
.agenda-id .sharing {margin-bottom: 0px;}
.agenda-id .date {padding: 10px;text-align: center;background-color: #F8F8F8;text-transform: uppercase;}
.agenda-id .date .day {font-size: 1.40em;margin-bottom: 5px;}
.agenda-id .date .month {color: #ff3c3c;font-size: 0.875rem;}
.agenda-id .from {font-size: 1.125rem;font-weight: 400;margin: 10px 0px 10px 0px;padding: 0px;text-transform: uppercase;display: block;}
.agenda-id .cancelled {padding: 10px;text-align: center;background-color: #e11c1c;display: inline-block;color: #ffffff;font-size: 1.60em;margin-bottom: 20px;}
.agenda-id .cancelled .icon {margin-right: 10px;}
.agenda-id ul {margin-bottom: 10px;padding-bottom: 10px;}
.agenda-id li {font-size: 1.125rem;}
.agenda-id li a {text-decoration: underline;color: #25292B;}
.agenda-id li a:hover {color: #ff3c3c;}
.agenda-id li .icon {margin-right: 10px;}



/* Immo */
.thumb-immo {height:300px;position: relative;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;background-repeat: no-repeat;background-position: center; margin-bottom: 20px;}
.thumb-immo .infos {position: absolute;bottom: 0px;padding: 10px 20px;color: #ffffff;background-image: url('https://www.saintnazairenews.fr//images/bg-immo.png');width: 100% !important;}
.thumb-immo .infos h2 {margin-bottom: 5px;font-size: 1.70em;}
.thumb-immo .infos h3 {margin-bottom: 10px;font-size: 1.30em;}
.thumb-immo .place {margin-bottom: 0px;font-size: 1.125rem;}
.thumb-immo .place .icon {margin-right: 10px;}

/* Immo */
.immo {}
.immo .photo {height:550px;position: relative;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;background-repeat: no-repeat;background-position: center; margin-bottom: 20px;}
.immo .photo .infos {position: absolute;bottom: 0px;padding: 10px 20px;color: #ffffff;background-image: url('https://www.saintnazairenews.fr//images/bg-immo.png');width: 100% !important;}
.immo .photo .infos h1 {margin-bottom: 5px;font-size: 2.50em;}
.immo .photo .infos h2 {margin-bottom: 10px;font-size: 1.40em;}
.immo .photo .infos .place {margin-bottom: 0px;font-size: 1.125rem;}
.immo .photo .infos .place .icon {margin-right: 10px;}
.immo p {margin-bottom: 40px;font-size: 1.30em;line-height: 1.60em;}
.immo .details {margin-bottom: 10px;font-size: 1.30em;display: block;text-align: center; padding: 10px;background-color: #F8F8F8;}
.immo .svg {height: 40px; width: 40px;}
.immo .agence {padding: 10px;}
.immo .agence h3 {font-size: 1.90em; margin-bottom: 20px;padding-bottom: 10px; border-bottom: 2px dotted #d8d8d8;}
.immo .agence .logo {float: left; margin-right: 10px; width: 70px;}
.immo .agence li {font-size: 1.20em;}
.immo .button li a {background-color: #FF9739;color: #ffffff;font-size: 1.20em;margin-bottom: 10px;display: block;width: 100% !important;padding: 5px 0px;text-align: center;}
.immo .button li a:hover {background-color: #25292B;color: #ffffff;}
.immo .agence h4 {display: block; text-align: center; font-size: 0.875rem;}


/* Sharing */
.sharing {padding-bottom: 20px;text-align: center;}

/* Jobs */
.jobs li {line-height: 1.50em;}
.jobs p, .jobs li {font-size: 1.125rem;}

/* Publicite */
.pub h1 {font-size: 3.50em; line-height: 1.00em;margin-bottom: 30px;letter-spacing: -0.03em}
.pub p {font-size:1.60em; line-height: 1.30em;}
.pub-packs {margin-bottom:40px; background-color: #FFFFFF;} 
.pub-packs .title {font-size: 1.30em;display:block;padding: 10px;border-bottom: 1px solid #eeeeee;} 
.pub-packs .tarifs {font-size: 2.00em;display:block;padding-top: 10px;}
.logo-slider {overflow: hidden;position: relative;width: 100%;}
.logo-track {display: flex;width: calc(250px * 10); /* largeur logo × nombre total */animation: scroll 30s linear infinite;}
.logo-track img {width: 100px;height: auto;margin: 0 25px;object-fit: contain;filter: grayscale(0%);transition: 0.3s;}
.logo-track img:hover {filter: grayscale(0%);transform: scale(1.05);}

/* FAQ accordion : fond gris quand l'item est ouvert (au clic) */
#accordionFlushExample .accordion-button:not(.collapsed){background-color: #F8F8F8 !important; /* gris */color: inherit;box-shadow: none !important;}

/* Form */
.form-label {font-size: 0.875rem;margin-bottom: 5px;}
.form-control {border: 1px solid #dedcdc;border-radius: 0px;margin-bottom: 10px;padding: 10px 10px;}
input[type="checkbox"].form-control {width: auto;height: auto;padding: 0;box-shadow: none;}
input[type="checkbox"] {accent-color: #e30613;margin-right: 8px;}
label:has(input[type="checkbox"]) {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
}
.help-block {font-size: 0.70em;margin-bottom: 10px;}
.btn-search {border: 1px solid #dedcdc;padding: 10px 10px;}

/* Contact Form Quizz */
.quizz p {margin-bottom: 10px;font-size: 1.125rem;}

/* ITV Week-end */
.itv-we {margin-bottom: 80px;}
.itv-we h3 {margin-bottom: 20px;font-size: 1.90em;padding-top: 20px;border-top: 4px dotted #eeeeee;}
.itv-we p {font-size: 1.20em;padding-bottom: 20px; border-bottom: 4px dotted #eeeeee;}

/* Search */
.search-results {margin-bottom: 20px;padding-bottom: 20px;border-bottom: 1px solid #dedcdc;}
.search-results h3 {margin: 0px 0px 5px 0px;padding: 0px;font-size: 1.80em;line-height: 1.00em;letter-spacing: -0.01em;color: #25292B;}
.search-results h4 {margin: 0px;padding: 0px;font-size: 1.125rem;font-weight: 400;line-height: 1.00em;letter-spacing: -0.01em;color: #25292B;}
.form-search {margin-bottom: 20px;}
.formfield-search {border: 1px solid #dedcdc;border-radius: 0px;padding: 20px;font-size: 1.125rem;}
.btn-search {border: 1px solid #dedcdc;border-radius: 0px;padding: 10px;}

/* Footer */
.footer {padding: 40px 0px 20px 0px;background-color: #25292B;}
.footer .logo {margin-bottom: 40px;}
.footer h4 {margin-bottom: 10px; color: #7c7f80;font-size: 0.875rem;text-transform: uppercase;}
.footer li {font-size: 0.875rem;line-height: 1.90em;}
.footer li a {color: #FFFFFF;}
.footer li a .icon {margin-right: 5px;color: #3DC8E8;}
.copyright {text-align: center;}
.copyright p {font-size: 0.80em;color: #ffffff;}
.copyright a {color: #ffffff;}
.rs li {display:inline;margin-left: 10px;margin-right: 10px;}
.rs li a {color: #FFFFFF;}
.rs li a:hover {color: #3DC8E8;}
.web {padding:30px;text-align: center}
.web p {padding:0px;margin-bottom:5px; font-size: 0.80em;text-transform: uppercase;}

/* Mentions Légales */
.mentionslegales {}
.mentionslegales h2 {font-size: 1.125rem;padding: 0px;margin-bottom:10px;text-transform: uppercase;}
.mentionslegales h3 {font-size: 1.125rem;margin-bottom: 5px}
.mentionslegales p {font-size: 1.00em;padding: 0px;margin-bottom: 20px;text-align: justify;line-height: 1.40em;}
.mentionslegales ul {margin-bottom: 20px;}
.mentionslegales li {font-size: 1.00em;padding: 0px;margin: 0px;}

/* Embed */
.fb {padding: 40px 0px 40px 0px;text-align: center;}
.fb-container {padding: 10px;background-color: #F8F8F8;}
.fb-comment {margin-bottom: 40px;border: 10px solid #F8F8F8;}
.fb-comment .title {padding: 10px;background-color: #1B77F2;display: block;color: #FFFFFF;text-transform: uppercase;}
.twitter-responsive {max-width: 100% !important;}
.photoweek {margin-bottom: 80px;}

/* Facebook Live */
.fb-live {padding: 0px;margin: 0px 0px 40px 0px;text-align: center;}
.fb-live .title {padding: 10px;background-color: #ff7133;}
.fb-live .title p {padding: 0px;margin: 0;font-size: 3.00em;color: #FFFFFF;line-height: 1.00em;}

/* Short URL */
.shorturl {margin-bottom: 20px;padding: 10px;background-color: #FFFFFF;}
.shorturl h2 {font-size: 0.80em;margin-bottom:10px; color:#ff3c3c;font-weight: 400;}
.shorturl h3 {font-size: 1.20em;margin-bottom:10px;}
.shorturl .field {width: 100%;padding: 5px;height: 70px;border: 1px dotted #25292B;background-color: #F8F8F8;margin-bottom: 10px;}

/* elections */
.thumb-elections {}
.thumb-elections h3 {font-size:1.20em;margin-bottom: 5px;}
.thumb-elections h4 {font-size:0.90em;height: 30px;}
.thumb-elections .resultats {font-size:2.00em;}

.countdown {padding: 0px; margin: 0px 0px 40px 0px;font-size: 4.00em;border-top: 10px dotted #eeeeee;border-bottom: 10px dotted #eeeeee;}


/* Campagnes */
.thumb-campagnes {margin-bottom: 40px;}
.thumb-campagnes .v-center {display:table;width: 100% !important;height: 300px;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;background-repeat: no-repeat;background-position: center;text-align: center;-moz-animation: fadein 2s; /* Firefox */-webkit-animation: fadein 2s; /* Safari and Chrome */-o-animation: fadein 2s; /* Opera */}
.thumb-campagnes .content {display:table-cell;vertical-align:middle;text-align:center;animation: fadein 2s;}

/* Campagnes ID */
.campagnes li {display: inline;margin:0px 10px;}







/* ================================
   NEW CSS STRUCTURE FROM HERE
   ================================ */



/* ================================
   HERO JOBS
   ================================ */
.hero-jobs h1 {
  font-size: 3rem;
  line-height: 0.9;
}
.hero-jobs-logo {
  width: 140px;
  height: 140px;
}
.hero-jobs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.hero-jobs li {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 10px;
}


/* ================================
   HERO
   ================================ */

.hero {
  overflow: hidden;
}
.hero h1 {
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: -0.03rem;
}
.hero p {
  font-size: 1.25rem;
  line-height: 1.4;
}
.hero-img {
  max-height: 350px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero-img {
    max-height: 300px;
  }
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 2rem;
  }
}


/* ================================
   SECTION
   ================================ */

.section-divider {
    height: 3px;
    margin-bottom: 10px;
}
.section-title {
  font-size: 1.25rem; 
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.03rem;
}
.section-title-small {
    font-size: 1.125rem;
    letter-spacing: -0.03rem;
    font-weight: 600;
}
.section-subtitle {
  font-size: 1rem; 
  line-height: 1.5;
}
.section-link {
  font-size: 0.85rem;
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.section-link:hover {
  opacity: 1;
  transform: translateX(3px);
}

/* Tablet + Desktop */
@media (min-width: 768px) {

  .section-title {
    font-size: 1.5rem; 
  }
  .section-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ================================
   SCROLL ROW
   ================================ */
@media (max-width: 768px) {
  .scroll-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .scroll-row::-webkit-scrollbar {
    display: none;
  }
  .scroll-row > [class*="col-"] {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .scroll-row--2 > [class*="col-"] {
    flex: 0 0 70%;
  }
  .scroll-row--3 > [class*="col-"] {
    flex: 0 0 60%;
  }
}
@media (min-width: 769px) {
  .events-row > div:nth-child(n+7) {
    display: none;
  }
}


/* ================================
   CARD
   ================================ */

.card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eeeeee;
}


/* ================================
   CARD AGENDA
   ================================ */

.card-agenda {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}
.card-agenda:hover {
  border-color: #bbb;
}

.card-agenda-date {
  background: #25292B;
  padding: 5px 10px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  border-radius: 7px 7px 0 0;
}
.card-agenda-date-day {
  font-size: 1.125rem;  /* text-md — 18px */
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.card-agenda-date-month {
  font-size: 0.75rem;   /* text-xs — 12px */
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.card-agenda-media {
  overflow: hidden;
}
.card-agenda-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}

.card-agenda-body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.card-agenda-thematique {
  font-size: 0.75rem;   /* text-xs — 12px */
  padding: 2px 7px;
  border-radius: 6px;
  background: #f5f5f5;
  color: #555;
  border: 1px solid #eeeeee;
  display: inline-block;
  width: fit-content;
}

.card-agenda-title {
  font-size: 0.875rem;  /* text-sm — 14px */
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.card-agenda-ville {
  font-size: 0.75rem;   /* text-xs — 12px */
  color: #888;
  margin: 0;
  margin-top: auto;
  padding-top: 4px;
}

@media (min-width: 768px) {
  .card-agenda-date-day {
    font-size: 1.25rem; /* text-lg — 20px */
  }
}


/* ================================
   CARD JOB
   ================================ */

.card-jobs {
  display: flex;
  flex-direction: column;
}

.card-jobs-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.card-jobs-media {
  position: relative;
}

.card-jobs-logo {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
}

.card-jobs h3 {
  margin-top: 40px;
  font-size: 1.25rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
  margin-bottom: 10px;
}
.card-jobs ul {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;     /* ???? autorise 2 lignes si besoin */
  padding-left: 0;
  margin-bottom: 15px;
}
.card-jobs li {
  list-style: none;
  background: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  font-size: 13.5px;   /* ???? sweet spot */
  line-height: 1.2;
  white-space: nowrap; /* ???? texte sur 1 seule ligne */
  flex-shrink: 0;      /* ???? empêche écrasement */
}
.card-jobs .btn {
  margin-top: auto;
  align-self: center;
}


/* ================================
   CARD CAMPAIGN
   ================================ */

.card-campaign {
  overflow: hidden;
  padding-bottom: 20px;
}
.card-campaign-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
  @media (min-width: 768px) {
    .card-campaign-img {
      height: 200px;
    }
  }
.card-campaign h3 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
  font-weight: 600;
}
  @media (min-width: 768px) {
    .card-campaign h3 {
    font-size: 20px;
    }
  }
.card-campaign p {
  font-size: 15px;
  line-height: 1.2;
  padding: 0 10px;
}



/* ================================
   CARD TARIFS
   ================================ */

.card-tarifs {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.card-tarifs-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 1rem;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.label-red   { color: #E8362A; }
.label-grey  { color: #888; }
.label-black { color: #1a1a1a; }

.card-tarifs-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eeeeee;
}
.price-amount {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
}
.price-custom {
  font-size: 1.5rem;
  font-weight: 600;
  color: #888;
}
.price-unit {
  font-size: 0.625rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.card-tarifs-duration {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eeeeee;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-tarifs-btn {
  margin-bottom: 1rem;
}

.card-tarifs-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-tarifs-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.4;
  text-align: left;
}
.card-tarifs-features li i { font-size: 14px; flex-shrink: 0; margin-top: 2px; color: #E8362A; }
.card-tarifs-features li i.bi-plus-circle { color: #1a1a1a; }


/* ================================
   JOBS
   ================================ */

.jobs h3 {
  font-size: 1.25rem;
  margin-bottom:10px;
}
.jobs p {
  margin-bottom:10px;
  text-align: justify;
}
.jobs ul {
  margin: 0px 0px 15px 20px;
  padding: 0px;
  list-style-position:outside;
  list-style-type: disc;
}



/* ================================
   BANNER CTA
   ================================ */

.banner-cta {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eeeeee;
}

.banner-cta-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-cta-body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.banner-cta-logo {
  height: 50px;
  background: #ffffff;
  padding: 3px;
}

.banner-cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03rem;
}

.banner-cta-sub {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.0;
}

@media (min-width: 768px) { 
  .banner-cta-logo {
  height: 40px;
  }
  .banner-cta-title {
  font-size: 1.5rem; 
  }
  .banner-cta-sub {
    font-size: 1.125rem; 
  }
}

@media (min-width: 992px) {
  .banner-cta-logo {
  height: 50px;
  }
  .banner-cta-title {
  font-size: 1.25rem; 
  }
  .banner-cta-sub {
    font-size: 1rem; 
  }
}

@media (min-width: 1200px) {
  .banner-cta-logo {
  height: 70px;
  }
  .banner-cta-title {
  font-size: 1.75rem; 
  }
  .banner-cta-sub {
    font-size: 1.25rem; 
  }
}

@media (min-width: 1400px) {
  .banner-cta-logo {
  height: 100px;
  }
  .banner-cta-title {
  font-size: 1.75rem; 
  }
  .banner-cta-sub {
    font-size: 1.25rem; 
  }

}

/* ================================
   HOME - TOP STORY
   ================================ */

.top-story-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.top-story {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* IMAGE */
.top-story__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* OVERLAY (robuste toutes images) */
.top-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 25%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0) 60%
  );
  z-index: 1;
}

/* CONTENU (TOUJOURS EN BAS) */
.top-story__content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  top: auto;
  transform: none;
  z-index: 2;
  color: #fff;
}

/* TITRE */
.top-story__title {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.top-story__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}


/* HOVER */
@media (hover: hover) {
  .top-story:hover .top-story__img, .card-news:hover .card-news__img {
  transform: scale(1.02);
  }
}

/* ================================
   TABLET
   ================================ */

@media (min-width: 768px) {

  .top-story__img {
    height: 360px;
  }
  .top-story__title {
    font-size: 2rem;
    line-height: 1.1;
  }
}

@media (min-width: 992px) {

  .top-story__img {
    height: 600px;
  }
  .top-story__content {
    max-width: 45%;
    left: 40px;
    bottom: 40px;
  }
  .top-story__title {
    font-size: 3.25rem;
    line-height: 0.95;
  }
  .top-story__tag {
  font-size: 0.75rem;
  }

}



/* ================================
   CARD NEWS (BASE)
   ================================ */

.card-news {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

/* IMAGE */
.card-news__img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* OVERLAY */
.card-news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 15%,
    rgba(0,0,0,0.2) 25%,
    rgba(0,0,0,0) 35%
  );
  z-index: 1;
}

/* CONTENT */
.card-news__content {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
}

/* TITLE */
.card-news__title {
  margin: 0;
  line-height: 1.2;
  font-weight: 600;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* HOVER */
@media (hover: hover) {
  .card-news:hover .card-news__img {
    transform: scale(1.03);
  }
}

/* ================================
   SIZES (mobile-first)
   ================================ */

/* Small (Breaking) */
.card-news--sm .card-news__img {
  height: 160px;
}

/* Medium */
.card-news--md .card-news__img {
  height: 200px;
}

/* Large */
.card-news--lg .card-news__img {
  height: 240px;
}

/* ================================
   TABLET
   ================================ */

@media (min-width: 768px) {

  .card-news--sm .card-news__img {
    height: 180px;
  }

  .card-news--md .card-news__img {
    height: 220px;
  }

  .card-news--lg .card-news__img {
    height: 260px;
  }
}

/* ================================
   DESKTOP
   ================================ */

@media (min-width: 992px) {

  .card-news--sm .card-news__img {
    height: 200px;
  }

  .card-news--md .card-news__img {
    height: 240px;
  }

  .card-news--lg .card-news__img {
    height: 300px;
  }
}







.besoins-section {
  padding: 2rem 1rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.besoins-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  text-align: center;
  margin-bottom: 1.5rem;
}

.besoins-grid {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.besoin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.besoin-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.besoin-ico i {
  font-size: 22px;
  color: #666;
}

.besoin-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.3;
}