.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0 0;
}

footer {
  text-align: center;
}

.h2-footer {
  margin: 2rem 0;
}

.footer-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  line-height: 1.5;
}

.footer-text-box h3 {
  margin: 0;
  font-size: calc(var(--base-font-size) * 0.85);
}

.footer-text-box ul {
  font-size: calc(var(--base-font-size) * 0.85);
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-text-box li {
  line-height: 2;
}

.icons {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
}

ul svg {
  width: 36px;
  height: 36px;
}

.social {
  fill: var(--windsurfing);
}

.social:hover {
  fill: var(--marina);
}

.social-disabled {
  display: inline-flex;
  opacity: 0.45;
  cursor: not-allowed;
}

.social-disabled .social {
  fill: var(--gray);
}

.social-disabled .social:hover {
  fill: var(--gray);
}

.footer-text .social {
  fill: var(--onyx);
}

.footer-text .social:hover {
  fill: var(--marina);
}

@media (min-width: 750px) {
  :root {
    --base-font-size: 1.125rem;
  }

  footer {
    text-align: left;
  }

  .footer-text {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-text .icons {
    grid-column: 1 / 4;
    justify-content: flex-start;
  }
}
