/* Акцентная полоса под текстом */
.accent-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 24px;
}

.accent-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: var(--theme-color-text_link2);
}
