/**
 * breakpoints
*/
/*
@mixin media-breakpoint-desktop() {
    @media screen and (min-width: 768px){
        @content;
    }
}

@mixin media-breakpoint-mobile() {
    @media screen and (max-width: 768px){
        @content;
    }
}
*/
section.block.block-texte-et-image {
  padding: 0;
  margin: 20px;
  /*
      &:first-child {
          margin-top: 80px;
      }*/
}
section.block.block-texte-et-image:last-of-type {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  section.block.block-texte-et-image:last-of-type {
    margin-bottom: 80px;
  }
}
section.block.block-texte-et-image .row {
  position: relative;
  z-index: 1;
}
section.block.block-texte-et-image .row:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  section.block.block-texte-et-image .row.row-inverted > div:first-child {
    order: 2;
  }
  section.block.block-texte-et-image .row.row-inverted > div:last-child {
    order: 1;
  }
}
section.block.block-texte-et-image .row .image {
  height: auto;
  display: block;
  border-radius: 2px;
  max-height: 275px;
}
@media screen and (min-width: 992px) {
  section.block.block-texte-et-image .row .image {
    max-height: 60vw;
  }
}
section.block.block-texte-et-image .row .texte {
  border-radius: 4px;
  border: 1px solid var(--gris-300);
  background-color: var(--light);
  flex: 1;
  padding: 20px;
  color: var(--gris-700);
}
@media screen and (min-width: 992px) {
  section.block.block-texte-et-image .row .texte {
    padding: 60px;
  }
}
section.block.block-texte-et-image .row .texte h3 {
  margin-bottom: 12px;
}
@media screen and (min-width: 992px) {
  section.block.block-texte-et-image .row .texte h3 {
    font-size: 26px;
  }
}
section.block.block-texte-et-image .row .texte .button {
  margin-top: 30px;
  font-size: 16px;
  line-height: normal;
}