/* Tax Law Library — page loader */
.tll-spinner {
  position: relative;
  width: 52px;
  height: 52px;
  align-self: center;
}

/* Outer ring — gold */
.tll-spinner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(201, 168, 76, 0.18);
  border-top-color: #e1a709;
  animation: tll-spin 0.85s linear infinite;
}

/* Inner ring — navy */
.tll-spinner::after {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 3px solid rgba(26, 39, 68, 0.12);
  border-bottom-color: #0c59ff;
  animation: tll-spin 0.65s linear infinite reverse;
}

@keyframes tll-spin {
  to { transform: rotate(360deg); }
}