.advisory-hub-about {
    padding: clamp(2.5rem, 1.6197rem + 3.7559vw, 5rem) 0;
    background-color: var(--white);
}

.advisory-hub-about-content {
    display: flex;
    justify-content: center;
}

.advisory-hub-about-title-wrapper {
    max-width: 894px;
    position: relative;
}

.advisory-hub-about-title {
    font-family: 'Instrument Serif';
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    color: #6C92C8;
    position: absolute;
    top: 2px;
}

.advisory-hub-about-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    text-align: justify;
    letter-spacing: -0.01em;
    text-indent: clamp(5rem, 10vw, 9.3rem);
    text-transform: uppercase;
    color: var(--black);
    max-width: 68ch;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    text-align-last: left;
    text-wrap: pretty;
}

@media (max-width:1200px) {
    .advisory-hub-about-text {
        letter-spacing: 0
    }
}

@media (max-width:992px) {
    .advisory-hub-about-text {
        text-align: start
    }
}

@supports (text-wrap: balance) {
    .advisory-hub-about-text {
        text-align: start;
        text-wrap: pretty;
    }
}