/* Creator credit — minimal, formal, integrated into the React footer. */
.creator-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
  padding: 1.2rem 0 1.45rem;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}
.creator-credit__identity {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}
.creator-credit__mark {
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid hsl(var(--border-gold));
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: hsl(var(--gold));
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .67rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.05em;
}
.creator-credit__copy {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .3rem .55rem;
}
.creator-credit__label {
  color: hsl(var(--muted-foreground));
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.45;
  text-transform: uppercase;
}
.creator-credit__name {
  color: hsl(var(--navy));
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease;
}
.creator-credit__linkedin {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex: 0 0 auto;
  color: hsl(var(--navy));
  font-size: .76rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}
.creator-credit__arrow {
  color: hsl(var(--gold));
  font-size: .9rem;
}
@media (hover: hover) {
  .creator-credit__name:hover,
  .creator-credit__linkedin:hover { color: hsl(var(--gold)); }
}
.creator-credit a:focus-visible {
  outline: 2px solid hsl(var(--gold));
  outline-offset: 4px;
  border-radius: 3px;
}
@media (max-width: 639px) {
  .creator-credit {
    align-items: flex-start;
    flex-direction: column;
    gap: .75rem;
    padding: 1.1rem 0 1.25rem;
  }
  .creator-credit__copy {
    align-items: flex-start;
    flex-direction: column;
    gap: .15rem;
  }
  .creator-credit__linkedin { margin-left: 3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .creator-credit__name,
  .creator-credit__linkedin { transition: none !important; }
}
