.footer .footer-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px clamp(24px, 4vw, 76px);
  width: 100%;
  padding: 8px 0 42px;
}

.footer .footer-lists-item { min-width: 0; }
.footer .footer-lists-item .label {
  display: block;
  width: 100%;
  padding: 0 0 12px;
  margin: 0 0 12px;
  border: 0;
  border-bottom: 1px solid #526b77;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  letter-spacing: .01em;
  cursor: default;
}
.footer .footer-lists-item .label::after { display: none; }
.footer .footer-lists-item a {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 7px;
  color: #c0cbd0;
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color .18s ease;
}
.footer .footer-lists-item a:hover,
.footer .footer-lists-item a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer .footer-lists-item a:focus-visible,
.footer .footer-lists-item .label:focus-visible { outline: 2px solid #27c5c4; outline-offset: 3px; }

@media (max-width: 900px) {
  .footer .footer-lists { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 40px; }
}
@media (max-width: 580px) {
  .footer .footer-lists { grid-template-columns: 1fr; gap: 0; padding: 0 0 20px; }
  .footer .footer-lists-item {
    padding: 0;
    border-bottom: 1px solid #526b77;
  }
  .footer .footer-lists-item:last-child { border-bottom: 0; }
  .footer .footer-lists-item .label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 15px 0;
    margin: 0;
    border: 0;
    cursor: pointer;
  }
  .footer .footer-lists-item .label::after {
    display: block;
    flex: 0 0 20px;
    margin-left: 15px;
    transform: rotate(90deg);
  }
  .footer .footer-lists-item.open .label::after { transform: rotate(-90deg); }
  .footer .footer-lists-item a { display: none; margin-bottom: 12px; }
  .footer .footer-lists-item.open a { display: block; }
  .footer .footer-lists-item.open a:last-child { margin-bottom: 22px; }
}
