/* TAXONOMIES */
.article-taxonomy {
  display: flex;
  gap: 1.5rem;            /* espace entre Pays et Secteurs */
  margin: 0.75rem 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  flex-wrap: wrap;
  align-items: center;
}

.article-country,
.article-sector {
  display: flex;
  align-items: center;
  gap: 0.5rem;            /* 👈 espace icône / contenu */
}

.article-taxonomy i {
  font-size: 0.9rem;
  color: #666;
}

/* Drupal field cleanup */
.article-taxonomy .field {
  margin: 0;
}

.article-taxonomy .field__items {
  display: flex;
  gap: 0.5rem;
}

.article-taxonomy .field__item {
  display: inline;
}

.article-taxonomy a {
  background: #f2f2f2;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  color: #0056b3;
}

.article-country::before {
  content: "Pays:";
  margin-right: 0.4rem;
  color: #666;
}

.article-sector::before {
  content: "Secteurs:";
  margin-right: 0.4rem;
  color: #666;
}
/* DERNIÈRES MINUTES */
.home-breaking .node__title {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}
.home-breaking {
  padding-left: 1.25rem;
  border-left: 1px solid #e5e5e5;
}
/* ===== FULL ARTICLE IMAGE FIX ===== */

.node--type-article.node--view-mode-full
.field--name-field-image {
  float: none !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 0 1.5rem 0;
  clear: both;
}

.node--type-article.node--view-mode-full
.field--name-field-image picture,
.node--type-article.node--view-mode-full
.field--name-field-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Empêche le texte de se coller à droite */
.node--type-article.node--view-mode-full
.node__content {
  clear: both;
}

