.lst-home-footer .lst-home-footer__grid {
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(145px, 1fr));
  align-items: start;
}

.lst-home-footer__logo,
.lst-home-footer__certification-link {
  display: inline-flex;
  width: max-content;
}

.lst-home-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lst-home-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  color: currentColor;
}

.lst-home-footer__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lst-home-footer__certification {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.lst-home-footer__certification h3 {
  margin-bottom: 2px;
}

.lst-home-footer__certification-link {
  padding: 10px;
  border: 1px solid rgba(198, 154, 82, 0.24);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.lst-home-footer__certification-link:hover,
.lst-home-footer__certification-link:focus-visible {
  border-color: rgba(242, 213, 135, 0.58);
  background: rgba(198, 154, 82, 0.08);
  transform: translateY(-1px);
}

.lst-home-footer__certification img {
  display: block;
  width: min(100%, 142px);
  height: auto;
  object-fit: contain;
}

.lst-home-footer__certification p {
  max-width: 210px;
  margin: 0;
  color: var(--lst-gray, #a8a29a);
  font-size: 13px;
  line-height: 1.55;
}

.lst-home-footer__bottom div {
  flex-wrap: wrap;
}

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

@media (max-width: 767px) {
  .lst-home-footer .lst-home-footer__grid {
    grid-template-columns: 1fr;
  }

  .lst-home-footer__certification p {
    max-width: none;
  }
}
