section.solve-block-overview {
  margin: 4rem 0;
  color: var(--primary);
}
section.solve-block-overview .key-features {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.solve-block-overview .key-features > div {
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
section.solve-block-overview .key-features > div > p {
  margin: 0;
}
section.solve-block-overview .key-features > div svg {
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
}
section.solve-block-overview .container .page-details {
  max-width: 100ch;
}
section.solve-block-overview .container .page-details > #content {
  overflow: hidden;
  max-height: 10rem;
  -webkit-transition: max-height 1s cubic-bezier(0, 1, 0, 1);
  transition: max-height 1s cubic-bezier(0, 1, 0, 1);
  position: relative;
  margin-top: 1rem;
}
section.solve-block-overview .container .page-details > #content > p:first-of-type {
  margin-top: 0;
}
section.solve-block-overview .container .page-details > #content .fade {
  max-height: 10rem;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--white)));
  background: linear-gradient(transparent, var(--white));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: 500ms ease-out;
  transition: 500ms ease-out;
}
section.solve-block-overview .container .page-details > #content.short {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}
section.solve-block-overview .container .page-details > #content.short .fade {
  display: none;
}
section.solve-block-overview .container .page-details.short #content {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}
section.solve-block-overview .container .page-details.short #content .fade {
  display: none;
}
section.solve-block-overview .container .page-details.short #read-more {
  display: none;
}
section.solve-block-overview .container .page-details #read-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin: 0;
}
section.solve-block-overview .container .page-details #read-more:before {
  content: "";
  -webkit-mask: url("../../assets/icons/plus.svg") no-repeat 50% 50%;
  mask: url("../../assets/icons/plus.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: currentColor;
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  -webkit-transition: -webkit-transform var(--transition) ease-in;
  transition: -webkit-transform var(--transition) ease-in;
  transition: transform var(--transition) ease-in;
  transition: transform var(--transition) ease-in, -webkit-transform var(--transition) ease-in;
}
section.solve-block-overview .container .page-details #read-more[aria-expanded=true]::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
section.solve-block-overview .container .page-details > #content[aria-hidden=false] {
  -webkit-transition: max-height 1s ease-in;
  transition: max-height 1s ease-in;
}
section.solve-block-overview .container .page-details > #content[aria-hidden=false] .fade {
  max-height: 0;
  -webkit-transition: 500ms ease-in;
  transition: 500ms ease-in;
}
@media (min-width: 768px) {
  section.solve-block-overview .key-features {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: var(--gap-large);
  }
}
section.solve-block-overview.wp-admin-editor .key-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
section.solve-block-overview.wp-admin-editor .key-features > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}