.aok26-footer {
  --aok26-footer-orange: #f38b1c;
  --aok26-footer-dark: #231f20;
  --aok26-footer-text: #dce2f3;
  --aok26-footer-border: rgb(220 226 243 / 20%);
  width: 100%;
  border-top: 4px solid var(--aok26-footer-orange);
  background: var(--aok26-footer-dark);
  color: #fff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

.aok26-footer,
.aok26-footer * {
  box-sizing: border-box;
}

.aok26-footer__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 24px;
}

.aok26-footer h2,
.aok26-footer p,
.aok26-footer ul {
  margin: 0 !important;
}

.aok26-footer ul {
  padding: 0 !important;
  list-style: none !important;
}

.aok26-footer a {
  color: inherit !important;
  text-decoration: none !important;
}

.aok26-footer__grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.1fr) repeat(3, minmax(180px, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.aok26-footer__brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}

.aok26-footer__logo {
  display: block;
  width: 172.8px;
}

.aok26-footer__logo img {
  display: block;
  width: 100% !important;
  height: auto !important;
}

.aok26-footer__brand > p {
  max-width: 310px;
  color: var(--aok26-footer-text) !important;
  font-size: 14px;
  line-height: 1.65;
}

.aok26-footer h2 {
  color: var(--aok26-footer-orange) !important;
  font-family: "IBM Plex Sans", Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.aok26-footer__social-nav h2,
.aok26-footer__column h2 {
  margin-bottom: 24px !important;
}

.aok26-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aok26-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--aok26-footer-border);
  color: var(--aok26-footer-text) !important;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.aok26-footer__socials a:hover,
.aok26-footer__socials a:focus-visible {
  border-color: var(--aok26-footer-orange);
  background: var(--aok26-footer-orange);
  color: #fff !important;
}

.aok26-footer a:focus-visible {
  outline: 2px solid var(--aok26-footer-orange);
  outline-offset: 3px;
}

.aok26-footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aok26-footer__column li,
.aok26-footer__column a {
  color: var(--aok26-footer-text) !important;
  font-size: 14px;
  line-height: 1.45;
}

.aok26-footer__column a {
  transition: color 150ms ease;
}

.aok26-footer__column a:hover,
.aok26-footer__column a:focus-visible {
  color: var(--aok26-footer-orange) !important;
}

.aok26-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--aok26-footer-border);
  color: var(--aok26-footer-text);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.aok26-footer__bottom p {
  color: var(--aok26-footer-text) !important;
}

.aok26-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.aok26-footer__bottom a {
  color: var(--aok26-footer-text) !important;
  transition: color 150ms ease;
}

.aok26-footer__bottom a:hover,
.aok26-footer__bottom a:focus-visible {
  color: #fff !important;
}

@media (max-width: 900px) {
  .aok26-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aok26-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .aok26-footer__bottom nav {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .aok26-footer__inner {
    padding: 48px 20px;
  }

  .aok26-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 48px;
  }

  .aok26-footer__bottom nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

