.l-footer {
  position: relative;
  overflow: hidden;
  padding: 40px 24px 24px;
  background: var(--color-bg-strong);
  color: var(--color-text-inverse);
}

.l-footer::after {
  position: absolute;
  top: -72px;
  right: -66px;
  width: 170px;
  height: 170px;
  border: 20px solid var(--color-accent-sun);
  border-radius: 50%;
  content: "";
  opacity: 0.9;
}

.l-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.l-footer-affiliation {
  display: grid;
  gap: 12px;
}

.l-footer-association {
  display: grid;
  width: 220px;
  height: 74px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  place-items: center;
}

.l-footer-association img {
  width: 180px;
  max-height: 42px;
  object-fit: contain;
}

.l-footer-label,
.l-footer-link,
.l-footer-copy {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

.l-footer-name {
  font-size: 1rem;
}

.l-footer-bottom {
  display: flex;
  margin-top: 18px;
  gap: 18px;
  flex-direction: column;
}

.l-footer-logo {
  width: 150px;
  height: 48px;
  /* filter: brightness(0) invert(1); */
  /* opacity: 0.9; */
}

.l-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 1024px) {
  .l-footer {
    min-height: 300px;
    padding: 54px 0 36px;
  }

  .l-footer-inner {
    width: min(100% - 80px, var(--content-width));
    margin-inline: auto;
    grid-template-columns: 1fr auto;
  }

  .l-footer-bottom {
    align-items: flex-end;
    justify-content: space-between;
  }

  .l-footer-logo {
    width: 187px;
    height: 60px;
  }
}
