/* ============================================================
   ENCART AUTEUR — Pages actu (Google News E-E-A-T)
============================================================ */
.actu-author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--vb-neutral-0, #fff);
  border: 1.5px solid var(--vb-border, #E6DFD6);
  border-left: 4px solid var(--vb-jaune-500, #D39C44);
  border-radius: var(--vb-radius-lg, 14px);
  padding: 24px 28px;
  margin: 48px 0 24px;
}
.actu-author-box .aab-photo {
  flex-shrink: 0;
}
.actu-author-box .aab-photo img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--vb-jaune-500, #D39C44);
  box-shadow: 0 0 0 4px var(--vb-jaune-100, #F6E7C7);
}
.actu-author-box .aab-info {
  min-width: 0;
}
.actu-author-box .aab-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vb-jaune-700, #8F6623);
  margin: 0 0 6px;
}
.actu-author-box .aab-name {
  font-family: var(--vb-font-serif, 'DM Serif Display', Georgia, serif);
  font-size: 20px;
  color: var(--vb-bordeaux-500, #61262A);
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.actu-author-box .aab-name a {
  color: inherit;
  text-decoration: none;
}
.actu-author-box .aab-name a:hover {
  color: var(--vb-bordeaux-700, #44181B);
}
.actu-author-box .aab-bio {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--vb-neutral-600, #5C5448);
  margin: 0 0 10px;
}
.actu-author-box .aab-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--vb-bordeaux-500, #61262A);
  text-decoration: none;
  border-bottom: 1.5px solid var(--vb-jaune-500, #D39C44);
  padding-bottom: 1px;
  transition: color 120ms cubic-bezier(.2,.7,.2,1);
}
.actu-author-box .aab-link:hover {
  color: var(--vb-bordeaux-700, #44181B);
}

/* Responsive */
@media (max-width: 600px) {
  .actu-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 20px;
  }
}
