/* RGR Utility Bar */

.rgr-utility-bar,
.rgr-utility-bar * { box-sizing: border-box; }

.rgr-utility-bar {
  background: var(--rgr-black);
  width: 100%;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.rgr-utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1720px);
  margin-inline: auto;
  padding: 0 clamp(16px, 3.6vw, 66px);
  min-height: 38px;
  gap: 20px;
}

.rgr-utility-bar__text {
  font-size: 13px;
  color: var(--rgr-muted-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  text-align: center;
}

.rgr-utility-bar__text a {
  color: var(--rgr-muted-white);
  text-decoration: none;
  transition: color 160ms ease;
}
.rgr-utility-bar__text a:hover {
  color: var(--rgr-white);
}

/* Tighten social icons for the utility bar context */
.rgr-utility-bar .rgr-socials {
  gap: 10px;
  flex-shrink: 0;
}
.rgr-utility-bar .rgr-socials a {
  width: 24px;
  height: 24px;
}
.rgr-utility-bar .rgr-socials svg {
  height: 14px;
  width: auto;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .rgr-utility-bar__text {
    font-size: 12px;
    text-align: left;
  }
  .rgr-utility-bar__inner {
    padding-block: 6px;
    min-height: 34px;
  }
}
