/* =============================================
Block - Bullet Columns
============================================= */
/* =============================================================================
Import me into 'individual' scss partials
============================================================================= */
/* =============================================================================
Functions
============================================================================= */
/* Deep-get sass map
=================================================== */
/* =============================================================================
Mixins
============================================================================= */
/* =================================================
Breakpoints
=================================================== */
/* =============================================================================
Breakpoint definition
============================================================================= */
/* =============================================================================
Config
============================================================================= */
.block-bullet-columns {
  background: var(--colors-brand-2);
}
.block-bullet-columns .tsl-heading,
.block-bullet-columns .tsl-paragraph {
  color: var(--colors-gray5);
}
@media all and (max-width: calc(649px - 1px)) {
  .block-bullet-columns__heading {
    margin-bottom: 2rem;
  }
}
@media all and (min-width: 1024px) {
  .block-bullet-columns__heading {
    position: relative;
    top: 6px;
    flex: 0 0 300px;
    padding-right: 2rem;
  }
}
@media all and (min-width: 1024px) {
  .block-bullet-columns__container {
    display: flex;
    flex-flow: row nowrap;
  }
}
@media all and (min-width: 768px) {
  .block-bullet-columns__items {
    column-count: 2;
    column-gap: 2rem;
  }
}
.block-bullet-columns__item {
  position: relative;
  display: flex;
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.block-bullet-columns__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
}
