.wp-block-regions {
  display: flex;
  flex-direction: column;
}
.wp-block-regions__region {
  width: 100%;
  background-color: #F2F2F2;
  margin: 0 auto 30px;
}
.wp-block-regions__region.is-expanded .wp-block-regions__region--title:before {
  content: "Close";
}
.wp-block-regions__region.is-expanded .wp-block-regions__region--title:after {
  transform: rotate(180deg);
}
.wp-block-regions__region.is-expanded .wp-block-regions__region--content {
  display: block;
}
.wp-block-regions__region.is-closed .wp-block-regions__region--title:before {
  content: "More Info";
}
.wp-block-regions__region.is-closed .wp-block-regions__region--content {
  display: none;
}
.wp-block-regions__region.is-first {
  order: -1;
}
.wp-block-regions__region--title {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 30px 40px;
}
@media screen and (max-width: 500px) {
  .wp-block-regions__region--title {
    gap: 10px;
  }
}
.wp-block-regions__region--title:before {
  content: "More Info";
  width: 110px;
  color: #205F2F;
  text-align: center;
  white-space: nowrap;
  order: 2;
}
@media screen and (max-width: 768px) {
  .wp-block-regions__region--title:before {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .wp-block-regions__region--title:before {
    content: none;
  }
}
.wp-block-regions__region--title h3 {
  pointer-events: none;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .wp-block-regions__region--title h3 {
    font-size: 20px;
    line-height: 25px;
  }
}
.wp-block-regions__region--title .wp-block-buttons {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .wp-block-regions__region--title .wp-block-buttons {
    display: none;
  }
}
.wp-block-regions__region--title:after {
  content: url("../../images/icons/arrow-icon.svg");
  width: 35px;
  flex: 0 0 35px;
  filter: invert(26%) sepia(85%) saturate(366%) hue-rotate(82deg) brightness(94%) contrast(92%);
  order: 3;
}
@media screen and (max-width: 500px) {
  .wp-block-regions__region--title:after {
    margin: 0 0 0 auto;
  }
}
.wp-block-regions__region--content .region-inner {
  display: flex;
  gap: 20px;
  padding: 0 40px 40px;
}
@media screen and (max-width: 768px) {
  .wp-block-regions__region--content .region-inner {
    flex-direction: column;
  }
}
.wp-block-regions__region--content .region-image {
  flex: 1 1 50%;
  text-align: center;
}
.wp-block-regions__region--content .region-image img {
  margin: 0 auto;
}
.wp-block-regions__region--content .region-details {
  flex: 1 1 50%;
}
.wp-block-regions__region--content .region-details hr {
  border: none;
  background-color: black;
  width: 100%;
  height: 1px;
  margin: 30px auto;
}
