/* components/footer/footer.css */
/* Footer */
.footer {
  background: var(--dark-grey);
  color: white;
  padding: 40px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-main {
  max-width: 100%;
}

.footer-logo {
  margin: 5px 0 20px 0;
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  container-type: inline-size;
}

.footer-logo > a,
.footer-logo-divider {
  display: flex;
  align-items: center;
  min-width: 0;
}

.footer-logo > a:nth-child(1) {
  flex: 137 1 0;
}

.footer-logo > a:nth-child(3) {
  flex: 77 1 0;
}

.footer-logo > a:nth-child(5) {
  flex: 234 1 0;
}

.footer-logo-divider {
  flex: 0 0 1px;
}

.footer-logo > a > svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 42px;
}

.footer-logo-divider > svg {
  display: block;
  width: 1px;
  height: min(41px, 7.8cqw);
}

.footer-column .heading {
  margin-bottom: 10px;
}

.footer-address {
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--light-grey);
  text-decoration: none;
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
  border-radius: 50%;
}

.social-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.social-icon:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
  border-radius: 50%;
}

.footer-links {
  list-style: none;
}

.footer-heading-link,
.footer-heading-link:link,
.footer-heading-link:visited {
  color: white !important;
  text-decoration: none;
}

.footer-heading-link:hover,
.footer-heading-link:active {
  color: white !important;
  text-decoration: underline;
}

.footer-heading-link:focus-visible {
  outline: 3px solid white;
  outline-offset: 2px;
  border-radius: 2px;
  text-decoration: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
  line-height: 1.5;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links a:focus-visible {
  outline: 3px solid white;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 33px;
  text-align: center;
}

.footer-bottom p {
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 48px;
  }

  .footer-main {
    max-width: 332px;
  }
}
