.tt-header-widget {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #7a7a7a;
  font-size: .88rem;
  line-height: 1.35;
}

.tt-header-widget .widget {
  margin: 0;
}

.tt-header-widget p {
  margin: 0;
}

.tt-mobile-header-widget {
  display: none;
  margin-top: .75rem;
  gap: .7rem;
}

.tt-mobile-header-widget .widget {
  margin: 0;
}

.tt-mobile-header-widget .tt-btn,
.tt-mobile-header-widget a {
  display: inline-block;
  width: 100%;
  text-align: center;
  min-height: 48px;
  line-height: 48px;
  border-radius: 8px;
}

.tt-mobile-header-widget .tt-btn {
  line-height: 1.2;
  padding: .8rem 1rem;
  min-height: 48px;
}

.tt-footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.tt-footer-widgets .widget {
  margin: 0;
}

.widget-title {
  margin: 0 0 .6rem;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  border-bottom: 2px solid #FF8C42;
  padding-bottom: .25rem;
  display: inline-block;
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  margin-bottom: .4rem;
}

.widget ul li a:hover {
  color: #FF8C42;
}

@media (max-width: 1024px) {
  .tt-header-widget {
    display: none;
  }

  .tt-mobile-header-widget {
    display: grid;
  }

  .tt-footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tt-footer-widgets {
    grid-template-columns: 1fr;
  }
}