/* ==================================================
   FOOTER
================================================== */

.site-footer {
  padding-block: 1.25rem;

  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.site-footer__inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 1rem;
}

.site-footer__copyright,
.site-footer__credit {
  margin: 0;

  color: #64748b;

  font-size: 0.75rem;
  line-height: 1.5;
}

.site-footer__credit {
  text-align: right;
}

.site-footer__credit span {
  display: inline-block;

  margin-inline: 0.15rem;
}

/* ==================================================
   MOBILE
   768px
================================================== */

@media (max-width: 768px) {
  .site-footer {
    padding-block: 1.15rem;
  }

  .site-footer__inner {
    flex-direction: column;

    justify-content: center;

    gap: 0.4rem;

    text-align: center;
  }

  .site-footer__copyright,
  .site-footer__credit {
    text-align: center;
  }
}

/* ==================================================
   SMALL MOBILE
   480px
================================================== */

@media (max-width: 480px) {
  .site-footer {
    padding-block: 1rem;
  }

  .site-footer__inner {
    gap: 0.35rem;
  }

  .site-footer__copyright,
  .site-footer__credit {
    font-size: 0.7rem;
  }
}
