.footer {
  background-color: var(--bg-basic);
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.footer__tab {
  border-bottom: solid 1px var(--border-basic);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.footer__bttn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.footer__info p {
  font-size: 14px;
}

.footer__info--3 {
  grid-column: 1/4;
}

.footer__bttn {
  font-weight: 600;
  background-color: transparent;
  border-color: transparent;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: left;
}

.footer__list {
  list-style: none;
}

.footer__item {
  padding-bottom: 4px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__link {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}

.footer__bttn::after {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%238B8C94' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.footer__bttn.active + .footer__list {
  display: block;
}

.footer__bttn.active::after {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__info--3 {
    grid-column: 1;
  }
  .footer__bttn {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .footer__bttn::after {
    content: "";
  }

  .footer__list {
    display: none;
  }

  .footer__tab {
    margin-bottom: 10px;
    padding-bottom: 0;
  }

  .footer__info + .footer__info {
    margin-top: 12px;
  }
}
