/*
 * Shared carrier logo strip, added to the pages that never had one (v1-v8, v10,
 * v14, v15). v11/v12/v13 keep their own built-in strips.
 *
 * Everything is namespaced qm- and the section sets its own font/box-sizing,
 * because these eleven pages each ship their own unrelated CSS and we cannot
 * assume a reset. Sizes are capped by height, not width, so logos with very
 * different aspect ratios (BCBS is 5:1, Cigna is closer to 2:1) still read as
 * one row rather than one logo dwarfing the rest.
 */
.qm-carriers {
  box-sizing: border-box;
  width: 100%;
  padding: 40px 20px;
  background: #f2f7fd;
}

.qm-carriers * {
  box-sizing: border-box;
}

.qm-carriers-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.qm-carriers-title {
  margin: 0 0 28px;
  font-family: inherit;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #0b74c4;
}

.qm-carriers-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 44px;
}

.qm-carriers-row img {
  display: block;
  width: auto;
  height: 38px;
  max-width: 160px;
  object-fit: contain;
}

/* BCBS is a much wider lockup than the others, so give it a little more room
   rather than shrinking it to illegibility. */
.qm-carriers-row img.qm-carrier-bcbs {
  height: 32px;
  max-width: 175px;
}

@media (max-width: 767px) {
  .qm-carriers {
    padding: 28px 16px;
  }

  .qm-carriers-row {
    gap: 22px 28px;
  }

  .qm-carriers-row img {
    height: 28px;
    max-width: 120px;
  }

  .qm-carriers-row img.qm-carrier-bcbs {
    height: 24px;
    max-width: 132px;
  }
}
