.fc-footer,
.fc-footer * {
  box-sizing: border-box;
}

.fc-footer {
  width: 100%;
  margin: 0;
  padding: 48px max(32px, calc((100vw - 1216px) / 2)) 56px;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2fr);
  gap: 72px;
  color: #b8c6db;
  background: #0c1829;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.fc-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.fc-footer__logo {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.fc-footer__logo .brand-logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.fc-footer__mark {
  width: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: none;
}

.fc-footer__mark i {
  display: block;
  height: 8px;
  border-radius: 2.5px;
}

.fc-footer__mark i:first-child {
  width: 38px;
  background: rgba(255, 255, 255, 0.22);
}

.fc-footer__mark i:nth-child(2) {
  width: 26px;
  background: rgba(255, 255, 255, 0.58);
}

.fc-footer__mark i:last-child {
  width: 16px;
  background: #fff;
}

.fc-footer__word {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.fc-footer__word span + span {
  color: #4d7fff;
}

.fc-footer__brand p {
  max-width: 280px;
  margin: 2px 0 10px;
  color: #b8c6db;
}

.fc-footer__brand > span {
  color: #b8c6db;
}

.fc-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.fc-footer__links--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-footer__links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.fc-footer__links strong,
.fc-footer__links a {
  color: #fff;
}

.fc-footer__links strong {
  font-weight: 700;
}

.fc-footer__links a {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.fc-footer__links a:hover {
  color: #a9c4ff;
}

.fc-footer a:focus-visible {
  outline: 3px solid #a9c4ff;
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .fc-footer {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .fc-footer {
    padding: 32px 18px 40px;
  }

  .fc-footer__links,
  .fc-footer__links--compact {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}

@media (max-width: 420px) {
  .fc-footer__links,
  .fc-footer__links--compact {
    grid-template-columns: 1fr;
  }
}
