/**
 SASS files that don't get compiled into CSS. Do not put element selectors in here.
 Every file not starting with '_' should import this file if you want to use functions and mixins.
 */
/**
 * SASS variables
 *
 These are only used in the properties and abstract SASS files.
 */
/**
 Breakpoints and columns
 */
/**
 Text
 */
/**
Fill in the header styles, only write the properties you want to override.
 */
/**
 Form
 */
/**
  Buttons
 */
/**
 Breakpoints

 @param {Keyword} $breakpoint - The breakpoint name of the minimum width. Can be any of the names in the $breakpoint variable
 */
/**
  Custom column size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size in columns or 'expand'/'shrink'.
  @param {number} $total - the total size in columns. Ignored when size is 'expand'/'shrink'
 */
/**
  Custom offset size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size of the offset.
  @param {number} $total - the total size in columns.
  @param {string} - the side from the offset.
 */
.paragraph--type--text-blocks {
  max-width: var(--row-width);
  margin-left: auto;
  margin-right: auto;
}
.paragraph--type--text-blocks.has-background {
  background-color: var(--secondary-color);
  --text-color: var(--white);
  --title-color: var(--white);
  padding: 50px 0px;
  border-radius: 32px;
}
@media (min-width: 992px) {
  .paragraph--type--text-blocks.has-background {
    padding: 100px 0px;
  }
}
@media (min-width: 992px) {
  .paragraph--type--text-blocks.has-background .h-general-body ul li {
    font-size: 1.25rem;
  }
  .paragraph--type--text-blocks.has-background .h-general-body ul li::before {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
}
.paragraph--type--text-blocks.paragraph--view-mode--default .field--name-field-text-blocks {
  grid-column: 3/-3;
}
@media (min-width: 992px) {
  .paragraph--type--text-blocks.paragraph--view-mode--default .field--name-field-text-blocks {
    grid-column: 4/-4;
  }
}
@media (min-width: 1200px) {
  .paragraph--type--text-blocks.paragraph--view-mode--default .field--name-field-text-blocks {
    grid-column: 6/-6;
  }
}
.paragraph--type--text-blocks.paragraph--view-mode--default .field--name-field-text-blocks > .field__items > .field__item {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .paragraph--type--text-blocks.paragraph--view-mode--default .field--name-field-text-blocks > .field__items > .field__item p, .paragraph--type--text-blocks.paragraph--view-mode--default .field--name-field-text-blocks > .field__items > .field__item .field__item {
    font-size: 1.5rem;
    line-height: 38px;
  }
}
.paragraph--type--text-blocks.paragraph--view-mode--default .field--name-field-text-blocks > .field__items > .field__item h3 {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .paragraph--type--text-blocks.paragraph--view-mode--default .field--name-field-text-blocks > .field__items > .field__item h3 p {
    font-size: 2.25rem;
    margin-bottom: 25px;
  }
}
.paragraph--type--text-blocks.paragraph--view-mode--col-2 .field--name-field-text-blocks {
  grid-column: 3/-3;
}
@media (min-width: 992px) {
  .paragraph--type--text-blocks.paragraph--view-mode--col-2 .field--name-field-text-blocks {
    grid-column: 4/-4;
  }
}
@media (min-width: 1200px) {
  .paragraph--type--text-blocks.paragraph--view-mode--col-2 .field--name-field-text-blocks {
    grid-column: 5/-5;
  }
}
@media (min-width: 1200px) {
  .paragraph--type--text-blocks.paragraph--view-mode--col-2 .field--name-field-text-blocks > .field__items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 24px;
  }
}
.paragraph--type--text-blocks.paragraph--view-mode--col-2 .field--name-field-text-blocks > .field__items > .field__item {
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .paragraph--type--text-blocks.paragraph--view-mode--col-2 .field--name-field-text-blocks > .field__items > .field__item {
    width: calc(50% - 12px);
  }
}
