/* ── FOOTER REMOVED FOR WORDPRESS COMPATIBILITY ── */

/* ── LOADING SPINNER ── */
.spinner-wrap{display:flex;justify-content:center;align-items:center;padding:4rem;grid-column:1/-1}
.spinner{
  width:40px;height:40px;border:3px solid var(--cream-d);
  border-top-color:var(--terra);border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
