/* .heading {
    transition: all var(--animation-duration) var(--animation-easing);
} */



.heading {
    text-wrap: pretty;
    /* font-family: "Futura", serif; */
    text-align: center;
    text-decoration: none !important;
    color: var(--near);
    margin: 5rem 0 2em 0;
    max-width: var(--max-width);
    min-width: var(--max-width);





    .tags.super {
        vertical-align: super;
        line-height: 0;

    }
}




.more {
    margin-block: 1lh;
    display: flex;
    flex-direction: column;
}




h1>span.parent {

    font-family: "MediaPoint";
    font-size: 60%;
    letter-spacing: -.1em;
    /* vertical-align: super; */

    text-transform: uppercase;
    position: relative;
    /* text-decoration: var(--underline);
    text-decoratiofn-style: double;
    text-underline-offset: calc(var(--underline-offset) / 1);
    text-decoration-thickness: .05em;
    font-variant-numeric: diagonal-fractions; */
    font-weight: normal;
}



section.more-informations {
    display: flex;
    justify-content: center;
    gap: .5rem;
    position: sticky;
    top: 2rem;
}

.heading .subtitle {
    display: flex;
    transition: all var(--animation-duration) var(--animation-easing);
    align-items: baseline;
    gap: 0;


}

.heading .subtitle:hover {
    cursor: pointer;
    gap: .5rem;
}

.heading .subtitle>.icn {
    font-family: "MediaPoint";
    line-height: 0;
    width: 0;
    opacity: 0;
    transition: all var(--animation-duration) var(--animation-easing);
}

.heading .subtitle:hover>.icn {
    width: .75rem;
    opacity: 1;

}

/* 
h1>span.parent::before {
    content: "(";


}

h1>span.parent::after {
    content: ")";
    letter-spacing: -.5em;

} */


@media (width < 960px) {
    .heading {

        max-width: 100%;
        min-width: 100%;

        .main-title {


            display: flex;
            flex-direction: column;
            gap: var(--gap);

            h1 {
                font-size: var(--huge-fs);
                hyphens: auto;
                text-wrap: balance;
            }

            & .tags {
                margin-top: 0;
                align-items: center;
                justify-content: center;
            }
        }
    }
}