/*

// 1.1 Desktop
@include media-breakpoint-up(ls) {
    // desktop styles | 1024px and up
}

// 1.2 Mobile
@include media-breakpoint-down(md) {
    // mobile styles | 1023.98px and down
}

//
// 2. Wide mobile view (used in Global Header)
//

// 2.1 Desktop
@include media-breakpoint-up(lg) {
    // desktop styles | 1200px and up
}

// 2.2 Mobile
@include media-breakpoint-down(ls) {
    // mobile styles | 1200px and down
}

*/
/*
 * Set up a screen-wide ::before element behind its parent, to apply a colored background on a block.
 *
 * Usage :
 * .block {
 *    @include full-screen-background;
 *
 *    position: relative;
 * }
 */
/*
Usage

.block {
    @include arrow(right,red,5px,auto,auto,0,0,auto,-5px);

    width: 50px;
    height: 50px;
    position: relative;
}
*/
/*
Usage
    @include ratio-holder(364/300)
    Height/Width
*/
/* Mixin to cut off the rest of one-line text with dots */
/* stylelint-disable */
.editorialRichText-component h1,
.editorialRichText-component h2,
.editorialRichText-component h3,
.editorialRichText-component h4 {
  margin-bottom: 1rem; }

.editorialRichText-component ol,
.editorialRichText-component ul {
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem; }

.editorialRichText-component ol > li {
  margin-left: 0 !important; }

.editorialRichText-component ul {
  margin-bottom: 1rem;
  list-style-type: disc; }

.editorialRichText-component blockquote {
  font-size: 1.125rem; }

.editorialRichText-component p:last-child {
  margin-bottom: 0; }

.editorialRichText-component.remove-decoration a {
  text-decoration: none !important; }

.editorialRichText-component a {
  text-decoration: underline;
  color: inherit !important; }

/*# sourceMappingURL=editorialRichText.css.map*/