/* Style général */
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3e6ec 100%);
    background-color: darkgray;
    background-size: cover;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #111 !important;
}

.title-page-container:after, .title-page-container:before {
    border-bottom: .125rem solid #ef3547;
    content: "";
    min-width: 2.6975rem;
}

.title-page-text
{
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(239,53,71,0.08);
}

.articles-stars-section {
    margin-bottom: 50px;
}

.articles-television-section {
    margin-top: 50px;
}

/* Titres : même taille que le texte, mais en gras */
h1, h2, h3, h4, h5, h6 {
    color: #111 !important;
    font-size: 1.7em !important;
    font-weight: bold !important;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

/* Liens : écriture noire, pas de soulignement */
a, a:visited, a:active {
    /*color: black !important; */
    text-decoration: none !important;
}
a:hover {
    color: #007bff !important;
    text-decoration: none !important;
}

/* Liens : écriture noire, pas de soulignement */
.articles a, a:visited, a:active {
    /*color: black !important;*/
    text-decoration: none !important;
}
.articles a:hover {
    color: #ef3547 !important;
    text-decoration: underline !important;
}

/* Header */
header {
    position: sticky; /* Reste en haut de l'écran */
    top: 0; /* Fixe l'en-tête au sommet */
    background: linear-gradient(90deg, #ef3547 0%, #104587 100%) !important;
    color: #fff !important;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 2px 16px rgba(239,53,71,0.08);
    padding: 18px 0;
    width: 100%;
    z-index: 1000; /* S'assure qu'il passe au-dessus du contenu */
    transition: background 0.3s ease; /* Effet de transition fluide */
}

header .logo {
    width: 180px;
    margin-right: 10px;
}

header .ml-3 {
    margin-left: 10px !important;
}

header a, header .navbar-nav .dropdown-item {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

header a:hover, header .navbar-nav .dropdown-item:hover {
    color: #f8f9fa !important;
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
        font-size: 1rem;
        border-radius: 0 0 10px 10px;
    }
}

/* Navbar */
.navbar {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: wrap;
}

.navbar-nav {
    flex-direction: row;
}

.nav-item {
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
    }
}

nav.navbar {
    background-color: transparent;
}

nav.navbar .navbar-nav .dropdown-item {
    color: white !important;
    text-decoration: none !important;
}

nav.navbar .navbar-nav .dropdown-item:hover {
    color: #f8f9fa !important;
    text-decoration: underline !important;
    background-color: transparent !important;
}

span.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Cartes */
.card {
    margin-bottom: 20px;
    border: none;
    border-radius: 16px !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s cubic-bezier(.4,0,.2,1), transform 0.2s cubic-bezier(.4,0,.2,1);
}

.card:hover {
    box-shadow: 0 12px 32px rgba(239,53,71,0.12), 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.02);
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.card-text {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 1em;
    margin-bottom: 10px;
}

.card-img-top {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px !important;
    margin-bottom: 10px;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.2s;
}

.card-img-top:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 24px rgba(239,53,71,0.13);
}

/* Pied de page */
footer {
    color: white !important;
    background-color: black;
}

footer a {
    color: white !important;
    text-decoration: none !important;
}

footer a:hover {
    color: #f8f9fa !important;
    text-decoration: underline !important;
}

footer h5 {
    color: white !important;
}

footer h5.border-bottom {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Consentement aux cookies */
#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #171717;
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 1040;
}

/* Boutons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.03);
}

.btn-secondary {
    background-color: #ef3547;
    border-color: #104587;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.btn-secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.03);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.btn-success:hover {
    background-color: #218838;
    border-color: #218838;
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.03);
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.03);
}

.min-btn-width {
  min-width: 170px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Images et médias */
img, video, canvas {
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
img {
    display: block;
    aspect-ratio: 16 / 9;
}

/* Espacement */
.pb-2, .py-2 {
    padding-bottom: .5rem !important;
}

/* Optimisation des transitions */
button, a {
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Dropdown */
.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #FFFFFF;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

/* === Bandeau fixé en bas de l'écran === */
.bandeau-bas {
    position: fixed; /* Fixe l'élément au bas de l'écran */
    bottom: 0; /* Aligne le bandeau tout en bas */
    left: 0;
    width: 100%; /* Prend toute la largeur */
    height: 95px; /* Hauteur du bandeau */
    background: linear-gradient(90deg, #ef3547 0%, #104587 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -2px 16px rgba(239,53,71,0.08);
    padding: 18px 15px;
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    z-index: 1050; /* S'assure qu'il passe au-dessus du contenu */
    transition: background 0.3s ease; /* Animation fluide */
}

/* Styles déplacés depuis index.html et base.html */
.section-block {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(239,53,71,0.10), 0 2px 8px rgba(0,0,0,0.06);
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ef3547;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(239,53,71,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
}
.section-title i {
    font-size: 2.2rem;
    color: #104587;
}
.articles .item {
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(239,53,71,0.06);
    transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
    margin-bottom: 1.2rem;
    padding: 1.2rem 1rem 1rem 1rem;
}
.articles .item:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(239,53,71,0.13);
    transform: translateY(-4px) scale(1.02);
}
.articles .item .visuel img {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(239,53,71,0.10);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.2s;
}
.articles .item .visuel img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 24px rgba(239,53,71,0.13);
}
.articles .item .texte h2 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #ef3547;
    margin-bottom: 6px;
    transition: color 0.2s;
}
.articles .item .texte h2 a:hover {
    color: #104587;
}
.articles .item .texte p {
    color: #333;
    font-size: 1.05rem;
}
.rubTxt {
    background: linear-gradient(90deg, #ef3547 0%, #104587 100%);
    color: #fff !important;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.98rem;
    margin-right: 0.5em;
}
.btn-secondary {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 0.6em 1.5em;
    font-size: 1.1rem;
}
.btn-secondary:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.03);
}
.pagination {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(239,53,71,0.06);
    padding: 0.7em 1em;
    margin-top: 1.5em;
}
.pagination .page-link {
    border-radius: 6px !important;
    color: #ef3547;
    font-weight: 600;
    margin: 0 0.2em;
    transition: background 0.2s, color 0.2s;
}
.pagination .page-item.active .page-link, .pagination .page-link:hover {
    background: linear-gradient(90deg, #ef3547 0%, #104587 100%);
    color: #fff !important;
    border: none;
}
.article-date {
    display: flex;
    align-items: center;
    gap: 0.4em;
    color: #888;
    font-size: 0.98rem;
    margin-top: 0.2em;
    margin-bottom: 0.7em;
    font-weight: 500;
}
.article-date i {
    color: #104587;
    font-size: 1.1em;
}
.top5-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(239,53,71,0.08);
  background: #fff;
}
.top5-card:hover {
  box-shadow: 0 8px 32px rgba(239,53,71,0.18);
  transform: translateY(-4px) scale(1.04);
  z-index: 2;
}
.top5-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(90deg,#ef3547,#104587);
  color: #fff;
  font-weight: 800;
  font-size: 1.1em;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(239,53,71,0.13);
}
.top5-title {
  font-size: 1.04rem;
  font-weight: 700;
  color: #104587;
  margin-bottom: 0.3em;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top5-views {
  font-size: 0.97em;
  color: #ef3547;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
@media (max-width: 768px) {
    .section-block {
        padding: 1.2rem 0.5rem;
        border-radius: 10px;
    }
    .section-title {
        font-size: 1.2rem;
    }
    .articles .item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        padding: 1.1rem 0.3rem 1rem 0.3rem;
    }
    .articles .item .visuel {
        width: 100%;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
    }
    .articles .item .visuel img {
        width: 90vw !important;
        max-width: 350px;
        height: 180px !important;
        object-fit: cover;
    }
    .articles .item .texte {
        margin-left: 0 !important;
        width: 100%;
    }
    .articles .item .texte h2 {
        font-size: 1.1rem;
    }
    .articles .item .texte p {
        font-size: 0.98rem;
    }
    .btn-secondary {
        font-size: 1rem;
        padding: 0.5em 1em;
    }
    .section-block.mb-4[style*="linear-gradient"] .d-flex.align-items-center {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    .section-block.mb-4[style*="linear-gradient"] img {
        width: 80vw !important;
        max-width: 320px;
        height: 160px !important;
        margin-bottom: 1em;
    }
    .section-block.mb-4[style*="linear-gradient"] .ms-4 {
        margin-left: 0 !important;
        margin-top: 0.5em;
    }
    .section-block.mb-4[style*="linear-gradient"] a[style*="font-size:1.18rem"] {
        font-size: 1.05rem !important;
    }
    .top5-card {
      min-height: 180px;
    }
    .top5-title {
      font-size: 0.98rem;
      min-height: 2.2em;
    }
    .top5-rank {
      width: 28px;
      height: 28px;
      font-size: 1em;
    }
}
.top5-img:hover {
  transform: scale(1.07);
}

/* Footer moderne */
.footer-modern {
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -2px 16px rgba(239,53,71,0.08);
    background: linear-gradient(90deg, #181818 0%, #104587 100%);
    color: #fff;
}
.footer-modern h5 {
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 1.18rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.footer-modern ul {
    padding-left: 0;
}
.footer-modern a {
    color: #f8f9fa !important;
    text-decoration: none !important;
    transition: color 0.18s, background 0.18s;
    font-weight: 500;
}
.footer-modern a:hover, .footer-link:hover {
    color: #ef3547 !important;
    text-decoration: underline !important;
}
.footer-link {
    color: #f8f9fa !important;
    margin: 0 0.3em;
    font-size: 0.98rem;
    transition: color 0.18s;
}
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #f8f9fa;
    background: rgba(239,53,71,0.08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin: 0 0.15em;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.footer-social-link:hover {
    background: #ef3547;
    color: #fff;
    box-shadow: 0 2px 8px rgba(239,53,71,0.13);
}
@media (max-width: 768px) {
    .footer-modern {
        border-radius: 10px 10px 0 0;
        padding: 2.2rem 0.5rem 1.2rem 0.5rem;
    }
    .footer-modern h5 {
        font-size: 1.05rem;
    }
    .footer-social-link {
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }
}

.footer-modern, .footer-modern *, .footer-modern h5, .footer-modern p, .footer-modern a, .footer-modern ul li, .footer-modern .footer-link {
    color: #fff !important;
}
.footer-modern ul li {
    margin-bottom: 0.5em;
}
.footer-modern .row {
    align-items: flex-start !important;
}
.footer-modern .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.footer-modern .col-md-4.text-center {
    align-items: center;
    text-align: center;
}
.footer-modern .col-md-4.text-center.text-md-end {
    align-items: flex-end;
    text-align: right;
}
@media (max-width: 768px) {
    .footer-modern .col-md-4, .footer-modern .col-md-4.text-center, .footer-modern .col-md-4.text-center.text-md-end {
        align-items: center !important;
        text-align: center !important;
    }
    .footer-modern .row {
        flex-direction: column !important;
        gap: 1.5em;
    }
}

/* MODE SOMBRE GLOBAL */
body.dark-mode {
    background: #181a1b !important;
    background-color: #181a1b !important;
    color: #e0e0e0 !important;
}
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
    color: #ffb3b3 !important;
}
body.dark-mode a, body.dark-mode a:visited, body.dark-mode a:active {
    color: #ffb3b3 !important;
}
body.dark-mode a:hover {
    color: #ef3547 !important;
}
body.dark-mode .articles a:hover {
    color: #ef3547 !important;
}
body.dark-mode .section-block,
body.dark-mode .articles .item,
body.dark-mode .pagination,
body.dark-mode .card,
body.dark-mode .footer-modern,
body.dark-mode .bg-light,
body.dark-mode .bg-light1 {
    background: #23272b !important;
    color: #e0e0e0 !important;
    box-shadow: none;
}
body.dark-mode .section-title,
body.dark-mode .top5-title {
    color: #ffb3b3 !important;
}
body.dark-mode .top5-card {
    background: #23272b !important;
}
body.dark-mode .top5-rank {
    background: linear-gradient(90deg,#104587,#ef3547);
}
body.dark-mode .btn-secondary,
body.dark-mode .btn-primary {
    background: #104587 !important;
    color: #fff !important;
    border: none;
}
body.dark-mode .btn-secondary:hover,
body.dark-mode .btn-primary:hover {
    background: #ef3547 !important;
    color: #fff !important;
}
body.dark-mode .footer-modern {
    background: #181a1b !important;
    color: #e0e0e0 !important;
}
body.dark-mode .footer-link,
body.dark-mode .text-light {
    color: #ffb3b3 !important;
}
body.dark-mode .navbar-light .navbar-nav .nav-link,
body.dark_mode .navbar-light .navbar-brand {
    color: #e0e0e0 !important;
}
body.dark-mode .modal-content {
    background: #23272b !important;
    color: #e0e0e0 !important;
}
body.dark-mode header {
    background: linear-gradient(90deg, #23272b 0%, #181a1b 100%) !important;
    color: #e0e0e0 !important;
}
body.dark-mode .dropdown-item {
    color: #e0e0e0 !important;
    background: transparent !important;
}
body.dark-mode .dropdown-item:hover, body.dark-mode .dropdown-item:focus {
    background: #181a1b !important;
    color: #ffb3b3 !important;
}
body.dark-mode .bandeau-bas {
    background: linear-gradient(90deg, #23272b 0%, #181a1b 100%) !important;
    color: #e0e0e0 !important;
}
body.dark-mode .card-text, body.dark-mode .item .texte p {
    color: #e0e0e0 !important;
}
body.dark-mode .item {
    border-bottom: 1px solid #333 !important;
    background: #23272b !important;
}
body.dark-mode .menu-modern .dropdown-item {
    color: #e0e0e0 !important;
}
body.dark-mode .menu-modern .dropdown-item:hover, body.dark-mode .menu-modern .dropdown-item:focus {
    background: #181a1b !important;
    color: #ffb3b3 !important;
}
body.dark-mode .footer-social-link {
    background: #23272b !important;
    color: #ffb3b3 !important;
}
body.dark-mode .footer-social-link:hover {
    background: #ef3547 !important;
    color: #fff !important;
}
body.dark-mode #cookieConsent {
    background: #23272b !important;
    color: #e0e0e0 !important;
}
body.dark-mode .alert {
    background: #23272b !important;
    color: #ffb3b3 !important;
    border-color: #ef3547 !important;
}
body.dark-mode input, body.dark-mode textarea, body.dark-mode select {
    background: #23272b !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
}
body.dark-mode .modal-header, body.dark-mode .modal-footer {
    background: #23272b !important;
    color: #e0e0e0 !important;
}
body.dark-mode .modal-title {
    color: #ffb3b3 !important;
}
body.dark-mode .pagination .page-link {
    background: #23272b !important;
    color: #ffb3b3 !important;
    border: 1px solid #444 !important;
}
body.dark-mode .pagination .page-item.active .page-link, body.dark-mode .pagination .page-link:hover {
    background: linear-gradient(90deg, #104587 0%, #ef3547 100%) !important;
    color: #fff !important;
    border: none;
}
body.dark-mode .form-control {
    background: #23272b !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
}
body.dark-mode .form-control:focus {
    background: #23272b !important;
    color: #fff !important;
    border-color: #ef3547 !important;
}
body.dark-mode .btn-outline-light {
    color: #ffb3b3 !important;
    border-color: #ffb3b3 !important;
}
body.dark-mode .btn-outline-light:hover {
    background: #ef3547 !important;
    color: #fff !important;
    border-color: #ef3547 !important;
}

/* Importation de la police Inter avec font-display: swap */
@font-face {
    font-family: 'Inter';
    src: url('/static/fonts/Inter.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'bootstrap-icons';
    src: url('/static/fonts/bootstrap-icons.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Layout anti décalage */
.d-flex.align-items-center.justify-content-between {
    min-height: 64px;
}
.d-flex.align-items-center.bg-light.p-2.rounded.shadow-sm.mb-2 {
    min-height: 64px;
}
.container.my-4 {
    min-height: 600px;
}
nav.mt-3.mb-4, .navbar, nav.navbar {
    min-height: 56px;
    display: block;
}
.search-header-form {
    min-height: 48px;
}
/* Anti-CLS : icônes Bootstrap fixes */
.bi {
  min-width: 1.2em;
  min-height: 1.2em;
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  vertical-align: middle;
}
/* Anti-CLS : titre principal */
.main-article-title {
  min-height: 2.5em;
  height: auto;
  display: block;
}
/* Anti-CLS : fil d'Ariane et nav */
.breadcrumb.enhanced-breadcrumb {
  min-height: 48px;
}
.breadcrumb.enhanced-breadcrumb .breadcrumb-item {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
nav.navbar, .navbar {
  min-height: 56px;
}
/* Anti-CLS : container principal */
.container.my-4 {
  min-height: 600px;
}
/* Anti-CLS : d-flex principaux */
.d-flex.align-items-center.justify-content-between,
.d-flex.align-items-center.bg-light.p-2.rounded.shadow-sm.mb-2 {
  min-height: 64px;
}
@media (max-width: 600px) {
  .mb-4 {
    min-height: 56px;
  }
  .text-muted.small.mt-1 {
    min-height: 22px;
    display: block;
  }
  .search-header-form {
    min-height: 48px;
  }
  .container.my-4 {
    min-height: 400px;
  }
  nav.mt-3.mb-4 {
    min-height: 48px;
  }
}