.footer--4-spalten {
  container-type: inline-size;
  background-color: var(--base-ultra-dark);
  color: var(--text-light);
}

.footer--4-spalten__inner {
  display: grid;
  gap: var(--space-2xl);

  @container (min-width: 32rem) {
    grid-template-columns: repeat(2, 1fr);
  }

  @container (min-width: 42rem) {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }
}

.footer--4-spalten__spalte {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.footer--4-spalten__heading {
  margin-bottom: var(--space-xs);
  color: var(--text-light);
  font-weight: 500;
}

.footer--4-spalten__social-wrapper {
  display: flex;
  align-items: center;

  gap: var(--space-xs);
}

.footer--4-spalten__social-icon {
  display: block;
}

.footer--4-spalten__social-text {
  margin: 0;
}

.footer--4-spalten__spalte-4 {
  display: flex;
  flex-direction: column;
}

.footer--4-spalten__logo-figure {
  display: block;
  max-width: clamp(200px, 15vw, 300px);
  height: auto;
}

.footer--4-spalten__logo-img {
  width: 100%;
  height: auto;
}

.footer--4-spalten__copyright {
  margin: 0;
  margin-top: auto;
  width: 100%;
}
