html,
body {
  padding: 0;
  margin: 0;
  height: 100vh;
  width: 100vw;
  background: var(--fond-clair);
}
#loader {
  width: 100vw;
  height: 100%;
  position: fixed;
  z-index: 1000;
  background: black;
  top: 0;
}
#loader img{
  position: fixed;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* dates de conert */
        .dates {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--fond-clair);
            margin: 0;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
        .cards-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            max-width: 1200px;
            width: 100%;
            justify-content: center;
        }
        .card {
            background: var(--fond-clair);
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            width: 100%;
            max-width: 350px;
            flex: 1 1 300px;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .card > .column:first-child {
            padding: 20px 20px 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .card > .column:nth-child(2) {
            padding: 10px 20px;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }
        
        .card > .column.without {
            display: none;
        }
        
        .subtitle {
            font-size: 14px;
            color: var(--police-page-sombre);
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .subtitle span {
            color: #a61717;
            font-size: 12px;
            margin-left: 8px;
        }
        
        .title {
            font-size: 20px;
            font-weight: 700;
            color: var(--police-page-sombre);
            line-height: 1.3;
        }
        
        .title span {
            font-size: 14px;
            font-weight: 500;
            color: #1f73ab;
            display: block;
            margin-top: 4px;
        }
        
        .text {
            font-size: 15px;
            color: #495057;
            /*! font-style: italic; */
        }
        
        .card a {
            display: inline-block;
            background: var(--fond-footer-haut);
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            margin: 0 20px 20px;
            text-align: center;
            transition: background 0.3s ease;
            width:  90%;
        }
        
        .card a:hover {
            background: var(--fond-footer-bas);
        }
        
        @media (min-width: 1024px) {
            .card {
                flex: 1 1 calc(33.333% - 24px);
                max-width: calc(33.333% - 24px);
            }
        }
        
        @media (max-width: 768px) {
            .cards-wrapper {
                flex-direction: column;
                align-items: center;
            }
            
            .card {
                max-width: 100%;
            }
        }