.footer-download-center {
  width: min(100%, 180px);
  flex: 0 0 180px;
  text-align: left;
}

.footer-download-list {
  display: grid;
  gap: 8px;
}

.footer-copyright {
  width: 100%;
  text-align: center;
}

.footer-download-link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  min-height: 52px;
  padding: 7px 10px 7px 8px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(17, 24, 33, 0.65);
  color: #e2e8f0;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.footer-download-link:hover,
.footer-download-link:focus-visible {
  border-color: rgba(25, 127, 230, 0.72);
  background: rgba(25, 127, 230, 0.1);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.footer-download-icon-wrap {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
}

.footer-download-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-download-name {
  overflow: hidden;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .footer-download-center {
    width: 100%;
    flex-basis: auto;
  }

  .footer-download-link {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 54px;
  }

  .footer-download-name {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .footer-download-layout {
    align-items: center !important;
  }

  .footer-brand-description {
    margin-top: 42px !important;
  }
}

@media (max-width: 380px) {
  .footer-download-name {
    font-size: 14px;
  }
}
