.hub-creator-highlight {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}
.hub-creator-highlight--left {
  justify-content: flex-start;
}
.hub-creator-highlight--center {
  justify-content: center;
}
.hub-creator-highlight--right {
  justify-content: flex-end;
}
.prose-lg .hub-creator-highlight :where(p):not(:where(.not-prose, .not-prose *)),
.prose-lg .hub-creator-highlight :where(h3):not(:where(.not-prose, .not-prose *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.hub-creator-highlight__card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.hub-creator-highlight__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hub-creator-highlight__avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #0f172a;
}
.hub-creator-highlight__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hub-creator-highlight__name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
}
.hub-creator-highlight__tagline {
  margin: 0;
  color: #475569;
  text-align: center;
}
.hub-creator-highlight__bio {
  display: none;
}
.hub-creator-highlight__cta {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 0.7rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 2px solid rgba(148, 163, 184, 0.8);
  color: #0f172a;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.hub-creator-highlight__cta:hover {
  background: rgba(148, 163, 184, 0.15);
  border-color: rgba(51, 65, 85, 0.8);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .hub-creator-highlight__card {
    width: 100%;
  }
}

.dark .hub-creator-highlight__card {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(248, 250, 252, 0.08);
}
.dark .hub-creator-highlight__avatar {
  background: rgba(248, 250, 252, 0.12);
  color: #f8fafc;
}
.dark .hub-creator-highlight__name {
  color: #f8fafc;
}
.dark .hub-creator-highlight__tagline {
  color: rgba(226, 232, 240, 0.85);
}
.dark .hub-creator-highlight__cta {
  background: transparent;
  border-color: rgba(100, 116, 139, 0.85);
  color: #f8fafc;
}
.dark .hub-creator-highlight__cta:hover {
  background: rgba(100, 116, 139, 0.25);
  border-color: rgba(226, 232, 240, 0.65);
}
