/* cs-chips-band — centered heading + subtitle with a row of pill chips,
   flanked by the brand chair marks.
   All rem values follow BB Theme's html { font-size: 10px } base. */

/* Strip BB's default row chrome. */
.fl-row-content-wrap:has(.cs-chips-band) {
  padding-block: 0;
}
.fl-module-content:has(.cs-chips-band) {
  margin-block: 0;
}

.cs-chips-band {
  position: relative;
  padding-block: var(--cs-space-2xl);
  font-family: var(--cs-font-body);
  color: var(--cs-ink);
}

.cs-chips-band__inner {
  max-width: var(--cs-container);
  margin: 0 auto;
  padding-inline: var(--cs-gutter);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Chair marks flanking the copy — mirrored so each chair faces inward */
.cs-chips-band__chair {
  position: absolute;
  top: 8.4rem;
  width: 8.4rem;
  height: auto;
  transform: scaleX(-1);
}

.cs-chips-band__chair--left  { left: var(--cs-gutter); }
.cs-chips-band__chair--right { right: var(--cs-gutter); }

/* Doubled classes + font-style so BB Global h2 rules lose. */
.cs-chips-band .cs-chips-band__heading {
  margin: 0 auto;
  max-width: 96rem; /* keep clear of the flanking chair marks */
  font-family: var(--cs-font-display);
  font-weight: 700;
  font-size: clamp(3rem, 2.5vw + 1rem, 4rem); /* 30px → 40px */
  font-style: normal;
  line-height: 1.2;
  letter-spacing: var(--cs-tracking-tight);
  color: var(--cs-ink);
  text-wrap: balance;
}

.cs-chips-band__subtitle {
  margin: var(--cs-space-md) auto 0;
  max-width: 88rem; /* keep clear of the flanking chair marks */
  font-family: var(--cs-font-display);
  font-weight: 400;
  font-size: 2rem; /* 20px */
  line-height: 1.6;
  color: #1b5386;
}

.cs-chips-band__subtitle p {
  margin: 0;
}

/* ---------- Chips ---------- */
.cs-chips-band__chips {
  list-style: none;
  margin: var(--cs-space-xl) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.cs-chips-band__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16.4rem; /* 164px */
  min-height: 3.6rem; /* 36px */
  padding: 0.6rem 2rem;
  border-radius: var(--cs-radius-pill);
  background: rgba(240, 183, 164, 0.3);
  font-family: var(--cs-font-display);
  font-weight: 400;
  font-size: 1.3rem; /* 13px */
  line-height: 1.45;
  color: #383840;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .cs-chips-band__chair {
    display: none;
  }
}
