/**
 * kickedomnibus — neutral styling and the theme contract.
 *
 * Ships inside the `kickedomnibus` cascade layer: unlayered theme CSS
 * outranks layered CSS unconditionally, so a host theme skins the module by
 * setting the custom properties from an unlayered rule — never by overriding
 * selectors.
 *
 *   --kob-ink    the line's text colour
 *   --kob-size   font size of the full line (product sheet)
 *
 * @copyright Kicked SRL
 * @license   AFL-3.0
 */

@layer kickedomnibus {
  .kicked-omnibus {
    --kob-ink: #6d675e;
    --kob-size: 0.8125rem;

    display: block;
    margin-block-start: 0.25rem;
    font-size: var(--kob-size);
    font-weight: 400;
    line-height: 1.4;
    color: var(--kob-ink);
  }
}
