/* SEO/E-E-A-T: blocco autore visibile su pagine di contenuto */
.author-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #ff9900;
  border-radius: 8px;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.45;
}
.author-block .author-photo {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #1a365d;
}
.author-block .author-photo img,
.author-block .author-photo svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.author-block .author-info {
  flex: 1 1 auto;
  min-width: 0;
}
.author-block .author-name {
  font-weight: 700;
  color: #1a365d;
  font-size: 1rem;
  display: inline-block;
  margin-right: 0.4rem;
  text-decoration: none;
}
.author-block .author-name:hover {
  text-decoration: underline;
}
.author-block .author-role {
  display: inline-block;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
}
.author-block .author-bio {
  margin: 0.2rem 0 0;
  color: #475569;
  font-size: 0.85rem;
}
.author-block .author-dates {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: #64748b;
}
.author-block .author-dates time {
  font-variant-numeric: tabular-nums;
}
@media (max-width: 575.98px) {
  .author-block {
    gap: 0.65rem;
    padding: 0.65rem 0.8rem;
  }
  .author-block .author-photo {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
  }
  .author-block .author-name {
    font-size: 0.95rem;
  }
}
