/* RGR Service Strip */

.rgr-service-strip,
.rgr-service-strip * { box-sizing: border-box; }

.rgr-service-strip {
  background: #fff;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
}

.rgr-service-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 0;
  min-height: 64px;
  flex-wrap: wrap;
}

.rgr-service-strip__item {
  padding: 18px 32px;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
  color: var(--rgr-black);
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}
.rgr-service-strip__item:hover,
.rgr-service-strip__item:focus {
  color: var(--rgr-red);
}

.rgr-service-strip__pipe {
  color: rgba(0,0,0,0.18);
  font-weight: 300;
  font-size: 1.3em;
  line-height: 1;
  user-select: none;
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .rgr-service-strip__inner {
    justify-content: flex-start;
    gap: 0;
  }
  .rgr-service-strip__pipe { display: none; }
  .rgr-service-strip__item {
    padding: 12px 16px;
    font-size: 14px;
  }
}
