/*!***************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/list/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ============================================================
   ITU List — frontend styles
   ============================================================ */
ul.br-list,
ol.br-list {
  list-style: none;
  margin: 1em 0;
  padding-left: 1.5em;
  counter-reset: br-list-counter var(--br-list-start, 0);
}

.br-list-item {
  list-style: none;
  margin: 0.25em 0;
  counter-increment: br-list-counter;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "marker content" ".      nested";
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  align-items: baseline;
}

.br-list-item > .br-list-item__content {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: content;
  overflow-wrap: break-word;
  min-width: 0;
}

.br-list-item::before {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: marker;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  min-width: 1.5em;
}

.br-list-item__nested {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: nested;
  margin-left: 1em;
  margin-top: 0.25em;
}

.br-list-item__nested:empty {
  display: none;
}

/* ── Bullets ─────────────────────────────────────────────── */
.br-list--disc > .br-list-item::before {
  content: "•";
}

.br-list--circle > .br-list-item::before {
  content: "◦";
}

.br-list--square > .br-list-item::before {
  content: "▪";
}

/* ── Decimal ─────────────────────────────────────────────── */
.br-list--decimal > .br-list-item::before {
  content: counter(br-list-counter) ".";
}

.br-list--decimal-paren > .br-list-item::before {
  content: counter(br-list-counter) ")";
}

.br-list--decimal-bare > .br-list-item::before {
  content: counter(br-list-counter);
}

.br-list--decimal-leading-zero > .br-list-item::before {
  content: counter(br-list-counter, decimal-leading-zero) ".";
}

/* ── Lowercase letters ───────────────────────────────────── */
.br-list--lower-alpha > .br-list-item::before {
  content: counter(br-list-counter, lower-alpha) ")";
}

.br-list--lower-alpha-period > .br-list-item::before {
  content: counter(br-list-counter, lower-alpha) ".";
}

.br-list--lower-alpha-bare > .br-list-item::before {
  content: counter(br-list-counter, lower-alpha);
}

/* ── Uppercase letters ───────────────────────────────────── */
.br-list--upper-alpha > .br-list-item::before {
  content: counter(br-list-counter, upper-alpha) ")";
}

.br-list--upper-alpha-period > .br-list-item::before {
  content: counter(br-list-counter, upper-alpha) ".";
}

.br-list--upper-alpha-bare > .br-list-item::before {
  content: counter(br-list-counter, upper-alpha);
}

/* ── Lowercase roman ─────────────────────────────────────── */
.br-list--lower-roman > .br-list-item::before {
  content: counter(br-list-counter, lower-roman) ".";
}

.br-list--lower-roman-paren > .br-list-item::before {
  content: counter(br-list-counter, lower-roman) ")";
}

.br-list--lower-roman-bare > .br-list-item::before {
  content: counter(br-list-counter, lower-roman);
}

/* ── Uppercase roman ─────────────────────────────────────── */
.br-list--upper-roman > .br-list-item::before {
  content: counter(br-list-counter, upper-roman) ".";
}

.br-list--upper-roman-paren > .br-list-item::before {
  content: counter(br-list-counter, upper-roman) ")";
}

.br-list--upper-roman-bare > .br-list-item::before {
  content: counter(br-list-counter, upper-roman);
}

/* ── Custom (prefix + n + suffix) ────────────────────────── */
.br-list--custom > .br-list-item::before {
  content: var(--br-list-prefix, "") counter(br-list-counter) var(--br-list-suffix, ".");
  min-width: auto;
  padding-right: 0.25em;
}

/* ── Per-item marker override ────────────────────────────── */
.br-list-item[data-custom-marker]:not([data-custom-marker=""])::before {
  content: attr(data-custom-marker);
  min-width: auto;
  padding-right: 0.25em;
}

/* ── Bold options ────────────────────────────────────────── */
.br-list--bold-all > .br-list-item,
.br-list--bold-all > .br-list-item::before {
  font-weight: 700;
}

.br-list--bold-marker > .br-list-item::before {
  font-weight: 700;
}

.br-list-item--bold,
.br-list-item--bold::before {
  font-weight: 700;
}

/*# sourceMappingURL=style-index.css.map*/