/* Wrapper */
.acn-authors-block {
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 16px;
}
.acn-authors-heading {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  line-height: 1.2;
}

/* Desktop grid */
.acn-authors-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.acn-author-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.acn-author-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.acn-author-media {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px 8px;
}
/* Photo first, then name, then bio: already matches markup order */

/* Media (photo wrapper) */
.acn-author-media {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px 8px;
}

/* Author photo */
.acn-author-photo {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: cover;
}

/* Optional fallback if Bootstrap 5 isn't loaded */
.rounded-circle { border-radius: 50% !important; }

.acn-author-avatar {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.acn-author-body { padding: 0 16px 16px; }
.acn-author-name {
    margin: 8px 0 6px;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
}
.acn-author-name a { text-decoration: none; color: #303030;}
.acn-author-bio { margin: 0 0 12px; color: #555; font-size: .95rem; }

.acn-author-link{
    text-align: center;
}
.acn-author-btn {
  display: inline-block;
  border: 1px solid #303030;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  color: #303030;
  font-weight: 600;
}

/* Load more */
.acn-authors-more-wrap {
  text-align: center;
  margin-top: 16px;
}
.acn-authors-load {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
}
.acn-authors-load.is-loading { opacity: .7; pointer-events: none; }

/* Mobile: disable grid; Slick will take over */
@media (max-width: 767.98px) {
  .acn-authors-track { display: block; }
  .acn-author-card { margin: 0 8px; }
  .acn-authors-block .slick-dots { margin-top: 10px; position: static; }
}

/* Editor placeholder */
.acn-authors-block-editor .acn-authors-placeholder {
  border: 1px dashed #ccc;
  padding: 16px;
  border-radius: 8px;
  background: #fafafa;
}
.acn-authors-bullets { margin: .5rem 0 0; padding-left: 1.2rem; }
