/* @media (min-width: 576px) {
    .opening-text .text-divider-text strong:first-child {
        color: #ffffff;
        background-color: var(--color-accent-dark);
        padding: 0.1em 0.2em;
        position: relative;
        display: inline-block;
    }
    
    .opening-text .text-divider-text strong:first-child::before {
        content: '';
        position: absolute;
        top: 0;
        left: -50vw;
        width: 50vw;
        height: 100%;
        background-color: var(--color-accent-dark);
        z-index: -1;
    }
    
}

@media (min-width: 1400px) {
    .opening-text .text-divider-text strong:last-child {
        color: #ffffff;
        font-weight: 300;
        background-color: var(--color-accent-dark);
        padding: 0.1em 0.2em;
        position: relative;
        display: inline-block;
    }
    
    .opening-text .text-divider-text strong:last-child:before {
        content: '';
        position: absolute;
        top: 0;
        right: -50vw;
        width: 50vw;
        height: 100%;
        background-color: var(--color-accent-dark);
        z-index: -1;
    }
} */