#pro_tip {
  display: flex;
  gap: 12px;
  padding: 24px;
  background-color: #eef7fb;
  color: #3d3d46;

  .text {
    display: flex;
    flex-direction: column;
    gap: 8px;

    h3 {
      font-size: 24px;
      font-weight: 700;
      margin: 0;
    }
  }
}

#key_takeaways {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background-color: #eef7fb;
  border: 1px solid #2badd4;
  border-radius: 8px;

  .header {
    display: flex;
    gap: 12px;

    h3 {
      font-size: 28px;
      font-weight: 700;
      color: #1e1b18;
      margin: 0;
    }
  }

  .list {
    display: flex;
    flex-direction: column;
    gap: 16px;

    .item {
      display: flex;
      gap: 12px;

      p {
        margin: 0;
        color: #3d3d46;
      }
    }
  }
}

#schedule_call {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 3vw, 48px);
  border-radius: 8px;
  background: linear-gradient(159deg, #eef7fb 51.24%, #54b2d3 221.86%);
  text-align: center;
  color: #3d3d46;

  .images {
    display: flex;

    *:nth-child(n + 2) {
      margin-left: -20px;
    }

    img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
    }
  }

  .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 70%;

    h3 {
      margin: 0;
      font-size: 28px;
      font-weight: 500;
    }
  }

  a {
    color: #3d3d46;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #3d3d46;
    border-radius: 8px;
  }
}

#expert_picks {
  .header {
    display: flex;
    gap: 12px;
    padding: 24px;
    border-radius: 8px 8px 0 0;
    background-color: #121d36;

    img {
      height: 42px;
      width: 42px;
    }

    h3 {
      margin: 0;
      color: #fff;
      font-size: 28px;
      font-weight: 700;
    }
  }

  .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border: 1px solid #cfcfd7;

    .item {
      display: flex;
      gap: 12px;

      p {
        margin: 0;
        color: #3d3d46;
      }
    }
  }
}

#newsletter_cta {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(24px, 3vw, 48px);
  background: linear-gradient(
    45deg,
    #24bee1 -11.29%,
    #037cd2 17.15%,
    #14213f 88.23%
  );
  border-radius: 8px;

  .right-side {
    display: flex;
    flex-direction: column;
    gap: 24px;

    .content {
      display: flex;
      flex-direction: column;
      gap: 8px;
      text-align: center;

      h3 {
        margin: 0;
        font-size: 36px;
        font-weight: 500;
        color: #fff;
        line-height: normal;
      }

      p {
        margin: 0;
        font-size: 16px;
        color: #fff;
        text-wrap: balance;
      }
    }

    form {
      display: flex;
      align-items: end;

      li {
        padding-bottom: 0;
      }

      .hs-error-msgs {
        display: none !important;
      }

      .hs-email {
        width: 100%;
      }

      .hs-input {
        border-radius: 100px;
      }

      input[type="submit"] {
        border: 1px solid #54b2d3;
        border-radius: 100px;
        margin-left: -50px;

        &:hover {
          border: 1px solid #54b2d3;
          border-radius: 100px;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  #schedule_call {
    .content {
      width: 100%;
    }
  }

  #newsletter_cta {
    flex-direction: column;
  }
}
