/* POST TAGS */
.person-tags {
  position: absolute;
  bottom: 4px;      /* distance du bas */
  left: 10px;       /* distance du bord droit */
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}

.person-tag {
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  padding: 5px 15px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  font-size: 1.3em;
}

/* PUSHS SINGLE */
.push-container {
  display: flex;
  justify-content: center;  /* centre les 3 blocs */
  align-items: stretch;
  gap: 30px;                 /* espace entre les blocs */
  margin: 60px auto;
  max-width: 1200px;         /* largeur totale */
}

.article {
  width: 350px;              /* ✅ fixe la largeur : 3 x 350 + 2 x 30 = 1110px */
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  text-decoration: none;
}

.article-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top:0!important;
}

.article-content {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article h3 {
  font-size: 2.15rem;
  margin-bottom: 10px;
  color: #d31e4c;
  font-weight:bold;
}

.article-excerpt {
  font-family: "museo-sans"!important;
  font-weight: 300!important;
  font-size: 16px!important;
  line-height: 30px!important;
  margin-bottom: 20px!important;
  color: #666666!important;
}

.read-more {
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: auto;
}

.article:hover .read-more {
  color: #005c87;
}

/**
 * Block : Sharer
 * =================================
 *
 *
 *
 */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  font-size: 12px;
  visibility: hidden;
  width: 88px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position the tooltip above the text */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%; /* Arrow will be at the bottom */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip.show .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.sharer ul li::after {
  display:none!important;
}

.sharer ul li{
  padding-left:10px!important;
}

.sharer ul{
  padding-bottom:0!important;
  margin-bottom:0!important;
}