body {
  font-size: 16px;
  font-family: 'Futura Lt BT', sans-serif;
}

h1, h2, h3 {
  font-size: 8px;
  font-family: 'Futura Md BT', sans-serif;
}

/* Container principal : grille sur les articles */
form.com-content-category__articles {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Chaque article (vérifie si c’est bien un article ou une div) */
form.com-content-category__articles > * {
    flex: 1 1 calc(33.333% - 30px);
    box-sizing: border-box;
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet hover */
form.com-content-category__articles > *:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive tablette */
@media (max-width: 1024px) {
    form.com-content-category__articles > * {
        flex: 1 1 calc(50% - 30px);
    }
}

/* Responsive mobile */
@media (max-width: 600px) {
    form.com-content-category__articles > * {
        flex: 1 1 100%;
    }
}

.footer, 
#gkFooter, 
.gk-footer {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.component, 
.main-content, 
.content {
    min-height: 400px;
.post__content {
  padding: 20px;
}


/* --- Si tu veux cibler uniquement les articles --- */
.itemBody p,
.component-content p,
.article-content p {
  line-height: 1.3 !important;

}
body {
  font-size: 16px;
  line-height: 1.7;
  color:#333;
}

.container, .main, .content {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto;
}

.container {
  background-color: rgba(255,0,0,0.1);
}

/* Conteneur pagination : centrer */
.pagination {
    text-align: center;
    margin-top: 15px;
}

/* Liens de pagination : couleur, taille et style */
.pagination li a {
    font-size: 10px;           /* taille plus petite */
    color: #333;            /* couleur uniforme */


}


img, iframe, video { max-width: 100%; height: auto; }
html, body { max-width: 100%; overflow-x: hidden; }
.container, .row, [class*="col-"] { max-width: 100%; }


/* ================================
   Harmonisation Firefox / Edge / Chrome
   ================================ */

/* Flexbox */
.gk-flex, .flex-container {
  display: -webkit-box;      /* Safari/old iOS */
  display: -ms-flexbox;      /* IE10 */
  display: -webkit-flex;     /* Chrome/Edge */
  display: flex;             /* Standard */
}

/* Grid */
.gk-grid {
  display: -ms-grid;         /* IE */
  display: grid;
}

/* Transitions & animations */
.gk-animate {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Filters (blur, brightness) */
.gk-filter {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  filter: blur(5px);
}

/* Border radius & box shadow */
.gk-card {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;

  -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Object-fit (images) */
img {
  -o-object-fit: cover;
  object-fit: cover;
}

/* Scroll smooth */
html {
  -webkit-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
  scroll-behavior: smooth;
}

/* Fix pour Edge : overflow sur flex items */
.gk-flex > * {
  min-width: 0; /* évite les débordements */
}
``
