/* Site-specific overrides on top of the Roadster theme, kept out of the
   theme submodule so it stays clean for updates. */

.logo__disclaimer {
  font-size: 0.75rem;
  font-style: italic;
  color: #888;
  margin-top: 0.35rem;
  line-height: 1.3;
  text-transform: none;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 4px;
  padding: 8px 12px;
  /* .content a (generic markdown link color) is more specific than the
     theme's own .btn color rule, so without this the button text/icon
     silently inherits highlightColor instead of the intended inverse-text
     white — not obviously wrong here since PSLSC's teal accent still reads
     fine against the dark button, but the underlying bug is the same. */
  color: var(--color-inverse-text);
}

.contact-buttons .btn-icon-only {
  padding: 8px 10px;
}

.contact-buttons .btn-icon__svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Sidebar social widget: theme's default is display:block + white-space:pre-line
   (inherited from .btn), which stretches the button full-width and forces the
   icon and label onto separate lines when there's only one social link. */
.widget-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.widget-social__link span {
  display: none;
}

.widget-social__link-icon {
  margin: 0;
}
