.stk-footer-support {
  color: #fff;
  width: 100%;
}

.stk-footer-support__top {
  display: grid;
  gap: 3rem 2rem;
  grid-template-columns: minmax(180px, 1.1fr) repeat(3, minmax(180px, 1fr));
  padding-bottom: 3rem;
}

.stk-footer-support__brand {
  align-items: flex-start;
  display: flex;
  padding-top: 0.25rem;
}

.stk-footer-support__logo {
  display: block;
  height: auto;
  max-width: 180px;
  width: 100%;
}

.stk-footer-support__title {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 1.75rem;
}

.stk-footer-support__links,
.stk-footer-support__legal,
.stk-footer-support__social {
  margin: 0;
  padding: 0;
}

.stk-footer-support__links li + li {
  margin-top: 0.9rem;
}

.stk-footer-support__link {
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  font-size: 1rem;
  gap: 1rem;
  justify-content: space-between;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.stk-footer-support__link:hover,
.stk-footer-support__legal a:hover,
.stk-footer-support__social a:hover {
  color: #fff;
}

.stk-footer-support__arrow {
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  flex: 0 0 auto;
  height: 0.55rem;
  transform: rotate(45deg);
  width: 0.55rem;
}

.stk-footer-support__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding-top: 1.75rem;
}

.stk-footer-support__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.stk-footer-support__legal a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  line-height: 1.4;
  text-decoration: none;
}

.stk-footer-support__social {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.stk-footer-support__social a {
  color: #fff;
  display: inline-flex;
  text-decoration: none;
}

.stk-footer-support__social svg {
  display: block;
  height: 1.2rem;
  width: 1.2rem;
}

@media (max-width: 991.98px) {
  .stk-footer-support__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stk-footer-support__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .stk-footer-support__top {
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 2.5rem;
  }

  .stk-footer-support__title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }

  .stk-footer-support__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
  }

  .stk-footer-support__legal,
  .stk-footer-support__social {
    justify-content: center;
    width: 100%;
  }

  .stk-footer-support__legal {
    gap: 0.9rem 1.25rem;
  }
}

