/* Footer */
footer {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background-image: linear-gradient(
    var(--surface-primary),
    var(--surface-primary-strong)
  );
}

.footer__icons {
  display: flex;
  flex-flow: row nowrap;
  gap: 2rem;
  justify-content: center;
}

.footer__icon-link {
  font-size: 2rem;
  color: var(--body-secondary-text--default);
}

.newsletter-section {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.newsletter-section h2 {
  margin: 0;
  width: 50%;
  font-size: 1rem;
  text-align: center;
  color: var(--header-secondary-text--default);
}

.newsletter-section p {
  margin: 0.5rem;
  font-size: 0.75rem;
  text-align: center;
  color: var(--body-secondary-text--default);
}

.newsletter-form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 24rem;
}

.newsletter-form label,
.newsletter-form p {
  display: none;
}

/* Medium screens */
@media screen and (width >=620px) {
  .newsletter-section h2 {
    margin: 1rem;
  }

  .newsletter-form {
    flex-flow: row nowrap;
    margin: 0 auto;
    max-width: 580px;
  }
}

/* Large screens */
@media screen and (width >=960px) {
}

/* Extra large screen */
@media screen and (width >=1200px) {
}
