.global-footer {
  padding: 56px 0 0;
  background: #0b342d;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

.global-footer *,
.global-footer *::before,
.global-footer *::after {
  box-sizing: border-box;
}

.global-footer a {
  color: inherit;
  text-decoration: none;
}

.global-footer__container {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}

.global-footer__grid {
  display: grid;
  padding-bottom: 42px;
  grid-template-columns: minmax(270px, 1.55fr) repeat(3, minmax(150px, 0.72fr));
  gap: 42px;
}

.global-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.global-footer__seal {
  display: flex;
  width: 38px;
  height: 38px;
  padding: 4px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #cf452a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.global-footer__seal > span {
  display: inline-grid;
  width: 50%;
  place-items: center;
}

.global-footer__brand-name {
  color: #fff;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.global-footer__brand > p {
  max-width: 330px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.65;
}

.global-footer__status {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
}

.global-footer__status i {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: #7fc7a3;
  box-shadow: 0 0 0 4px rgba(127, 199, 163, 0.12);
}

.global-footer__nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.global-footer__nav h2 {
  margin: 0 0 15px;
  color: #fff;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.global-footer__nav a {
  padding: 2px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.45;
  transition: color 180ms ease;
}

.global-footer__nav a + a {
  margin-top: 8px;
}

.global-footer__nav a:hover,
.global-footer__nav a:focus-visible,
.global-footer__bottom a:hover,
.global-footer__bottom a:focus-visible {
  color: #fff;
}

.global-footer__nav a:focus-visible,
.global-footer__bottom a:focus-visible,
.global-footer__brand-link:focus-visible {
  border-radius: 3px;
  outline: 3px solid #f2b39f;
  outline-offset: 4px;
}

.global-footer__bottom {
  display: flex;
  min-height: 66px;
  padding-block: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.global-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.5;
}

.global-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.global-footer__bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .global-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }

  .global-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .global-footer__container {
    width: min(calc(100% - 36px), 1240px);
  }

  .global-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .global-footer__brand {
    grid-column: 1 / -1;
  }

  .global-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .global-footer {
    padding-top: 44px;
  }

  .global-footer__container {
    width: calc(100% - 28px);
  }

  .global-footer__grid {
    padding-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .global-footer__brand,
  .global-footer__nav {
    grid-column: 1;
  }

  .global-footer__nav {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .global-footer__nav h2 {
    font-size: 0.8rem;
  }

  .global-footer__nav a,
  .global-footer__brand > p,
  .global-footer__bottom p,
  .global-footer__bottom a {
    font-size: 0.875rem;
  }
}
