/* The theme's .about-author/.author-icon styling is scoped only to
   ".about-wrapper .about-content" (the About page) — reusing the class name inside
   event-details-content (as the reference theme's own event-details.html markup does)
   inherits none of it, so the CTA bar rendered as unstyled stacked text/buttons.
   This reproduces the same "icon badge + label + link" layout, scoped correctly. */
.event-details-wrapper .about-author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.event-details-wrapper .about-author .author-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
.event-details-wrapper .about-author .author-icon .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
}
.event-details-wrapper .about-author .author-icon .content span {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}
.event-details-wrapper .about-author .author-icon .content h5 {
  font-weight: 600;
  margin: 0;
}
.event-details-wrapper .about-author .author-icon .content h5 a {
  color: var(--header);
}
.event-details-wrapper .about-author .author-icon .content h5 a:hover {
  color: var(--theme);
}
