@layer components-entities {
    .headline {
        display: block;
        margin-block:20.5px}

    .headline__content {
        display: flex;
        align-items: center;
        gap: 16px
    }

    .headline__heading {
        position: relative
    }

    .headline__line {
        flex-grow: 1;
        background-color: var(--body-complementary-color)
    }

    .headline__arrow {
        width: 32px;
        height: 32px;
        color: var(--body-complementary-color)
    }

    .headline_with-marker-square .headline__heading {
        visibility: hidden
    }

    .headline_with-marker-square .headline__heading::before {
        position: absolute;
        top: 50%;
        left: 50%;
        display: inline-block;
        visibility: visible;
        width: 20px;
        height: 20px;
        content: "";
        transform: translate(-50%, -50%) rotate(45deg);
        border-radius: 2px;
        background-color: var(--primary-blue)
    }

    @media screen and (max-width: 767px) {
        .headline_with-marker-square .headline__heading::before {
            width:16px;
            height: 16px
        }
    }

    @media screen and (max-width: 767px) {
        .headline {
            margin-block:14px
        }
    }
}
