.ltg-heading {
    --ltg-heading-underline-offset: 0px;
    color: #000000;
}

html.ltg-a11y-contrast-true .ltg-heading {
    color: yellow;
}

.ltg-heading.text-right {
    text-align: right !important;
}

.ltg-heading.text-center {
    text-align: center !important;
}

.ltg-heading.text-black {
    color: #000000 !important;
}

html.ltg-a11y-contrast-true .ltg-heading.text-black {
    color: white !important;
}

.ltg-heading.text-white {
    color: #ffffff !important;
}

.ltg-heading.text-primary {
    color: var(--ltg-color-primary) !important;
}

.ltg-heading--underlined {
    padding-bottom: 1rem;
}

.ltg-heading--underlined > span {
    position: relative;
}

.ltg-heading--underlined > span::before {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: calc(100% + var(--ltg-heading-underline-offset));
    height: 6px;
    background-color: var(--ltg-color-primary);
    content: "";
}

.ltg-heading--underlined-block > span {
    display: block;
}
