.view--id-enrollment-training-modules {
  background: #FFFFFF;
  border: 1px solid #CBCACA;
  margin-bottom: 40px;

  >header>h2 {
    color: #E85000;
    font: 800 24px/1 Manrope,sans-serif;
    margin: 0;
    padding: 20px 25px;
  }


  >details {
    padding: 20px 25px;
  
    >summary {
      color: #333;
      cursor: pointer;
      font: 500 24px / 1 "Mercury Text G1", serif;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
  
      >h3 {
        margin: 0;
        font: inherit;
      }
  
      &::after {
        content: url(/themes/custom/gozero/images/caret-right.svg);
        height: 33.5px;
      }
    }
  
    &[open]>summary {
      margin-bottom: 20px;
      
      &::after {
        content: url(/themes/custom/gozero/images/caret-down.svg);
      }
    }
  
    >div {
      display: flex;
      flex-direction: column;
      gap: 4px;

      >h4 {
        font: 800 18px/1 Manrope,sans-serif;
        margin-block: 20px 0;

        &:first-child {
          margin-block: 0;
        }
      }
    }
  }
}