.c-site-footer {
  padding-block: var(--wa-space-xl);
  padding-inline: var(--wa-space-m);
  background: var(--wr-color-surface-default);
  border-top: var(--wa-border-width-s, 1px) solid var(--wa-color-neutral-border-quiet);

  @media (width >= 64rem) {
    padding-block: var(--wa-space-3xl);
    padding-inline: var(--wa-space-4xl);
  }
}

.c-site-footer__inner {
  display: grid;
  gap: var(--wa-space-xl);

  @media (width >= 64rem) {
    grid-template-columns: minmax(16rem, 1.45fr) minmax(0, 2.15fr) minmax(11rem, 0.75fr);
    align-items: start;
    gap: var(--wa-space-2xl);
  }
}

.c-site-footer__brand {
  display: grid;
  gap: var(--wa-space-s);
  justify-items: start;
}

.c-site-footer__brand-link {
  display: inline-flex;
  text-decoration: none;
}

.c-site-footer__logo {
  display: block;
  width: auto;
  height: clamp(3rem, 18vw, 4rem);
}

.c-site-footer__brand p,
.c-site-footer__copyright {
  margin: 0;
  color: var(--wr-color-text-primary);
  font-size: var(--wa-font-size-s);
  line-height: var(--wa-line-height-normal);
}

.c-site-footer__brand p span {
  display: block;
}

.c-site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--wa-space-l);

  @media (width >= 64rem) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.c-site-footer__section,
.c-site-footer__social {
  display: grid;
  gap: var(--wa-space-s);
}

.c-site-footer__section h2,
.c-site-footer__social h2 {
  margin: 0;
  color: var(--wr-color-text-primary);
  font-size: var(--wa-font-size-s);
  line-height: var(--wa-line-height-condensed);
  text-transform: uppercase;
}

.c-site-footer__section ul,
.c-site-footer__social ul {
  display: grid;
  gap: var(--wa-space-xs);
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-site-footer__section li,
.c-site-footer__social li {
  margin: 0;
}

.c-site-footer__section a {
  color: var(--wr-color-text-primary);
  font-size: var(--wa-font-size-s);
  line-height: var(--wa-line-height-normal);
  text-decoration: none;
}

.c-site-footer__section a:hover {
  color: var(--wa-color-wr-secondary-70);
}

.c-site-footer__social ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wa-space-s);
}

.c-site-footer__social-link {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
  border-radius: var(--wa-border-radius-circle);
  color: var(--wr-color-brand-white);
  font-size: var(--wa-font-size-xl);
  text-decoration: none;
}

.c-site-footer__social-link--facebook {
  background: #1877f2;
}

.c-site-footer__social-link--instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7);
}

.c-site-footer__social-link--x {
  background: #000000;
}

.c-site-footer__copyright {
  margin-block-start: var(--wa-space-xl);
  text-align: center;
}
