
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}


body{
    color:#555;
     background-color: #f7f7f7;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
 
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);

}

h4 {
  font-size: clamp(1rem, 2vw, 1.5rem);
 
}
p{
    font-family: clamp(12.5px,11.2vw,14px);
}

.container_details_article {
    margin: 40px auto;
    width: 75%;
    padding: 20px 50px;

}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Titre */
.article-content h3 {
    margin-bottom: 10px;
    color: #003366;
}

/* Meta infos */
.article-meta {
    /* font-size: 0.95rem;
    color: #777; */
    margin-bottom: 20px;
}

/* Texte en colonnes style journal */
.article-text {
    column-count: 2;
    column-gap: 40px;
    column-rule: 1px solid #ddd;
    text-align: justify;
    font-size: 1rem;
}

/* Bouton retour */
.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

/* Responsivité */
@media screen and (max-width: 1399px) {
    .container_details_article {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .article-text {
        column-count: 1;
    }
    .container_details_article {
        width: 90%;
        padding: 0;
    }
}
