footer {
  display: flex;
  justify-content: center;
  align-content: space-around;
  padding: 48px 24px;
  border-top: 1px solid var(--gray-border);
  color: var(--footer-link);
  background: var(--gray-50);
}

footer .container {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
}

footer a {
  color: var(--footer-link);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-top-row {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-section {
  width: 30%;
  word-break: keep-all;
  white-space: nowrap;
}

.footer-section h4 {
  margin-bottom: 16px;
  color: var(--gray-header);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  padding: 4px 0;
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  height: 25px;
}

.footer-separator {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--gray-border);
  margin: 24px 0;
}

.footer-bottom-row {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 16px;
  justify-content: space-between;
}

.footer-logo {
  width: 110px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 600px) {
  .footer-top-row {
    flex-flow: row;
    gap: 8px;
  }

  .footer-bottom-row {
    flex-flow: row;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .footer-bottom-row {
    flex-flow: row;
    align-items: center;
    flex-flow: row !important;
  }

  .footer-top-row {
    gap: 32px !important;
  }
}
