footer {
  color: var(--background-light);
  margin-top: 1.5em;
}
@media (min-width: 67.5em) {
  footer {
    align-items: center;
    display: flex;
    justify-content: space-around;
  }
}

.social-media {
  display: flex;
  flex-direction: column;
}
@media (min-width: 67.5em) {
  .social-media {
    order: 1;
  }
}
.social-media p {
  font-size: 1.2rem;
  margin: .5em 0;
  text-align: center;
  text-transform: uppercase;
}
.social-media__icons {
  display: flex;
  justify-content: center;
}
.social-media__icons a {
  padding: .5em;
  width: 3em;
  height: 3em;
}
.social-media__icons a + a {
  margin-left: 1em;
}
.social-media svg {
  fill: var(--background-light);
  width: 100%;
  height: 100%;
}
.social-media a:hover path,
.social-media a:focus-visible path {
  fill: var(--foreground);
}

.bottom-nav {
  display: flex;
  justify-content: center;
  margin: 1em 0;
}
@media (min-width: 67.5em) {
  .bottom-nav {
    order: 3;
  }
}
.bottom-nav ul {
  display: flex;
  flex-direction: column;
}
.bottom-nav ul + ul {
  margin-left: 2em;
}
.bottom-nav li {
  padding: .3em;
}
.bottom-nav a {
  text-decoration: none;
}

.newsletter-subscription {
  background: none;
  margin-bottom: 1em;
  padding: 0;
}
.newsletter-subscription fieldset {
  display: grid;
  grid-template-columns: 1fr auto;
}
.newsletter-subscription label {
  grid-column: span 2;
  font-size: .8rem;
}
.newsletter-subscription [type=text] {
  margin: 0;
  margin-right: 1em;
}
.newsletter-subscription button {
  margin: 0;
}

.cooperation {
  text-align: center;
}
@media (min-width: 67.5em) {
  .cooperation {
    order: 2;
  }
}
.cooperation a {
  display: none;
}
.cooperation img {
  width: 100%;
  height: auto;
}
@media (min-width: 67.5em) {
  .cooperation a {
    display: block;
    margin: 0 auto;
    width: 15vw;
    max-width: 12em;
    height: auto;
  }
}

.gdpr-agreement {
  align-items: center;
  background-color: var(--foreground);
  box-shadow: 0 -.05em .25em var(--background-lighter);
  color: var(--background-lighter);
  display: flex;
  gap: 1em;
  justify-content: center;
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: all 1s ease;
  transition-delay: 500ms;
  visibility: hidden;
  z-index: 1000;
}
.gdpr-agreement.not-agreed {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
  visibility: visible;
}
.gdpr-agreement p {
  font-size: 1rem;
  line-height: 1.1;
}
@media (min-width: 45em) {
  .gdpr-agreement p {
    font-size: 1.05rem;
  }
}
.gdpr-agreement a {
  color: var(--background-lighter);
  font-size: inherit;
  text-decoration: underline;
}
.gdpr-agreement .std-button {
  background-color: var(--background-lighter);
  color: var(--foreground);
  opacity: .75;
}
.gdpr-agreement .std-button:hover {
  background-color: white;
}
