/* src/client/components/Footer.css */
.footer {
  color: #f5f5f78c;
  padding: 3rem var(--page-padding-x) 1.75rem;
  background: #000;
  border-top: 1px solid #f5f5f714;
  margin-top: auto;
  font-size: .875rem;
}

.footer-inner {
  max-width: 1312px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (width >= 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items:  flex-start;
  gap: 1rem;
}

.footer-logo {
  display: block;
  width: auto;
  height: 24px;
}

.footer-social {
  display: inline-flex;
  color: #f5f5f7bf;
  border-radius: 8px;
  justify-content: center;
  align-items:  center;
  width: 36px;
  height: 36px;
  transition: background .12s, color .12s;
}

.footer-social:hover {
  color: var(--brand-orange);
  outline: none;
  background: #ffffff0f;
}

.footer-social:focus-visible {
  color: var(--brand-orange);
  outline: none;
  background: #ffffff0f;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 1;
  gap: 2rem;
}

@media (width >= 640px) {
  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (width >= 768px) {
  .footer-columns {
    flex: 0 auto;
    gap: 3rem;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.footer-column-label {
  letter-spacing: .02em;
  color: #f5f5f7;
  margin-bottom: .25rem;
  font-size: .8125rem;
  font-weight: 600;
}

.footer-link {
  color: #f5f5f7a6;
  text-decoration: none;
  transition: color .12s;
  font-size: .875rem;
  line-height: 1.4;
}

.footer-link:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  display: flex;
  color: #f5f5f780;
  border-top: 1px solid #f5f5f70f;
  flex-wrap: wrap;
  align-items:  center;
  gap: .5rem;
  padding-top: 1.5rem;
  font-size: .8125rem;
}

.footer-dot {
  color: #f5f5f74d;
}
