.cfa-study-notes-features-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.cfa-study-notes-features-header {
  text-align: center;
  margin-bottom: 40px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.7s;
  animation-duration: 0.7s;
}

.cfa-study-notes-features-title {
  font-size: 48px;
  line-height: 1;
  color: #020b36;
  font-weight: 500;
  margin-bottom: 16px;
}

.cfa-study-notes-features-text {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.cfa-study-notes-features-text p {
  font-size: 20px;
  line-height: 28px;
  color: #52587a;
  margin-bottom: 16px;
}

.cfa-study-notes-features-text p:last-child {
  margin-bottom: 0;
}

.cfa-study-notes-features-bottom {
  text-align: center;
  margin-top: 40px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.7s;
  animation-duration: 0.7s;
}

.cfa-study-notes-features {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}

.cfa-study-notes-feature {
  border-radius: 16px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  color: #020b36;
  background-color: #fff;
  border: 1px solid #dadee7;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  animation-duration: 0.3s;
  padding: 24px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
}

.cfa-study-notes-feature:hover {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-color: hsl(208 98% 48% / 0.5);
}

.cfa-study-notes-feature__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cfa-study-notes-feature__icon {
  background-color: hsl(208 98% 48% / 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.cfa-study-notes-feature__icon svg {
  color: #0282f2;
  width: 20px;
  height: 20px;
}

.cfa-study-notes-feature__title {
  color: #020b36;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.cfa-study-notes-feature__text {
  color: #52587a;
  line-height: 1.625;
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .cfa-study-notes-features-title {
    font-size: 36px;
    line-height: 40px;
  }

  .cfa-study-notes-feature {
    flex: 1 1 calc(50% - 20px);
    min-width: calc(50% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .cfa-study-notes-features-section {
    padding: 48px 0;
  }

  .cfa-study-notes-features-title {
    font-size: 30px;
    line-height: 36px;
  }

  .cfa-study-notes-features-text p {
    font-size: 16px;
    line-height: 1.625;
  }

  .cfa-study-notes-feature {
    flex: 1 1 calc(100% - 20px);
    min-width: calc(100% - 20px);
  }
}
