/* ============================================================================
   /brand/ — the brand book.

   Page-scoped. Loaded only where front matter sets `extra_css: "css/brand.css"`,
   which today is content/brand/_index.md and nothing else. It leans on the tokens
   and the .btn / .section / .container classes in main.css, so a change to the
   palette or the container width lands here for free. Everything it adds is
   prefixed `bb-` so it can never collide with a marketing page.
   ============================================================================ */

/* ---- Hero ---------------------------------------------------------------- */
.bb-hero {
  padding-bottom: clamp(32px, 4vw, 48px);
}

.bb-hero h1 {
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
}

.bb-eyebrow,
.bb-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 16px;
}

.bb-label--light { color: rgba(255, 255, 255, 0.45); }

.bb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.bb-hero-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  color: var(--color-text-tertiary);
}

/* ---- Chip nav ------------------------------------------------------------ */
.bb-toc {
  position: sticky;
  top: 52px;                                  /* clears the 52px site header */
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.bb-toc ul {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.bb-toc ul::-webkit-scrollbar { display: none; }

.bb-toc a {
  display: block;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 6px 14px;
  border-radius: 980px;
  border: 1px solid var(--color-border-light);
}

.bb-toc a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--color-black);
  border-color: var(--color-black);
}

/* Anchor targets sit under two sticky bars. */
.section[id] { scroll-margin-top: 110px; }

/* ---- Shared section furniture ------------------------------------------- */
.bb-h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
  max-width: 20ch;
}

.bb-h3 {
  font-size: clamp(19px, 2.2vw, 23px);
  margin: 56px 0 20px;
}

.bb-h3--light { color: #fff; }

.bb-lede {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--color-text-secondary);
  line-height: 1.5;
  max-width: 62ch;
}

.bb-lede--light { color: rgba(255, 255, 255, 0.7); }

.bb-note {
  font-size: 14px;
  color: var(--color-text-tertiary);
  margin-top: 12px;
  max-width: 62ch;
}

.bb-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0;
}

.bb-quiet { color: var(--color-text-tertiary); }
.bb-wrap { word-break: break-word; }

/* ---- Rule lists ---------------------------------------------------------- */
.bb-rules {
  max-width: 78ch;
  margin-top: 8px;
}

.bb-rules li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-top: 1px solid var(--color-border-light);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.bb-rules li:last-child { border-bottom: 1px solid var(--color-border-light); }

.bb-rules li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-black);
}

.bb-rules--light li {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.bb-rules--light li:last-child { border-bottom-color: rgba(255, 255, 255, 0.08); }
.bb-rules--light li::before { background: rgba(255, 255, 255, 0.5); }

.bb-rules--check li::before { background: var(--color-green); }
.bb-rules--warn li::before { background: var(--color-red); }

.bb-ordered {
  counter-reset: bb;
  max-width: 78ch;
}

.bb-ordered li {
  counter-increment: bb;
  position: relative;
  padding: 14px 0 14px 40px;
  border-top: 1px solid var(--color-border-light);
  font-size: 16px;
  color: var(--color-text-secondary);
}

.bb-ordered li:last-child { border-bottom: 1px solid var(--color-border-light); }

.bb-ordered li::before {
  content: counter(bb);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-text-tertiary);
}

/* ---- Pillar / pattern cards ---------------------------------------------- */
.bb-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.bb-pillar {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 28px 24px;
}

.bb-pillar h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.bb-pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ---- Company facts strip ------------------------------------------------- */
.bb-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-light);
}

.bb-facts div {
  font-size: 15px;
  color: var(--color-text);
}

.bb-facts span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 6px;
}

/* ---- Logo ---------------------------------------------------------------- */
.bb-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bb-logo-tile {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.bb-logo-tile img {
  width: 96px;
  height: 96px;
  margin: 56px auto 40px;
  object-fit: contain;
}

.bb-logo-tile figcaption {
  font-size: 13px;
  text-align: center;
  padding: 12px;
  border-top: 1px solid var(--color-border-light);
  color: var(--color-text-tertiary);
}

.bb-logo-tile--light { background: #fff; }

.bb-logo-tile--dark {
  background: var(--color-black);
  border-color: var(--color-black);
}

.bb-logo-tile--dark figcaption {
  color: rgba(255, 255, 255, 0.5);
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* The mark has to survive on top of a photograph, so show it that way rather
   than claiming it works. Overlay matches the 55-78% hero treatment. */
.bb-logo-tile--photo {
  background:
    linear-gradient(rgba(35, 31, 32, 0.62), rgba(35, 31, 32, 0.62)),
    url("/images/labelle_river.jpeg") center / cover no-repeat;
  border-color: transparent;
}

.bb-logo-tile--photo figcaption {
  color: rgba(255, 255, 255, 0.75);
  border-top-color: rgba(255, 255, 255, 0.2);
  background: rgba(35, 31, 32, 0.4);
}

/* ---- Download cards ------------------------------------------------------ */
.bb-downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.bb-download {
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 22px;
  color: var(--color-text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.bb-download:hover {
  text-decoration: none;
  border-color: var(--color-black);
  transform: translateY(-2px);
}

.bb-download-name {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 6px;
}

.bb-download-note {
  display: block;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.bb-download-file {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--color-blue);
}

/* ---- Color swatches ------------------------------------------------------ */
.bb-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bb-swatch-chip {
  height: 132px;
  border-radius: 20px;
}

.bb-swatch-chip--bordered { border: 1px solid var(--color-border); }

.bb-swatch-meta { padding: 16px 2px 0; }

.bb-swatch-meta h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.bb-swatch-meta p { margin-bottom: 2px; }

.bb-swatch-role {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-top: 10px;
}

.bb-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: baseline;
  border: 1px solid rgba(35, 31, 32, 0.15);
}

/* ---- Tables -------------------------------------------------------------- */
.bb-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  -webkit-overflow-scrolling: touch;
}

.bb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 560px;
}

.bb-table th {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  text-align: left;
  padding: 0 16px 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.bb-table td {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
  vertical-align: top;
  line-height: 1.5;
}

.bb-table td:first-child { color: var(--color-text); }

.bb-table-group td {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  padding-top: 26px;
  border-bottom-color: var(--color-border);
}

/* ---- Type specimens ------------------------------------------------------ */
.bb-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bb-type-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 28px;
}

.bb-type-specimen {
  font-size: 92px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--color-black);
}

.bb-type-specimen--display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

.bb-type-specimen--body {
  font-family: var(--font-body);
  font-weight: 400;
}

.bb-type-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.bb-type-alpha {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-tertiary);
  word-break: break-all;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
}

.bb-type-alpha--display {
  font-family: var(--font-display);
  font-weight: 700;
}

.bb-deflist {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px 16px;
  margin-top: 20px;
  font-size: 14px;
}

.bb-deflist dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  padding-top: 2px;
}

.bb-deflist dd { color: var(--color-text-secondary); line-height: 1.5; }

.bb-license {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-tertiary);
}

/* ---- Page rhythm diagram ------------------------------------------------- */
.bb-rhythm {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  max-width: 560px;
}

.bb-rhythm-bar {
  font-size: 13px;
  font-weight: 500;
  padding: 20px 22px;
}

.bb-rhythm-bar--white { background: #fff; color: var(--color-text-secondary); border-bottom: 1px solid var(--color-border-light); }
.bb-rhythm-bar--tint { background: var(--color-bg-secondary); color: var(--color-text-secondary); }
.bb-rhythm-bar--dark { background: var(--color-black); color: rgba(255, 255, 255, 0.7); }
.bb-rhythm-bar--photo {
  background:
    linear-gradient(rgba(35, 31, 32, 0.55), rgba(35, 31, 32, 0.55)),
    url("/images/labelle_mainst.jpeg") center / cover no-repeat;
  color: #fff;
}

/* ---- Button demo --------------------------------------------------------- */
.bb-btn-demo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
}

.bb-btn-demo--dark {
  margin-top: 16px;
  background: var(--color-black);
  border-color: var(--color-black);
}

/* The demo buttons are spans, not links. Give them the pointer anyway so the row
   reads as a set of buttons rather than a row of labels. */
.bb-btn-demo .btn { cursor: default; }

/* ---- Voice --------------------------------------------------------------- */
.bb-banned {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 24px;
}

.bb-banned-item {
  background: var(--color-black);
  padding: 24px 22px;
}

.bb-banned-word {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 8px;
  text-decoration: line-through;
  text-decoration-color: var(--color-red);
  text-decoration-thickness: 3px;
}

.bb-banned-why {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.bb-lines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.bb-lines li {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: var(--tracking-tight);
  color: #fff;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.bb-compare { margin-top: 24px; }

.bb-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bb-compare-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.bb-compare-bad,
.bb-compare-good {
  font-size: 15px;
  line-height: 1.6;
}

.bb-compare-bad { color: rgba(255, 255, 255, 0.4); }
.bb-compare-good { color: #fff; }

.bb-compare-bad span,
.bb-compare-good span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bb-compare-bad span { color: var(--color-red); }
.bb-compare-good span { color: var(--color-green); }

/* ---- Claims -------------------------------------------------------------- */
.bb-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px 48px;
  margin-top: 8px;
}

.bb-two-col .bb-h3:first-child { margin-top: 32px; }

/* ---- Gallery ------------------------------------------------------------- */
.bb-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.bb-gallery-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border-light);
}

.bb-gallery-item:hover { text-decoration: none; }

.bb-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bb-gallery-caption {
  display: block;
  font-size: 13px;
  color: var(--color-text);
  padding: 12px 14px;
}

.bb-gallery-caption em {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-top: 4px;
}

/* ---- Prompt block -------------------------------------------------------- */
.bb-prompt {
  margin-top: 20px;
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 26px;
  overflow-x: auto;
}

.bb-prompt code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre;
}

/* ---- Closing ------------------------------------------------------------- */
.bb-close { text-align: center; }
.bb-close .bb-h2 { max-width: none; }
.bb-close .bb-lede { margin: 0 auto; }
.bb-close a { color: #fff; text-decoration: underline; }

/* ---- Small screens ------------------------------------------------------- */
@media (max-width: 640px) {
  .bb-compare-row { grid-template-columns: 1fr; gap: 16px; }
  .bb-type-specimen { font-size: 68px; }
  .bb-deflist { grid-template-columns: 1fr; gap: 4px 0; }
  .bb-deflist dd { margin-bottom: 10px; }
  .bb-toc { top: 0; }
}


/* ============================================================================
   SECOND PASS: badge lockups, clear space, misuse, contrast, copyable swatches
   ============================================================================ */

/* Caption for the button row. It needs real air above it, otherwise it reads as a
   line of body copy that collided with the buttons rather than a note about them. */
.bb-hero-kit {
  margin-top: 22px;
  font-size: 14px;
  color: var(--color-text-tertiary);
}

/* ---- Logo tiles ---------------------------------------------------------- */
/* A second photograph so the two photo tiles are not the same picture twice.
   The imagery rules on this very page say not to reuse an image. */
.bb-logo-tile--photo-alt {
  background:
    linear-gradient(rgba(35, 31, 32, 0.74), rgba(35, 31, 32, 0.74)),
    url("/images/labelle_mainst.jpeg") center / cover no-repeat;
}

/* ---- Clear space and minimum size --------------------------------------- */
.bb-logo-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.bb-clearspace,
.bb-minsize {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 28px;
}

/* The dashed frame IS the rule: its padding equals the height of the underscore
   bar at this render size, so the diagram cannot disagree with the text. */
.bb-clearspace-box {
  width: 128px;
  margin: 12px auto 24px;
  padding: 14px;
  border: 1px dashed var(--color-blue);
  border-radius: 4px;
}

.bb-clearspace-box img {
  width: 100px;
  height: 100px;
}

.bb-minsize-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  height: 128px;
  margin: 12px 0 24px;
}

.bb-clearspace figcaption,
.bb-minsize figcaption {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  text-align: center;
}

.bb-clearspace figcaption strong,
.bb-minsize figcaption strong {
  color: var(--color-text);
}

/* ---- Misuse row ---------------------------------------------------------- */
.bb-misuse {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.bb-misuse-item {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  overflow: hidden;
}

.bb-misuse-stage {
  position: relative;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bb-misuse-stage img {
  width: 64px;
  height: 64px;
}

/* One red mark per tile so the row reads as a list of prohibitions at a glance. */
.bb-misuse-stage::before {
  content: "✕";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-red);
}

.bb-misuse-item--1 img { transform: scaleX(1.75); }
.bb-misuse-item--2 img { transform: rotate(-16deg); }
.bb-misuse-item--3 img { filter: brightness(0) saturate(100%) invert(58%) sepia(31%) saturate(688%) hue-rotate(169deg) brightness(92%) contrast(88%); }
.bb-misuse-item--4 img { filter: drop-shadow(0 8px 6px rgba(35, 31, 32, 0.55)); }

.bb-misuse-item--5 .bb-misuse-stage {
  background: var(--color-red);
}

.bb-misuse-item--5 img {
  filter: invert(1);
  background: transparent;
}

.bb-misuse-item--5 .bb-misuse-stage::before { color: #fff; }

/* Short word on purpose: a long one ran off the tile and clipped, which read as a
   bug rather than as the crowding it is demonstrating. */
.bb-misuse-item--6 .bb-misuse-stage::after {
  content: "LaBelle";
  position: absolute;
  left: 50%;
  margin-left: 28px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
}

.bb-misuse-item figcaption {
  padding: 14px 16px 18px;
  border-top: 1px solid var(--color-border-light);
}

.bb-misuse-label {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 5px;
}

.bb-misuse-why {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* ---- Download card group tag -------------------------------------------- */
.bb-download-group {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  border: 1px solid var(--color-border-light);
  border-radius: 980px;
  padding: 3px 9px;
  margin-bottom: 10px;
}

/* ---- Contrast table ------------------------------------------------------ */
.bb-nowrap { white-space: nowrap; }

.bb-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 980px;
  white-space: nowrap;
}

.bb-badge--aaa { background: rgba(74, 140, 92, 0.14); color: #2F6B3F; }
.bb-badge--aa { background: rgba(74, 140, 92, 0.10); color: #3E7A4E; }
.bb-badge--warn { background: rgba(192, 138, 48, 0.16); color: #8A5F12; }

/* ---- Copyable swatches --------------------------------------------------- */
.bb-swatch-chip {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.bb-swatch-copy {
  position: absolute;
  inset: auto 10px 10px auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(35, 31, 32, 0.55);
  border-radius: 980px;
  padding: 4px 10px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.bb-swatch-chip:hover .bb-swatch-copy,
.bb-swatch-chip:focus-visible .bb-swatch-copy { opacity: 1; }

.bb-swatch-chip--bordered .bb-swatch-copy { background: rgba(35, 31, 32, 0.75); }

.bb-swatch-chip.is-copied .bb-swatch-copy {
  opacity: 1;
  background: var(--color-green);
}

.bb-swatch-chip.is-copied .bb-swatch-copy::after { content: "ed"; }

.bb-swatch-chip:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .bb-misuse-item--6 .bb-misuse-stage::after { display: none; }
}
