.radialbackground {
  padding: 80px 16px;
  background: radial-gradient(103.98% 65.83% at 74.83% 42.11%, #320FA1 0%, #1D1934 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  h3,
  h4 {
    color: white;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 500;
  }

  h3 {
    background-color: #321DA1;
    font-size: 17px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 15px;
  }

  h2 {
    color: white;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .radialbackground__container {
    display: flex;
    gap: 80px;

    > div {
      flex:  1 1 50%;
      font-size: 22px;
    }
    
    .radialbackground__info--content,
    .radialbackground__info--extra {
      color: white;
    }

    p {
      font-size: 22px;
      color: white;
    }
    
    ul {
      list-style: disc;
    }
    
    li::marker {
      color: white;
    }

    .read-more {
      margin-top: 30px;
    }

    ul {
      margin: 0;
      padding-left: 16px;
    }
  }
}

@media (max-width: 767px) {
    .radialbackground {
      padding: 48px 16px;
      
      h3 {
        font-size: 24px;
      }

      h2 {
        font-size: 38px
      }

      h4 {
        font-size: 24px;
      }

      .radialbackground__container {
        flex-direction: column;
        gap: 32px;

        > div {
          font-size: 18px;
        }
      }
  }