.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px;

  margin: 40px 0;
}

.pros-cons__box {
  position: relative;

  padding: 26px 28px;

  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 62%), var(--card);
  border: 1px solid #2a3443;
  border-radius: 16px;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pros-cons__box:hover {
  transform: translateY(-2px);

  border-color: rgba(255, 54, 125, 0.24);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.pros-cons__title {
  display: flex;
  align-items: center;
  gap: 11px;

  margin: 0 0 22px;
  padding-bottom: 18px;

  color: #f6f8fb;

  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;

  border-bottom: 1px solid #2a3443;
}

.pros-cons__title::before {
  content: '';

  flex: 0 0 auto;

  width: 8px;
  height: 8px;

  border-radius: 50%;
}

.pros-cons__box--pros .pros-cons__title::before {
  background: #24c69a;

  box-shadow: 0 0 0 5px rgba(36, 198, 154, 0.1);
}

.pros-cons__box--cons .pros-cons__title::before {
  background: #ed6874;

  box-shadow: 0 0 0 5px rgba(237, 104, 116, 0.1);
}

.pros-cons__box ul {
  display: grid;
  gap: 14px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.pros-cons__box li {
  position: relative;

  margin: 0;
  padding-left: 30px;

  color: #b6c1cf;

  font-size: 15px;
  line-height: 1.6;
}

.pros-cons__box li::before {
  position: absolute;
  top: 2px;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  border-radius: 5px;

  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.pros-cons__box--pros li::before {
  content: '✓';

  color: #29d3a5;
  background: rgba(36, 198, 154, 0.1);
  border: 1px solid rgba(36, 198, 154, 0.24);
}

.pros-cons__box--cons li::before {
  content: '−';

  color: #f07882;
  background: rgba(237, 104, 116, 0.1);
  border: 1px solid rgba(237, 104, 116, 0.24);
}

@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
    gap: 16px;

    margin: 32px 0;
  }

  .pros-cons__box {
    padding: 23px 20px;
    border-radius: 15px;
  }

  .pros-cons__title {
    margin-bottom: 19px;
    padding-bottom: 16px;

    font-size: 21px;
  }

  .pros-cons__box li {
    padding-left: 28px;

    font-size: 14px;
  }
}
