:root {
  --tm-brand: #ff580d;
  --tm-brand-dark: #e54d0b;
  --tm-soft-bg: #fff7f0;
  --tm-muted-bg: #f4f4f4;
}

.tm-quicklinks {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

.tm-quicklinks__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tm-quicklinks__inner::-webkit-scrollbar {
  display: none;
}

.tm-quicklinks__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--tm-soft-bg);
  border: 1px solid rgba(255, 88, 13, 0.12);
  color: #2a2b2a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tm-quicklinks__item:hover {
  background: #fff;
  border-color: rgba(255, 88, 13, 0.35);
  transform: translateY(-1px);
  text-decoration: none;
  color: #2a2b2a;
}

.tm-quicklinks__icon {
  font-size: 15px;
  line-height: 1;
}

.tm-home-section--soft {
  background: var(--tm-soft-bg);
}

.tm-home-section--muted {
  background: var(--tm-muted-bg);
}

@media (min-width: 769px) {
  .tm-quicklinks {
    padding: 14px 0;
  }

  .tm-quicklinks__inner {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
  }
}
