/* Figma 9292:5923 — Rolling Brand Banner (1920 × 162). */
.rollingBrandBanner {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-height: 162px;
  height: auto;
  /* Figma text box is ~1648px wide → (1920 − 1648) / 2 = 136px side inset.
     200px padding (from auto-layout export) clips the nowrap line at 1920@100%. */
  padding: 60px 136px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #30a67f;
  box-sizing: border-box;
}

.rollingBrandBanner p {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -0.2px;
  text-align: center;
  white-space: nowrap;
}

/* Below Figma’s 1920 artboard: keep one line, scale type so it still fits. */
@media (min-width: 981px) and (max-width: 1919px) {
  .rollingBrandBanner {
    padding: 48px clamp(24px, 4vw, 80px);
  }

  .rollingBrandBanner p {
    font-size: clamp(18px, 1.875vw, 36px);
    line-height: 1.1667;
  }
}

@media (max-width: 980px) {
  .rollingBrandBanner {
    height: auto;
    min-height: 132px;
    padding: 40px 24px;
  }

  .rollingBrandBanner p {
    font-size: 24px;
    line-height: 32px;
    white-space: normal;
  }
}
