.Infobox {
  padding: 20px 15px;
}.Infobox.hasToggle .Infobox-title {
      position: relative;
      margin-bottom: 0;
    }.Infobox.hasToggle .Infobox-title:hover {
        cursor: pointer;
      }.Infobox.hasToggle .Infobox-title i {
        position: absolute;
        top: 46%;
        right: 0;
        color: var(--clr-primary);
        transition: 0.2s transform;
      }.Infobox.hasToggle {

    .neos-contentcollection {
      overflow: hidden;
      max-height: 0;
      transform: scaleY(0);
      transform-origin: top;
      transition: 0.2s all;
    }
  }.Infobox.hasToggle.is-Active .Infobox-title {
        margin-bottom: 20px;
      }.Infobox.hasToggle.is-Active {

      .neos-contentcollection {
        overflow: visible;
        max-height: 100vh;
        transform: scaleY(1);
        transition: 0.2s all;
      }
    }.Infobox.hasToggle.is-Active i {
        transform: rotate(180deg);
        transition: 0.2s transform;
      }

.Infobox-title {
  margin: 0 0 20px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  text-transform: uppercase;
}

.Infobox-title::before {
    content: '';
    display: block;
    width: 70px;
    height: 10px;
    margin-bottom: 10px;
    background-color: var(--clr-primary);
  }
