.noble-copyright {
    font-family: "Brockmann", sans-serif;
    font-weight: 600;
    font-size: 0.72vw;
    color: var(--e-global-color-primary);
    display: flex;
    align-items: center;
    position: relative;
}

.noble-copyright::before {
    content: "";
    width: 5px;
    height: 2px;
    background: var(--e-global-color-primary);
    position: absolute;
    left: -10px;
    transform: translateX(-50%);
}

@media (max-width: 1024px) {
    .noble-copyright {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .noble-copyright {
        font-size: 10px;
    }

    .noble-copyright::before {
        content: none;
    }
}