.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;

  margin: 40px 0;
}

.pros-cons__box {
  padding: 30px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.25s;
}

.pros-cons__box:hover {
  transform: translateY(-4px);

  /*border-color: rgba(141, 255, 46, 0.35);*/
  border-color: rgba(1, 164, 128, 0.34);

  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.pros-cons__box h2 {
  margin: 0 0 22px;

  font-size: 30px;
  font-weight: 900;
}

.pros-cons__box--pros h2 {
  color: var(--accent);
}

.pros-cons__box--cons h2 {
  color: #ff6b6b;
}

.pros-cons__box ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.pros-cons__box li {
  position: relative;

  margin-bottom: 14px;
  padding-left: 30px;

  color: var(--muted);

  line-height: 1.7;
}

.pros-cons__box--pros li::before {
  content: '✓';

  position: absolute;
  left: 0;

  color: var(--accent);

  font-weight: 900;
}

.pros-cons__box--cons li::before {
  content: '✕';

  position: absolute;
  left: 0;

  color: #ff6b6b;

  font-weight: 900;
}
.pros-cons__title {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;

  color: #fff;

  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.pros-cons__box--pros .pros-cons__title {
  color: #1ec28b;
}

.pros-cons__box--cons .pros-cons__title {
  color: #ff6767;
}

@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}
