#footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  position: relative;
}

#footer-layouts {
  border-top: var(--regular-border-width) solid var(--regular-border-color);
}
#footer-layouts .layout:first-child {
  --layout-padding-top-add: 0rem;
}

#footer-bottom {
  position: relative;
  min-height: var(--footer-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--footer-padding-top) var(--footer-padding-sides) var(--footer-padding-bottom);
  box-sizing: border-box;
  border-top: var(--regular-border-width) solid var(--regular-border-color);
}

#footer-logo {
  flex-grow: 0;
  flex-shrink: 1;
  height: var(--logo-height);
  transform: translateY(var(--logo-offset));
}

#footer-nav-list {
  display: flex;
  align-items: center;
  gap: var(--footer-nav-gap);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
}



.footer-nav-link {
  color: inherit;
}

@media (hover: hover) {
  .footer-nav-link:hover {
    text-decoration: underline;
    text-underline-offset: var(--text-underline-offset);
    text-decoration-thickness: var(--text-decoration-thickness);
  }
}



@media (max-width: 720px) {
  
  #footer-nav-list {
    --footer-nav-gap: 1em;
    flex-direction: column;
    align-items: end;
  }
  
  #footer-bottom {
    --footer-padding-top: 2rem;
    --footer-padding-bottom: 2rem;
    align-items: start;
  }
  
}

