.heading-content {
    padding-left: var(--pad-sides);
    padding-right: var(--pad-sides);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.heading-content .heading {
    background: var(--Box-Gradient, radial-gradient(217.94% 50% at 50% 50%, #F5F1FB 0%, #D0BDEF 100%));
    margin-bottom: 0;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: "Bona Nova SC";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2em;
    text-transform:none;
}

.heading-content article {
    display: flex;
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;

    border-radius: 40px;
    border: 2px solid #9771B4;
    background: radial-gradient(38.17% 58.11% at 50% 50%, #43135B 0%, rgba(67, 19, 91, 0.00) 100%), radial-gradient(217.94% 50% at 50% 50%, rgba(245, 241, 251, 0.15) 0%, rgba(208, 189, 239, 0.15) 100%);
    box-shadow: 0 0 58.3px 5px rgba(255, 255, 255, 0.34) inset;
    backdrop-filter: blur(10px);
    max-width: 1200px;
}

.heading-content article p:last-of-type {
    margin-bottom: 0;
}

@media (min-width:1024px) {

    .heading-content {
        padding-left:80px;
        padding-right:80px;
    }
    
    .heading-content article {
        max-width:1400px;
    }
    
}