/* Footer */
footer {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
  margin-top: 2rem;
  padding: 2rem;
  border-top: 1px solid var(--border);
  background: var(--background-secondary);
}

.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;
}

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

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

.newsletter-form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
}

.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: 400px;
  }
}

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

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