.pros-cons-wrapper {
  border-bottom: 1px solid #ccc;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.pros-cons-wrapper h2 {
  width: 50%;
}
.pros-cons-wrapper h3 {
  grid-column: span 2;
}

.pros-title,
.cons-title {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
/* RESPONSIVE */
@media screen and (min-width: 1300px) {

}
@media screen and (max-width: 1300px) {

}
@media screen and (max-width: 1023px) {
  .pros-cons-wrapper {
    grid-template-columns: 1fr
  }
  .pros-cons-wrapper h3 {
    grid-column: span 1;
  }
}
@media screen and (max-width: 800px) {

}
@media screen and (max-width: 600px) {

}