/* ltx-support-widget.css
   Reusable "Get Support" block — styled to match quick links bar
   Insert anywhere with: <div class="ltx-support-widget"></div>
   ------------------------------------------------------------------ */

.ltx-support-widget {
  margin: 48px 0 80px;
}

.ltx-support-widget__inner {
  border-top: 1px solid #353434;
  border-bottom: 1px solid #353434;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

/* ── Buttons ─────────────────────────────────────────────────────── */

.ltx-support-widget__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ltx-pp__btn handles shape, border, hover — we just add flex for the icon */
.ltx-support-widget__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px;
}

.ltx-support-widget__btn-label {
  font-family: 'Aeonik', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: inherit;
}

.ltx-support-widget__btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ltx-support-widget__btn-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* Discord icon uses fill not stroke */
.ltx-support-widget__btn-icon svg.icon-discord {
  stroke: none;
  fill: currentColor;
}

/* HF icon has its own internal fills — suppress stroke so they render correctly */
.ltx-support-widget__btn-icon svg.icon-hf {
  stroke: none;
}

/* ── Responsive ──────────────────────────────────────────────────── */

@media (max-width: 767px) {
  .ltx-support-widget {
    margin: 32px 0 48px;
  }
}
