.boldpo-heading-block-wrap {
    width: 100%;
    box-sizing: border-box;

    .boldpo-heading {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;

        .boldpo-heading-title-wrap {
            display: inline-flex;
            align-items: center;
        }

        .boldpo-heading-title {
            margin: 0;
        }

        .boldpo-heading-description {
            margin: 10px 0 0 0;
            color: var(--boldpo-preset-color-contrast-2);
        }

        &.style-2,
        &.style-5,
        &.style-6 {
            .boldpo-heading-title-wrap {
                position: relative;
                width: 100%;
                column-gap: 10px;

            }

            .boldpo-heading-title {
                white-space: nowrap !important;
                min-width: unset !important;
            }

            .boldpo-heading-dot {
                min-width: 9px;
                height: 9px;
                background: var(--boldpo-preset-color-primary);
                border-radius: 100%;
            }

            .boldpo-heading-border-line {
                display: block;
                width: 100%;
                height: 3px;
                background-color: var(--boldpo-preset-color-tertiary);
            }
        }

        &.style-5,
        &.style-6 {
            .boldpo-heading-dot {
                border-radius: 0;
            }
        }

        &.style-4 {
            .boldpo-heading-title-wrap {
                display: flex;
                align-items: center;
                column-gap: 15px;
                width: 100%;
            }

            .boldpo-heading-title {
                white-space: nowrap !important;
                min-width: unset !important;
            }

            .boldpo-heading-border-line {
                display: block;
                flex: 1;
                height: 3px;
                background-color: var(--boldpo-preset-color-tertiary);
            }
        }

        &.style-3 {
            .boldpo-heading-title-wrap {
                width: 100%;

                .boldpo-heading-right-icon {
                    font-size: inherit;
                }
            }
        }

        &.style-6 {
            @keyframes uc-flash {
                0% {
                    opacity: 0;
                }

                50% {
                    opacity: 1;
                }

                to {
                    opacity: 0;
                }
            }

            .boldpo-heading-dot {
                content: "";
                width: 10px;
                height: 10px;
                background: var(--boldpo-preset-color-primary);
                border-radius: 100%;
                animation: uc-flash 1s linear 0s infinite;
            }
        }

    }
}