

.wfs-footer {
  background-color: #e0e3e5;
  padding: 60px 32px 40px 32px;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--wfs-text, #424752);
  border-top: 1px solid #dcdfe4;
  margin-top: auto;
}

.wfs-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.wfs-footer__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--wfs-primary, #0a5aaf);
  margin: 0 0 16px 0;
}

.wfs-footer__copyright {
  font-size: 0.85rem;
  color: var(--wfs-text, #424752);
  margin: 0 0 20px 0;
}

.wfs-footer__socials {
  display: flex;
  gap: 16px;
}

.wfs-footer__social-link {
  color: var(--wfs-dark, #1b1c1c);
  transition: color 0.2s ease;
}

.wfs-footer__social-link:hover {
  color: var(--wfs-primary, #0a5aaf);
}

.wfs-footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--wfs-dark, #1b1c1c);
  margin: 0 0 16px 0;
}

.wfs-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wfs-footer__links a {
  color: var(--wfs-text, #424752);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.wfs-footer__links a:hover {
  color: var(--wfs-primary, #0a5aaf);
}

.wfs-cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  max-width: 620px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #dcdfe4;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(27, 28, 28, 0.16);
}

.wfs-cookie-banner[hidden] {
  display: none !important;
}

.wfs-cookie-banner__content {
  flex: 1;
}
.wfs-cookie-banner__content strong {
  display: block;
  margin-bottom: 5px;
  color: var(--wfs-dark, #1b1c1c);
  font-size: 0.92rem;
}
.wfs-cookie-banner__content p {
  margin: 0;
  color: var(--wfs-text, #424752);
  font-size: 0.78rem;
  line-height: 1.5;
}
.wfs-cookie-banner__content a {
  color: var(--wfs-primary, #0a5aaf);
  font-weight: 600;
}
.wfs-cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.wfs-cookie-banner__button {
  padding: 9px 13px;
  border: 1px solid var(--wfs-primary, #0a5aaf);
  border-radius: 5px;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
}
.wfs-cookie-banner__button--primary {
  background: var(--wfs-primary, #0a5aaf);
  color: #fff;
}
.wfs-cookie-banner__button--secondary {
  background: #fff;
  color: var(--wfs-primary, #0a5aaf);
}
.wfs-cookie-banner__button:focus-visible {
  outline: 2px solid var(--wfs-dark, #1b1c1c);
  outline-offset: 2px;
}



@media (max-width: 1024px) {
  .wfs-footer {
    padding: 48px 24px 36px 24px;
  }
}

@media (max-width: 768px) {
  .wfs-footer {
    padding: 40px 20px 32px 20px;
  }

  .wfs-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wfs-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
  }

  .wfs-footer__links {
    gap: 12px;
  }

  .wfs-footer__links a {
    display: inline-block;
    padding: 2px 0;
  }
}

@media (max-width: 480px) {
  .wfs-footer {
    padding: 32px 16px 28px 16px;
  }

  .wfs-footer__inner {
    gap: 28px;
  }

  .wfs-cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 18px;
  }
  .wfs-cookie-banner__actions {
    margin-top: 14px;
  }
  .wfs-cookie-banner__button {
    flex: 1;
  }
}
