/* FRA Prop HQ v6.23.1 — visible customer support routes */
.sidebar-support-link {
  display:flex;
  align-items:center;
  gap:14px;
  min-height:46px;
  padding:0 14px;
  color:var(--muted);
  text-decoration:none;
  border-radius:10px;
  transition:background .16s ease,color .16s ease;
}
.sidebar-support-link:hover {
  color:var(--text);
  background:var(--hover);
}
.sidebar-support-link .nav-icon {
  display:grid;
  width:18px;
  height:18px;
  place-items:center;
  flex:0 0 18px;
}
.sidebar-support-link .nav-icon svg {
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.support-contact-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.support-contact-actions .button {
  text-decoration:none;
}
.support-email-line {
  display:inline-block;
  margin-top:16px;
  color:var(--accent);
  font-weight:700;
  text-decoration:none;
}
.support-email-line:hover { text-decoration:underline; }
body.sidebar-collapsed .sidebar-support-link {
  justify-content:center;
  padding:0;
}
body.sidebar-collapsed .sidebar-support-link > span:last-child { display:none; }
@media (max-width: 680px) {
  .support-contact-actions { flex-direction:column; }
  .support-contact-actions .button { width:100%; }
}
