body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url('Asset/Images/None.jpg');
  background-size: cover;
  background-position: center;
}

.White-page {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  padding: 30px;
  margin: 50px auto;
  width: 70%;
}

/* HEADER : TITRE + TAGS */
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.article-title {
  flex: 1;
  word-wrap: break-word;
  margin: 0;
}

/* TAGS */
.tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 40%;
}

.tag .badge {
  background-color: #007bff;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* AUTEUR */
.Presentation-Container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXTE */
.text-Container {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* GALERIE */
.gallery img {
  width: 150px;
  margin: 10px 10px 0 0;
  border-radius: 10px;
  object-fit: cover;
}

/* MAP */
.map {
  height: 400px;
  width: 100%;
  margin-top: 20px;
}
