.bl2-art-icons {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.bl2-art-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.bl2-art-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.14s linear;
}

.bl2-art-takeaways {
    margin: 0 0 40px;
    padding: 22px 26px 20px;
    background: var(--color-bg-section);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
    border-radius: 6px;
}

.bl2-art-takeaways__label {
    display: block;
    margin-bottom: 12px;
    color: var(--color-accent);
    font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bl2-art-takeaways ul {
    margin-bottom: 0;
}

.bl2-art-hero-share {
    display: none;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 6px 10px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bl2-art-hero-share svg,
.bl2-art-share__btn svg,
.bl2-art-toc__share svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: currentColor;
}

.bl2-art-share {
    display: block;
    margin: 48px 0 0;
    padding: 24px 0 20px;
}

.bl2-art-share__title {
    max-width: 44ch;
    margin: 0 0 16px;
    color: var(--color-text);
    font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.bl2-art-share__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bl2-art-share .bl2-art-share__btn {
    min-height: 40px;
    padding: 8px 11px;
    cursor: pointer;
}

.bl2-art-share .bl2-art-share__btn {
    background: transparent;
    color: var(--color-text);
}

.bl2-art-share a.bl2-art-share__btn,
.bl2-art-toc__share a {
    border-bottom: 1px solid var(--color-border);
    background-image: none;
    text-decoration: none;
}

.bl2-art-share a.bl2-art-share__btn::before,
.bl2-art-share a.bl2-art-share__btn::after,
.bl2-art-toc__share a::before,
.bl2-art-toc__share a::after {
    content: none;
    display: none;
}

.bl2-art-share__status {
    display: block;
    min-height: 19px;
    margin-top: 10px;
    color: var(--color-accent);
    font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bl2-art-copy-notice {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2100;
    max-width: calc(100vw - 40px);
    padding: 10px 13px;
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
    border-radius: 4px;
    background: var(--color-bg-section);
    box-shadow: 0 12px 28px rgba(10, 10, 10, 0.14);
    color: var(--color-text);
    font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.bl2-art-copy-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bl2-art-toc__share {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.bl2-art-toc__share a,
.bl2-art-toc__share button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: transparent;
    color: var(--color-text-secondary);
    cursor: pointer;
    text-decoration: none;
}

.bl2-art-toc__share a::before {
    display: none;
}

.bl2-art-section-link {
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 8px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: transparent;
    color: var(--color-accent);
    cursor: pointer;
    font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

@media (hover: hover) and (pointer: fine) {
    .bl2-art-section-link {
        display: inline-flex;
        opacity: 0;
        transition: opacity 0.16s ease;
    }

    .bl2-art-body h2:hover .bl2-art-section-link,
    .bl2-art-body h3:hover .bl2-art-section-link,
    .bl2-art-section-link:focus-visible {
        opacity: 1;
    }
}

.bl2-art-body img {
    max-width: 100%;
}

.bl2-art-body a,
.bl2-art-body td,
.bl2-art-body th {
    overflow-wrap: anywhere;
}

.bl2-art-body blockquote {
    overflow-wrap: anywhere;
}

.bl2-art-share__btn:focus-visible,
.bl2-art-hero-share:focus-visible,
.bl2-art-toc__share a:focus-visible,
.bl2-art-toc__share button:focus-visible,
.bl2-art-section-link:focus-visible,
.bl2-art-toc__toggle:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.bl2-art-share__btn:hover,
.bl2-art-hero-share:hover,
.bl2-art-toc__share a:hover,
.bl2-art-toc__share button:hover,
.bl2-art-section-link:hover {
    border-color: var(--color-accent);
    background: rgba(216, 67, 21, 0.05);
    color: var(--color-accent);
}

.bl2-art-toc__toggle {
    display: none;
}

@media (max-width: 1024px) {
    .bl2-art-hero-share {
        display: inline-flex;
    }

    .bl2-art-toc--disclosure {
        border-left-width: 3px;
    }

    .bl2-art-toc--disclosure .article-toc__title {
        display: none;
    }

    .bl2-art-toc__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 40px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--color-accent);
        cursor: pointer;
        font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-align: left;
        text-transform: uppercase;
    }

    .bl2-art-toc__toggle::after {
        content: '+';
        font-size: 18px;
        line-height: 1;
    }

    .bl2-art-toc--open .bl2-art-toc__toggle::after {
        content: '−';
    }

    .bl2-art-toc--disclosure:not(.bl2-art-toc--open) .article-toc__list,
    .bl2-art-toc--disclosure:not(.bl2-art-toc--open) .bl2-art-toc__share {
        display: none;
    }

    .bl2-art-toc__share {
        margin-top: 14px;
        padding-top: 14px;
    }

    .bl2-art-toc__share a,
    .bl2-art-toc__share button {
        width: 40px;
        height: 40px;
    }

    .bl2-art-body blockquote {
        padding: 18px 20px;
    }
}

@media (max-width: 600px) {
    .bl2-art-body .seo-article__table-wrapper {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bl2-art-takeaways {
        margin-bottom: 30px;
        padding: 18px 18px 16px;
    }

    .bl2-art-share {
        margin-top: 38px;
    }

    .bl2-art-share .bl2-art-share__btn {
        min-width: 40px;
        padding: 8px 10px;
    }

    .bl2-art-share__btn span {
        display: none;
    }

    .bl2-art-share__native span {
        display: inline;
    }

    .bl2-art-copy-notice {
        right: 16px;
        bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bl2-art-progress span,
    .bl2-art-copy-notice {
        transition: none;
    }
}
