/*---------------------- two-column-tx start ----------------------*/

.two-col-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100%, auto));
  grid-gap: 3rem;
  gap: 3rem;
}

.two-col article h3 {
  color: #9c3587;
  color: var(--purple-brite);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.two-col article ul{
  padding-left: 1.3rem;
  padding-bottom: 1rem;
}

.two-col article ul li{
  list-style: disc;
  padding-bottom: .8rem;
}
.two-col article ul li:last-child{
  padding-bottom:0;
}

@media only screen and (min-width: 992px) {
  .two-col-wrap {
    grid-template-columns: repeat(auto-fill, minmax(40%, auto));
    gap: 10%;
  }
}

/*---------------------- two-column-tx end ----------------------*/
