.layout--onecol .emphasis-block {
  max-width: 754px;
}

.layout-twocol .emphasis-block {
  width: 45%;
  gap: 5%;
}

.emphasis-block {
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 2px solid;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .emphasis-block {
    padding: 20px;
  }
}

.emphasis-block__inner {
  max-width: 100%;
  display: flex;
}

.emphasis-block__icon {
  height: 30px;
  width: 30px;
  /*  margin-right: 20px; */
  margin-left: auto;
}

.emphasis-block__text {
  max-width:800px;
  width: calc(100% - 24px);
}

.emphasis-block__title {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding-right: 6px;
}

.emphasis-block__body {
  font-size: 1.9rem;
  line-height: 2.8rem;
  font-weight: 400;
  margin: 0;
  color: #000;
}

.emphasis-block .emphasis-block__icon img {
  height: 30px;
  width: 30px;
}

/* Variants */

/* Green variant */
.emphasis-block--green {
  border: 1px solid #265D53;
  background: #F1FCF9;
  color: #12352E;
}

.emphasis-block--green .emphasis-block__icon img {
  /* Filter to change color to #12352E (green) */
  filter: brightness(0) saturate(100%) invert(18%) sepia(17%) saturate(2453%) hue-rotate(128deg) brightness(95%) contrast(93%);
}

/* Red variant */
.emphasis-block--red {
  border: 1px solid #97152A;
  background: #FEF7F7;
}

.emphasis-block--red .emphasis-block__title {
  color: #821023;
}

.emphasis-block--red .emphasis-block__icon img {
  /* Filter to change color to #821023 (red) */
  filter: brightness(0) saturate(100%) invert(11%) sepia(81%) saturate(1897%) hue-rotate(338deg) brightness(93%) contrast(101%);
}

/* Grey variant */
.emphasis-block--grey {
  border: 1px solid #4D5355;
  background: #F2F4F4;
  color: #000;
}

.emphasis-block--grey .emphasis-block__icon img {
  /* Filter to change color to #000000 (black) */
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}