/* Key Takeaways Box */

.key-takeaways {
  background: #eaf6fc;
  border: 1px solid #c8e4f2;
  border-left: 5px solid #159bd3;
  border-radius: 10px;
  padding: 28px 32px;
  margin: 30px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Heading */

.key-takeaways h2,
.key-takeaways h3 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 20px;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  color: #245b78;
}

/* Small blue line beside heading */

.key-takeaways h2::before,
.key-takeaways h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 32px;
  background: #159bd3;
  border-radius: 2px;
}

/* Bullet list */

.key-takeaways ul {
  margin: 0;
  padding-left: 27px;
}

/* Bullet items */

.key-takeaways li {
  margin-bottom: 14px;
  padding-left: 3px;
  font-size: 16px;
  line-height: 1.65;
  color: #3d4650;
}

/* Remove extra space after final bullet */

.key-takeaways li:last-child {
  margin-bottom: 0;
}

/* Bullet color */

.key-takeaways li::marker {
  color: #159bd3;
}

/* Mobile */

@media (max-width: 768px) {
  .key-takeaways {
    padding: 22px 20px;
  }

  .key-takeaways h2,
  .key-takeaways h3 {
    font-size: 21px;
    margin-bottom: 20px;
  }

  .key-takeaways li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
}