.breadcrumb-container {
  margin: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb {
  font-size: 16px;
  color: #777;
}
.breadcrumb > a{color:#000000;}

.breadcrumb-buttons {
  display: flex;
  gap: 10px;
}

.icn-btn {
  height: 15px;
  margin-right: 5px;
}

.share-menu {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  gap: 10px;
}

.icn-share {
  width: 24px;
  height: 24px;
}

.article-title {
  margin-left: clamp(10px, 5vw, 50px);
  margin-bottom: 0;
  font-weight: bold;
}

.article-author {
  font-size: 14px;
  color: #c7c6c6;
  margin-left: clamp(10px, 5vw, 50px);
  margin-top: 10px;
  margin-bottom: 50px;
  font-weight: bold;
}

.article-banner {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.article-content {
  font-size: 16px;
	line-height:1.8rem;
	padding:2rem 18rem;
}

/* Responsive téléphone */
@media (max-width: 768px) {
  .breadcrumb-container {
    flex-direction: column; /* on empile breadcrumb et boutons */
    align-items: flex-start; /* aligne à gauche */
    margin: 20px; /* marge plus compacte */
  }

  .breadcrumb-buttons {
    margin-top: 10px; /* espace au-dessus des boutons */
    width: 100%; /* occupe toute la largeur */
    justify-content: flex-start; /* boutons alignés à gauche */
    flex-wrap: wrap; /* permettent un retour à la ligne si besoin */
  }
	.article-content {
  font-size: 16px;
	line-height:1.8rem;
	padding:2rem;
}
}
