.hth-footer {
  background: #0d0d52;
  color: #ffffff;
}

.hth-footer * {
  box-sizing: border-box;
}

.hth-footer a {
  color: inherit;
  text-decoration: none;
}

.hth-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 16px;
}

.hth-footer__grid {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}

.hth-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hth-footer__logo {
  height: 40px;
  width: auto;
  display: block;
}

.hth-footer__description {
  color: #d1d5db;
  margin: 0;
  line-height: 1.7;
}

.hth-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hth-footer__contact-link,
.hth-footer__contact-text {
  display: flex;
  align-items: center;
  color: #d1d5db;
  gap: 12px;
  line-height: 1.6;
}

.hth-footer__contact-link:hover {
  color: #1a2bc2;
}

.hth-footer__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hth-footer__icon--top {
  align-self: flex-start;
  margin-top: 4px;
}

.hth-footer__heading {
  font-size: 18px;
  margin: 0 0 16px;
  font-weight: 600;
}

.hth-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hth-footer__link {
  color: #d1d5db;
  transition: color 0.2s ease;
}

.hth-footer__link:hover {
  color: #1a2bc2;
}

.hth-footer__bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hth-footer__copyright {
  color: #9ca3af;
  margin: 0;
  font-size: 14px;
}

.hth-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hth-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #1b1c1e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.hth-footer__social-link:hover {
  background: #1a2bc2;
}

@media (min-width: 768px) {
  .hth-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hth-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hth-footer__container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hth-footer__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hth-footer__brand {
    grid-column: span 2 / span 2;
  }
}
