.contentBoxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.contentBoxes .box {
  background-color: #C9E9E9;
  border-radius: 10px;
  padding: 16px;
}
.contentBoxes .box h2.title {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 0.848rem + 2.174vw, 2.5rem);
  line-height: 1.45;
  font-weight: 500;
}
.contentBoxes .box .boxcontent {
  font-size: clamp(1.125rem, 0.962rem + 0.543vw, 1.375rem);
  line-height: 1.45;
  font-weight: 300;
}
.contentBoxes .box .boxcontent P, .contentBoxes .box .boxcontent UL, .contentBoxes .box .boxcontent OL {
  margin-bottom: 19px;
}
.contentBoxes .box .boxcontent A {
  font-weight: 500;
  color: black;
}
.contentBoxes .box .boxcontent A:HOVER {
  text-decoration: none;
}
@media (min-width: 768px) {
  .contentBoxes .box {
    border-radius: 15px;
    padding: 24px 32px;
  }
}
@media (min-width: 768px) {
  .contentBoxes {
    gap: 18px;
  }
}