/* =========================================================
   REEID GUIDE FRAMEWORK v1
   Shared by compatibility and solution guides
   ========================================================= */

.reeid-guide-page {
    --guide-accent: #e95420;
    --guide-accent-light: #ff7a45;
    --guide-accent-dark: #a83217;
    --guide-accent-rgb: 233, 84, 32;
}

/* Page themes */
.reeid-guide-page--elementor {
    --guide-accent: #92003b;
    --guide-accent-light: #d85b8d;
    --guide-accent-dark: #5f0028;
    --guide-accent-rgb: 146, 0, 59;
}

/* Shared guide spacing */
.reeid-guide-hero {
    padding-bottom: 56px;
}

.reeid-guide-summary {
    padding-top: 0;
    margin-top: -8px;
}

.reeid-guide-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.reeid-guide-section + .reeid-guide-workflow {
    margin-top: 0;
}

/* Shared page accent */
.reeid-guide-page .reeid-int-kicker,
.reeid-guide-page .reeid-int-section-kicker,
.reeid-guide-page .reeid-int-partner-kicker,
.reeid-guide-page .reeid-int-panel-label,
.reeid-guide-page .reeid-int-mini-list span,
.reeid-guide-page .reeid-int-principle-icon {
    color: var(--guide-accent-light);
}

.reeid-guide-page .reeid-int-hero::before {
    border-color: rgba(var(--guide-accent-rgb), .24);
    box-shadow:
        0 0 0 70px rgba(var(--guide-accent-rgb), .025),
        0 0 0 140px rgba(119, 33, 111, .025);
}

.reeid-guide-page .reeid-int-hero-panel {
    border-color: rgba(var(--guide-accent-rgb), .46);
    background:
        linear-gradient(
            145deg,
            rgba(var(--guide-accent-rgb), .11),
            transparent 47%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );
}

.reeid-guide-page .reeid-int-hero-panel::after {
    background: var(--guide-accent-light);
    box-shadow:
        0 0 18px rgba(var(--guide-accent-rgb), .72);
}

.reeid-guide-page .reeid-int-button-primary .wp-block-button__link {
    border-color: var(--guide-accent);
    background:
        linear-gradient(
            135deg,
            var(--guide-accent),
            var(--guide-accent-dark)
        );
    box-shadow:
        0 14px 35px rgba(var(--guide-accent-rgb), .22);
}

.reeid-guide-page .reeid-int-button-primary .wp-block-button__link:hover {
    border-color: var(--guide-accent-light);
    background:
        linear-gradient(
            135deg,
            var(--guide-accent-light),
            var(--guide-accent)
        );
}

/* Number/icon component */
.reeid-guide-step-icon {
    border-color: rgba(var(--guide-accent-rgb), .38);
    background:
        linear-gradient(
            135deg,
            var(--guide-accent),
            var(--guide-accent-dark)
        );
}

/* FAQ component */
.reeid-guide-faq .wp-block-details {
    margin: 0 0 12px;
    overflow: hidden;
    border: 1px solid var(--ri-border);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}

.reeid-guide-faq .wp-block-details summary {
    position: relative;
    padding: 20px 54px 20px 22px;
    cursor: pointer;
    list-style: none;
}

.reeid-guide-faq .wp-block-details summary::-webkit-details-marker {
    display: none;
}

.reeid-guide-faq .wp-block-details summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--guide-accent-light);
    font-size: 22px;
    font-weight: 700;
}

.reeid-guide-faq .wp-block-details[open] summary::after {
    content: "−";
}

.reeid-guide-faq .wp-block-details > p {
    margin: 0;
    padding: 0 22px 21px;
}

/* Frontend typography only */
body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-faq .wp-block-details summary {
    color: #fff;
    font-weight: 700;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-faq .wp-block-details > p {
    color: var(--ri-muted);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 781px) {
    .reeid-guide-hero {
        padding-bottom: 40px;
    }

    .reeid-guide-summary {
        margin-top: 0;
    }

    .reeid-guide-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }
}

@media (max-width: 520px) {
    .reeid-guide-faq .wp-block-details summary {
        padding-left: 18px;
        padding-right: 48px;
    }

    .reeid-guide-faq .wp-block-details > p {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* =========================================================
   REEID GUIDE FRAMEWORK v1 — shared cards/workflow/definition/CTA
   ========================================================= */

.reeid-guide-page--woocommerce {
    --guide-accent: #96588a;
    --guide-accent-light: #c98aba;
    --guide-accent-dark: #56314f;
    --guide-accent-rgb: 150, 88, 138;
}

.reeid-guide-page--architecture {
    --guide-accent: #38bdf8;
    --guide-accent-light: #7dd3fc;
    --guide-accent-dark: #075985;
    --guide-accent-rgb: 56, 189, 248;
}

.reeid-guide-accent-text,
.reeid-guide-mini-list span {
    color: var(--guide-accent-light);
}

.reeid-guide-button-primary .wp-block-button__link {
    border-color: var(--guide-accent) !important;
    background:
        linear-gradient(
            135deg,
            var(--guide-accent),
            var(--guide-accent-dark)
        ) !important;
    box-shadow:
        0 14px 35px rgba(var(--guide-accent-rgb), .22) !important;
}

.reeid-guide-button-primary .wp-block-button__link:hover {
    border-color: var(--guide-accent-light) !important;
    background:
        linear-gradient(
            135deg,
            var(--guide-accent-light),
            var(--guide-accent)
        ) !important;
}

.reeid-guide-card-grid,
.reeid-guide-workflow-grid {
    gap: 16px;
    align-items: stretch;
}

.reeid-guide-card-grid > .wp-block-column,
.reeid-guide-workflow-grid > .wp-block-column {
    display: flex;
}

.reeid-guide-card,
.reeid-guide-workflow-card {
    width: 100%;
    min-height: 100%;
    padding: 23px;
    border: 1px solid var(--ri-border);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--guide-accent-rgb), .05),
            transparent 52%
        ),
        rgba(255,255,255,.025);
}

.reeid-guide-workflow-grid {
    margin-top: 40px;
}

.reeid-guide-workflow-card {
    position: relative;
    padding: 25px;
    overflow: hidden;
    border-radius: 16px;
}

.reeid-guide-workflow-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background:
        linear-gradient(
            180deg,
            var(--guide-accent-light),
            rgba(var(--guide-accent-rgb), 0)
        );
}

.reeid-guide-card-number,
.reeid-guide-workflow-step {
    margin-bottom: 18px !important;
}

.reeid-guide-step-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px !important;
    border: 1px solid rgba(var(--guide-accent-rgb), .42);
    border-radius: 13px;
    background: rgba(var(--guide-accent-rgb), .11);
}

.reeid-guide-definition-box {
    padding: clamp(32px, 5vw, 58px);
    border: 1px solid rgba(var(--guide-accent-rgb), .48);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(var(--guide-accent-rgb), .20),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(var(--guide-accent-rgb), .09),
            transparent 52%
        ),
        rgba(255,255,255,.025);
    box-shadow: 0 24px 65px rgba(0,0,0,.25);
}

.reeid-guide-definition-text {
    max-width: 880px;
    margin-bottom: 16px;
}

.reeid-guide-definition-note {
    max-width: 820px;
    margin-bottom: 0;
}

.reeid-guide-cta-box {
    border-color: rgba(var(--guide-accent-rgb), .5);
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(var(--guide-accent-rgb), .22),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            rgba(var(--guide-accent-rgb), .12),
            transparent 50%
        ),
        var(--ri-surface-2);
}

.reeid-guide-cta-buttons {
    gap: 10px;
}

/* Frontend typography only */
body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-card-number,
body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-workflow-step,
body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-step-icon {
    color: var(--guide-accent-light) !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    letter-spacing: .12em !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-workflow-card h3,
body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-card h4 {
    color: #fff !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-workflow-card p:last-child,
body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-card p:last-child,
body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-definition-note {
    color: var(--ri-muted) !important;
    line-height: 1.65 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-definition-text {
    color: #fff !important;
    font-size: clamp(21px, 2.4vw, 30px) !important;
    line-height: 1.45 !important;
}


/* ===== Premium guide cards ===== */

.reeid-guide-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(var(--guide-accent-rgb), .11),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.018)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035),
        0 18px 48px rgba(0,0,0,.22);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.reeid-guide-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--guide-accent),
            var(--guide-accent-light),
            transparent 88%
        );
}

.reeid-guide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--guide-accent-rgb), .5);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 28px 66px rgba(0,0,0,.35);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-card h3 {
    min-height: 42px;
    margin: 0 0 18px !important;
    color: #fff !important;
    font-size: clamp(27px, 2.3vw, 34px) !important;
    line-height: 1.18 !important;
    letter-spacing: -.025em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-card > p:not(.reeid-guide-step-icon):not(.reeid-arch-system-status) {
    margin-bottom: 0 !important;
    color: var(--ri-muted) !important;
    line-height: 1.72 !important;
}

.reeid-guide-step-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    margin: 0 0 28px !important;
    border: 1px solid rgba(var(--guide-accent-rgb), .42);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--guide-accent-rgb), .24),
            rgba(var(--guide-accent-rgb), .07)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.09),
        0 12px 28px rgba(0,0,0,.25);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-step-icon {
    color: var(--guide-accent-light) !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: .14em !important;
}

.reeid-arch-supported .reeid-guide-card-grid {
    flex-wrap: wrap !important;
    gap: 22px;
    margin-top: 42px;
}

.reeid-arch-supported .reeid-guide-card-grid > .wp-block-column {
    flex: 1 1 calc(50% - 11px) !important;
    min-width: calc(50% - 11px);
}

.reeid-arch-system-status {
    margin: auto 0 0 !important;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.075);
    color: var(--guide-accent-light) !important;
    font-size: 11px !important;
    font-weight: 750 !important;
    letter-spacing: .12em !important;
    line-height: 1.45 !important;
}

@media (max-width: 900px) {
    .reeid-guide-card-grid,
    .reeid-guide-workflow-grid {
        flex-wrap: wrap !important;
    }

    .reeid-guide-card-grid > .wp-block-column,
    .reeid-guide-workflow-grid > .wp-block-column {
        flex-basis: calc(50% - 8px) !important;
    }
}

@media (max-width: 520px) {
    .reeid-guide-card-grid > .wp-block-column,
    .reeid-guide-workflow-grid > .wp-block-column {
        flex-basis: 100% !important;
    }

    .reeid-guide-definition-box {
        padding: 24px;
    }

    .reeid-guide-cta-buttons,
    .reeid-guide-cta-buttons .wp-block-button,
    .reeid-guide-cta-buttons .wp-block-button__link {
        width: 100%;
    }
}


/* Gutenberg guide refinements */

.reeid-guide-page--gutenberg {
    --guide-accent: #e95420;
    --guide-accent-light: #ff7a45;
    --guide-accent-dark: #a83217;
    --guide-accent-rgb: 233, 84, 32;
}

.reeid-guide-page--gutenberg
.reeid-guide-card--system
.reeid-guide-step-icon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    border-radius: 18px;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-card--system
.reeid-guide-step-icon {
    font-size: 25px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-definition-box {
    text-align: left;
}

.reeid-guide-page--gutenberg
.reeid-guide-definition-box > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-definition-box h3 {
    max-width: 980px;
    margin-bottom: 22px !important;
    color: #fff !important;
    font-size: clamp(27px, 3vw, 39px) !important;
    line-height: 1.3 !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-definition-text {
    max-width: 980px;
    margin-bottom: 22px !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-definition-note {
    max-width: 980px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.09);
}



/* Gutenberg trust bar */

.reeid-guide-page--gutenberg .reeid-int-trust-grid {
    gap: 0;
    border-color: rgba(var(--guide-accent-rgb), .28);
    background:
        linear-gradient(
            90deg,
            rgba(var(--guide-accent-rgb), .08),
            rgba(255,255,255,.035)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 18px 46px rgba(0,0,0,.22);
}

.reeid-guide-page--gutenberg
.reeid-int-trust-grid > .wp-block-column {
    position: relative;
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 28px 22px 78px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );
}

.reeid-guide-page--gutenberg
.reeid-int-trust-grid > .wp-block-column:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.075);
}

.reeid-guide-page--gutenberg
.reeid-int-trust-grid > .wp-block-column::before {
    position: absolute;
    left: 26px;
    top: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(var(--guide-accent-rgb), .36);
    border-radius: 10px;
    background: rgba(var(--guide-accent-rgb), .12);
    color: var(--guide-accent-light);
    font-size: 15px;
    font-weight: 800;
}

.reeid-guide-page--gutenberg
.reeid-int-trust-grid > .wp-block-column:nth-child(1)::before {
    content: "✓";
}

.reeid-guide-page--gutenberg
.reeid-int-trust-grid > .wp-block-column:nth-child(2)::before {
    content: "0";
}

.reeid-guide-page--gutenberg
.reeid-int-trust-grid > .wp-block-column:nth-child(3)::before {
    content: "∞";
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg .reeid-int-trust-number {
    margin-bottom: 5px !important;
    color: #fff !important;
    font-size: 31px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg .reeid-int-trust-text {
    color: var(--ri-muted) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}


@media (max-width: 700px) {
    .reeid-arch-supported .reeid-guide-card-grid > .wp-block-column {
        flex-basis: 100% !important;
        min-width: 100%;
    }

    .reeid-guide-card {
        padding: 28px;
    }
}


/* Gutenberg workflow polish */

.reeid-guide-page--gutenberg
.reeid-guide-workflow-grid {
    position: relative;
    gap: 18px;
    margin-top: 46px;
}

.reeid-guide-page--gutenberg
.reeid-guide-workflow-grid > .wp-block-column {
    position: relative;
    min-width: 0;
}

.reeid-guide-page--gutenberg
.reeid-guide-workflow-grid > .wp-block-column:not(:last-child)::after {
    content: "›";
    position: absolute;
    z-index: 4;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(var(--guide-accent-rgb), .32);
    border-radius: 50%;
    background: #17141d;
    color: var(--guide-accent-light);
    box-shadow: 0 8px 22px rgba(0,0,0,.32);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
}

.reeid-guide-page--gutenberg
.reeid-guide-workflow-card {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 31px 29px 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(var(--guide-accent-rgb), .13),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.048),
            rgba(255,255,255,.018)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 18px 46px rgba(0,0,0,.22);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.reeid-guide-page--gutenberg
.reeid-guide-workflow-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    width: auto;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--guide-accent),
            var(--guide-accent-light),
            transparent 90%
        );
}

.reeid-guide-page--gutenberg
.reeid-guide-workflow-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 125px;
    height: 125px;
    border: 1px solid rgba(var(--guide-accent-rgb), .09);
    border-radius: 50%;
    pointer-events: none;
}

.reeid-guide-page--gutenberg
.reeid-guide-workflow-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--guide-accent-rgb), .48);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055),
        0 28px 62px rgba(0,0,0,.34);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-workflow-step {
    width: fit-content;
    margin: 0 0 25px !important;
    padding: 7px 11px 6px;
    border: 1px solid rgba(var(--guide-accent-rgb), .35);
    border-radius: 999px;
    background: rgba(var(--guide-accent-rgb), .11);
    color: var(--guide-accent-light) !important;
    font-size: 10px !important;
    font-weight: 850 !important;
    letter-spacing: .14em !important;
    line-height: 1 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-workflow-card h3 {
    min-height: 58px;
    margin: 0 0 16px !important;
    color: #fff !important;
    font-size: clamp(21px, 1.8vw, 27px) !important;
    line-height: 1.18 !important;
    letter-spacing: -.02em !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-workflow-card > p:last-child {
    position: relative;
    z-index: 1;
    margin: auto 0 0 !important;
    padding-top: 2px;
    color: var(--ri-muted) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

@media (max-width: 900px) {
    .reeid-guide-page--gutenberg
    .reeid-guide-workflow-grid {
        gap: 18px;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-workflow-grid > .wp-block-column:not(:last-child)::after {
        display: none;
    }

    body:not(.wp-admin):not(.block-editor-iframe__body)
    .reeid-guide-page--gutenberg
    .reeid-guide-workflow-card h3 {
        min-height: 0;
    }
}

@media (max-width: 520px) {
    .reeid-guide-page--gutenberg
    .reeid-guide-workflow-grid {
        margin-top: 34px;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-workflow-card {
        padding: 27px 25px 26px;
    }
}


/* Gutenberg supported block cards polish */

.reeid-guide-page--gutenberg
.reeid-int-directory > .reeid-guide-card-grid {
    gap: 18px;
    margin-top: 44px;
}

.reeid-guide-page--gutenberg
.reeid-int-directory > .reeid-guide-card-grid > .wp-block-column {
    min-width: 0;
}

.reeid-guide-page--gutenberg
.reeid-guide-card--system {
    min-height: 350px;
    padding: 32px 29px 29px;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(var(--guide-accent-rgb), .14),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.048),
            rgba(255,255,255,.017)
        );
}

.reeid-guide-page--gutenberg
.reeid-guide-card--system::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -58px;
    width: 132px;
    height: 132px;
    border: 1px solid rgba(var(--guide-accent-rgb), .09);
    border-radius: 50%;
    pointer-events: none;
}

.reeid-guide-page--gutenberg
.reeid-guide-card--system
.reeid-guide-step-icon {
    position: relative;
    z-index: 1;
    width: 66px;
    height: 66px;
    flex-basis: 66px;
    margin-bottom: 27px !important;
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--guide-accent-rgb), .28),
            rgba(var(--guide-accent-rgb), .07)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.1),
        0 14px 30px rgba(0,0,0,.27);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-card--system
.reeid-guide-step-icon {
    color: var(--guide-accent-light) !important;
    font-size: 27px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-card--system h3 {
    min-height: 0;
    margin-bottom: 15px !important;
    font-size: clamp(25px, 2vw, 31px) !important;
    line-height: 1.16 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-card--system > p:not(.reeid-guide-step-icon):not(.reeid-arch-system-status) {
    position: relative;
    z-index: 1;
    font-size: 15px !important;
    line-height: 1.72 !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-card--system
.reeid-arch-system-status {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto !important;
    padding-top: 21px;
}

.reeid-guide-page--gutenberg
.reeid-guide-card--system
.reeid-arch-system-status::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--guide-accent-light);
    box-shadow: 0 0 12px rgba(var(--guide-accent-rgb), .65);
}

@media (max-width: 900px) {
    .reeid-guide-page--gutenberg
    .reeid-guide-card--system {
        min-height: 330px;
    }
}

@media (max-width: 520px) {
    .reeid-guide-page--gutenberg
    .reeid-guide-card--system {
        min-height: 0;
        padding: 27px 25px;
    }
}


/* Gutenberg scalability timeline */

.reeid-guide-page--gutenberg
.reeid-guide-scale-section {
    padding-top: clamp(76px, 9vw, 118px);
    padding-bottom: clamp(76px, 9vw, 118px);
}

.reeid-guide-page--gutenberg
.reeid-guide-scale-columns {
    gap: clamp(46px, 7vw, 92px);
}

.reeid-guide-page--gutenberg
.reeid-guide-scale-panel {
    position: relative;
    padding: clamp(30px, 5vw, 46px);
    overflow: hidden;
    border: 1px solid rgba(var(--guide-accent-rgb), .42);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 92% 7%,
            rgba(var(--guide-accent-rgb), .19),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(var(--guide-accent-rgb), .08),
            transparent 52%
        ),
        rgba(255,255,255,.025);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055),
        0 26px 64px rgba(0,0,0,.3);
}

.reeid-guide-page--gutenberg
.reeid-guide-scale-panel::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -98px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(var(--guide-accent-rgb), .1);
    border-radius: 50%;
    pointer-events: none;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-scale-label {
    margin: 0 0 30px !important;
    color: var(--guide-accent-light) !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    letter-spacing: .15em !important;
    line-height: 1.4 !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-scale-track {
    position: relative;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-scale-track::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(var(--guide-accent-rgb), .22),
            var(--guide-accent-light),
            rgba(var(--guide-accent-rgb), .22)
        );
}

.reeid-guide-page--gutenberg
.reeid-guide-scale-track > .wp-block-column {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.reeid-guide-page--gutenberg
.reeid-guide-scale-track > .wp-block-column::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    margin: 19px auto 19px;
    border: 3px solid #17121d;
    border-radius: 50%;
    background: var(--guide-accent-light);
    box-shadow:
        0 0 0 1px rgba(var(--guide-accent-rgb), .54),
        0 0 17px rgba(var(--guide-accent-rgb), .62);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-scale-number {
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: clamp(24px, 3vw, 36px) !important;
    font-weight: 800 !important;
    letter-spacing: -.035em !important;
    line-height: 1 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-scale-text {
    margin: 0 !important;
    color: var(--ri-muted) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-scale-caption {
    position: relative;
    z-index: 1;
    margin: 29px 0 0 !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 650 !important;
    line-height: 1.55 !important;
    text-align: center;
}

@media (max-width: 781px) {
    .reeid-guide-page--gutenberg
    .reeid-guide-scale-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 24px;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-scale-track::before {
        display: none;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-scale-track > .wp-block-column {
        padding: 18px 12px;
        border: 1px solid rgba(255,255,255,.075);
        border-radius: 14px;
        background: rgba(255,255,255,.018);
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-scale-track > .wp-block-column::before {
        margin-top: 0;
        margin-bottom: 16px;
    }
}

@media (max-width: 420px) {
    .reeid-guide-page--gutenberg
    .reeid-guide-scale-track {
        grid-template-columns: 1fr;
    }
}


/* Gutenberg FAQ polish */

.reeid-guide-page--gutenberg
.reeid-guide-faq {
    padding-top: clamp(76px, 9vw, 116px);
    padding-bottom: clamp(80px, 9vw, 122px);
}

.reeid-guide-page--gutenberg
.reeid-guide-faq > .reeid-int-section-lead {
    margin-bottom: 42px !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-faq .wp-block-details {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 14px !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--guide-accent-rgb), .045),
            transparent 44%
        ),
        rgba(255,255,255,.024);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025);
    transition:
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
    counter-increment: reeid-gb-faq;
}

.reeid-guide-page--gutenberg
.reeid-guide-faq {
    counter-reset: reeid-gb-faq;
}

.reeid-guide-page--gutenberg
.reeid-guide-faq .wp-block-details:hover {
    border-color: rgba(var(--guide-accent-rgb), .34);
    background-color: rgba(255,255,255,.034);
    transform: translateY(-1px);
}

.reeid-guide-page--gutenberg
.reeid-guide-faq .wp-block-details[open] {
    border-color: rgba(var(--guide-accent-rgb), .48);
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(var(--guide-accent-rgb), .12),
            transparent 34%
        ),
        rgba(255,255,255,.032);
    box-shadow:
        inset 3px 0 0 var(--guide-accent),
        0 18px 42px rgba(0,0,0,.18);
}

.reeid-guide-page--gutenberg
.reeid-guide-faq .wp-block-details summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    padding: 20px 64px 20px 78px;
}

.reeid-guide-page--gutenberg
.reeid-guide-faq .wp-block-details summary::before {
    content: counter(reeid-gb-faq, decimal-leading-zero);
    position: absolute;
    left: 22px;
    top: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(var(--guide-accent-rgb), .34);
    border-radius: 11px;
    background: rgba(var(--guide-accent-rgb), .1);
    color: var(--guide-accent-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
}

.reeid-guide-page--gutenberg
.reeid-guide-faq .wp-block-details summary::after {
    right: 23px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--guide-accent-rgb), .3);
    border-radius: 10px;
    background: rgba(var(--guide-accent-rgb), .08);
    font-size: 19px;
    line-height: 1;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-faq .wp-block-details summary {
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-faq .wp-block-details > p {
    margin: 0 !important;
    padding: 0 68px 24px 78px;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-faq .wp-block-details > p {
    color: var(--ri-muted) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

@media (max-width: 600px) {
    .reeid-guide-page--gutenberg
    .reeid-guide-faq > .reeid-int-section-lead {
        margin-bottom: 30px !important;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-faq .wp-block-details summary {
        min-height: 68px;
        padding: 17px 54px 17px 62px;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-faq .wp-block-details summary::before {
        left: 16px;
        width: 32px;
        height: 32px;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-faq .wp-block-details summary::after {
        right: 15px;
        width: 29px;
        height: 29px;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-faq .wp-block-details > p {
        padding: 0 20px 21px 62px;
    }
}


/* Gutenberg related guides polish */

.reeid-guide-page--gutenberg
.reeid-guide-related {
    padding-top: clamp(78px, 9vw, 118px);
    padding-bottom: clamp(78px, 9vw, 118px);
    border-top: 1px solid rgba(255,255,255,.06);
}

.reeid-guide-page--gutenberg
.reeid-guide-related > .reeid-int-section-lead {
    width: 100%;
    max-width: 1180px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 44px !important;
    padding-right: clamp(0px, calc(100% - 760px), 420px);
    box-sizing: border-box;
    text-align: left !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-related-grid {
    gap: 20px;
    align-items: stretch;
    margin-top: 0;
}

.reeid-guide-page--gutenberg
.reeid-guide-related-grid > .wp-block-column {
    display: flex;
    min-width: 0;
}

.reeid-guide-page--gutenberg
.reeid-guide-related-card {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    padding: 32px 30px 29px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 21px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(var(--guide-accent-rgb), .13),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.046),
            rgba(255,255,255,.017)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 20px 50px rgba(0,0,0,.24);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.reeid-guide-page--gutenberg
.reeid-guide-related-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--guide-accent),
            var(--guide-accent-light),
            transparent 88%
        );
}

.reeid-guide-page--gutenberg
.reeid-guide-related-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -72px;
    width: 155px;
    height: 155px;
    border: 1px solid rgba(var(--guide-accent-rgb), .09);
    border-radius: 50%;
    pointer-events: none;
}

.reeid-guide-page--gutenberg
.reeid-guide-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--guide-accent-rgb), .48);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055),
        0 30px 68px rgba(0,0,0,.34);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-related-number {
    position: absolute;
    right: 25px;
    top: 24px;
    margin: 0 !important;
    color: rgba(255,255,255,.12) !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    letter-spacing: -.05em !important;
    line-height: 1 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-related-label {
    width: fit-content;
    margin: 0 0 27px !important;
    padding: 7px 10px 6px;
    border: 1px solid rgba(var(--guide-accent-rgb), .32);
    border-radius: 999px;
    background: rgba(var(--guide-accent-rgb), .1);
    color: var(--guide-accent-light) !important;
    font-size: 10px !important;
    font-weight: 850 !important;
    letter-spacing: .13em !important;
    line-height: 1 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-related-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px !important;
    color: #fff !important;
    font-size: clamp(27px, 2.2vw, 34px) !important;
    line-height: 1.15 !important;
    letter-spacing: -.025em !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-related-text {
    position: relative;
    z-index: 1;
    margin: 0 0 25px !important;
    color: var(--ri-muted) !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-related-link {
    position: relative;
    z-index: 1;
    margin: auto 0 0 !important;
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.075);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--gutenberg
.reeid-guide-related-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.reeid-guide-page--gutenberg
.reeid-guide-related-link a span {
    color: var(--guide-accent-light);
    font-size: 20px;
    line-height: 1;
    transition: transform .2s ease;
}

.reeid-guide-page--gutenberg
.reeid-guide-related-link a:hover span {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .reeid-guide-page--gutenberg
    .reeid-guide-related-grid {
        flex-wrap: wrap !important;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-related-grid > .wp-block-column {
        flex-basis: calc(50% - 10px) !important;
    }
}

@media (max-width: 600px) {
    .reeid-guide-page--gutenberg
    .reeid-guide-related-grid > .wp-block-column {
        flex-basis: 100% !important;
    }

    .reeid-guide-page--gutenberg
    .reeid-guide-related-card {
        min-height: 0;
        padding: 28px 25px 25px;
    }
}


/* Architecture content map polish */

.reeid-guide-page--architecture
.reeid-arch-content-map {
    padding-top: clamp(82px, 9vw, 118px);
    padding-bottom: clamp(82px, 9vw, 118px);
    border-top: 1px solid rgba(255,255,255,.065);
    background:
        radial-gradient(
            circle at 81% 22%,
            rgba(var(--guide-accent-rgb), .105),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.016),
            transparent 40%
        );
}

.reeid-guide-page--architecture
.reeid-arch-content-map
.reeid-int-principles-columns {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 42px;
    align-items: start;
}

.reeid-guide-page--architecture
.reeid-arch-content-map
.reeid-int-principles-columns > .wp-block-column {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    flex-basis: auto !important;
}

.reeid-guide-page--architecture
.reeid-arch-content-map
.reeid-int-principles-columns > .wp-block-column:first-child {
    max-width: 880px !important;
}

.reeid-guide-page--architecture
.reeid-arch-content-map
.reeid-int-section-title {
    max-width: 880px;
}

.reeid-guide-page--architecture
.reeid-arch-content-map
.reeid-int-section-lead {
    max-width: 800px;
    margin-bottom: 0 !important;
}

.reeid-guide-page--architecture
.reeid-arch-content-table {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(var(--guide-accent-rgb), .32);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(var(--guide-accent-rgb), .11),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.018)
        ),
        #11141a;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055),
        0 28px 68px rgba(0,0,0,.31);
}

.reeid-guide-page--architecture
.reeid-arch-content-table::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 0 auto;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--guide-accent),
            var(--guide-accent-light),
            transparent 88%
        );
}

.reeid-guide-page--architecture
.reeid-arch-content-row {
    display: grid !important;
    grid-template-columns:
        minmax(0, .82fr)
        minmax(0, 1.18fr) !important;
    gap: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.075);
    transition: background .2s ease;
}

.reeid-guide-page--architecture
.reeid-arch-content-row:last-child {
    border-bottom: 0;
}

.reeid-guide-page--architecture
.reeid-arch-content-row:not(.reeid-arch-content-head):hover {
    background: rgba(var(--guide-accent-rgb), .045);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--architecture
.reeid-arch-content-row > p {
    min-width: 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 17px 22px;
    color: var(--ri-muted) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--architecture
.reeid-arch-content-row > p:first-child {
    border-right: 1px solid rgba(255,255,255,.075);
    color: #fff !important;
    font-weight: 650 !important;
}

.reeid-guide-page--architecture
.reeid-arch-content-head {
    background:
        linear-gradient(
            90deg,
            rgba(var(--guide-accent-rgb), .14),
            rgba(var(--guide-accent-rgb), .055)
        );
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--architecture
.reeid-arch-content-head > p {
    min-height: 60px;
    color: var(--guide-accent-light) !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    letter-spacing: .11em !important;
    line-height: 1.4 !important;
    text-transform: uppercase;
}

@media (max-width: 781px) {
    .reeid-guide-page--architecture
    .reeid-arch-content-map
    .reeid-int-principles-columns {
        gap: 38px;
    }
}

@media (max-width: 600px) {
    .reeid-guide-page--architecture
    .reeid-arch-content-row {
        grid-template-columns: 1fr !important;
    }

    body:not(.wp-admin):not(.block-editor-iframe__body)
    .reeid-guide-page--architecture
    .reeid-arch-content-row > p {
        min-height: 0;
        padding: 16px 19px;
    }

    body:not(.wp-admin):not(.block-editor-iframe__body)
    .reeid-guide-page--architecture
    .reeid-arch-content-row > p:first-child {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .reeid-guide-page--architecture
    .reeid-arch-content-head > p:first-child {
        display: none;
    }
}


/* Architecture FAQ polish */

.reeid-guide-page--architecture
.reeid-arch-faq {
    padding-top: clamp(78px, 8vw, 108px);
    padding-bottom: clamp(82px, 8vw, 112px);
    border-top: 1px solid rgba(255,255,255,.065);
    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(var(--guide-accent-rgb), .075),
            transparent 31%
        ),
        rgba(5,6,10,.22);
    counter-reset: reeid-arch-faq;
}

.reeid-guide-page--architecture
.reeid-arch-faq > .reeid-int-section-kicker,
.reeid-guide-page--architecture
.reeid-arch-faq > .reeid-int-section-title,
.reeid-guide-page--architecture
.reeid-arch-faq > .reeid-int-section-lead {
    width: 100%;
    max-width: 820px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.reeid-guide-page--architecture
.reeid-arch-faq > .reeid-int-section-lead {
    margin-bottom: 42px !important;
}

.reeid-guide-page--architecture
.reeid-arch-faq .wp-block-details {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto 14px !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--guide-accent-rgb), .045),
            transparent 48%
        ),
        rgba(255,255,255,.027);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.028),
        0 10px 30px rgba(0,0,0,.12);
    counter-increment: reeid-arch-faq;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.reeid-guide-page--architecture
.reeid-arch-faq .wp-block-details:hover {
    border-color: rgba(var(--guide-accent-rgb), .34);
    background-color: rgba(255,255,255,.034);
    transform: translateY(-1px);
}

.reeid-guide-page--architecture
.reeid-arch-faq .wp-block-details[open] {
    border-color: rgba(var(--guide-accent-rgb), .48);
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(var(--guide-accent-rgb), .11),
            transparent 35%
        ),
        rgba(255,255,255,.033);
    box-shadow:
        inset 3px 0 0 var(--guide-accent),
        0 18px 42px rgba(0,0,0,.2);
}

.reeid-guide-page--architecture
.reeid-arch-faq .wp-block-details summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    padding: 20px 64px 20px 78px;
}

.reeid-guide-page--architecture
.reeid-arch-faq .wp-block-details summary::before {
    content: counter(reeid-arch-faq, decimal-leading-zero);
    position: absolute;
    left: 22px;
    top: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(var(--guide-accent-rgb), .34);
    border-radius: 11px;
    background: rgba(var(--guide-accent-rgb), .1);
    color: var(--guide-accent-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
}

.reeid-guide-page--architecture
.reeid-arch-faq .wp-block-details summary::after {
    right: 23px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--guide-accent-rgb), .3);
    border-radius: 10px;
    background: rgba(var(--guide-accent-rgb), .08);
    font-size: 19px;
    line-height: 1;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--architecture
.reeid-arch-faq .wp-block-details summary {
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

.reeid-guide-page--architecture
.reeid-arch-faq .wp-block-details > p {
    margin: 0 !important;
    padding: 0 68px 24px 78px;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--architecture
.reeid-arch-faq .wp-block-details > p {
    color: var(--ri-muted) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

@media (max-width: 600px) {
    .reeid-guide-page--architecture
    .reeid-arch-faq > .reeid-int-section-lead {
        margin-bottom: 30px !important;
    }

    .reeid-guide-page--architecture
    .reeid-arch-faq .wp-block-details summary {
        min-height: 68px;
        padding: 17px 54px 17px 62px;
    }

    .reeid-guide-page--architecture
    .reeid-arch-faq .wp-block-details summary::before {
        left: 16px;
        width: 32px;
        height: 32px;
    }

    .reeid-guide-page--architecture
    .reeid-arch-faq .wp-block-details summary::after {
        right: 15px;
        width: 29px;
        height: 29px;
    }

    .reeid-guide-page--architecture
    .reeid-arch-faq .wp-block-details > p {
        padding: 0 20px 21px 62px;
    }
}


/* Architecture related guides polish */

.reeid-guide-page--architecture
.reeid-arch-related {
    padding-top: clamp(82px, 9vw, 118px);
    padding-bottom: clamp(82px, 9vw, 118px);
    border-top: 1px solid rgba(255,255,255,.065);
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(var(--guide-accent-rgb), .09),
            transparent 34%
        ),
        rgba(255,255,255,.008);
}

.reeid-guide-page--architecture
.reeid-arch-related > .reeid-int-section-title,
.reeid-guide-page--architecture
.reeid-arch-related > .reeid-int-section-lead {
    max-width: 820px;
}

.reeid-guide-page--architecture
.reeid-arch-related > .reeid-int-section-lead {
    margin-bottom: 44px !important;
}

.reeid-guide-page--architecture
.reeid-arch-related-grid {
    gap: 20px;
    align-items: stretch;
    margin-top: 0;
}

.reeid-guide-page--architecture
.reeid-arch-related-grid > .wp-block-column {
    display: flex;
    min-width: 0;
}

.reeid-guide-page--architecture
.reeid-arch-related-card {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    padding: 32px 29px 29px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 21px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(var(--guide-accent-rgb), .13),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.046),
            rgba(255,255,255,.017)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 20px 50px rgba(0,0,0,.24);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.reeid-guide-page--architecture
.reeid-arch-related-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--guide-accent),
            var(--guide-accent-light),
            transparent 88%
        );
}

.reeid-guide-page--architecture
.reeid-arch-related-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -72px;
    width: 155px;
    height: 155px;
    border: 1px solid rgba(var(--guide-accent-rgb), .09);
    border-radius: 50%;
    pointer-events: none;
}

.reeid-guide-page--architecture
.reeid-arch-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--guide-accent-rgb), .48);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055),
        0 30px 68px rgba(0,0,0,.34);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--architecture
.reeid-arch-related-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px !important;
    color: #fff !important;
    font-size: clamp(24px, 2vw, 30px) !important;
    line-height: 1.17 !important;
    letter-spacing: -.025em !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--architecture
.reeid-arch-related-card > p:not(.reeid-guide-step-icon):not(.reeid-arch-related-link) {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    margin: 0 0 25px !important;
    color: var(--ri-muted) !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
}

.reeid-guide-page--architecture
.reeid-arch-related-link {
    position: relative;
    z-index: 1;
    margin: auto 0 0 !important;
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.075);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--architecture
.reeid-arch-related-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.reeid-guide-page--architecture
.reeid-arch-related-link a span {
    color: var(--guide-accent-light);
    font-size: 20px;
    line-height: 1;
    transition: transform .2s ease;
}

.reeid-guide-page--architecture
.reeid-arch-related-link a:hover span {
    transform: translateX(4px);
}

.reeid-guide-page--architecture
.reeid-arch-related-directory {
    margin: 36px 0 0 !important;
    text-align: center;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--architecture
.reeid-arch-related-directory a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    border: 1px solid rgba(var(--guide-accent-rgb), .28);
    border-radius: 999px;
    background: rgba(var(--guide-accent-rgb), .07);
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition:
        border-color .2s ease,
        background .2s ease;
}

.reeid-guide-page--architecture
.reeid-arch-related-directory a:hover {
    border-color: rgba(var(--guide-accent-rgb), .48);
    background: rgba(var(--guide-accent-rgb), .12);
}

@media (max-width: 900px) {
    .reeid-guide-page--architecture
    .reeid-arch-related-grid {
        flex-wrap: wrap !important;
    }

    .reeid-guide-page--architecture
    .reeid-arch-related-grid > .wp-block-column {
        flex-basis: calc(50% - 10px) !important;
    }
}

@media (max-width: 600px) {
    .reeid-guide-page--architecture
    .reeid-arch-related-grid > .wp-block-column {
        flex-basis: 100% !important;
    }

    .reeid-guide-page--architecture
    .reeid-arch-related-card {
        min-height: 0;
        padding: 28px 25px 25px;
    }
}


/* Architecture page background unification */

.reeid-guide-page--architecture.reeid-int-page {
    background:
        radial-gradient(
            circle at 12% 5%,
            rgba(var(--guide-accent-rgb), .11),
            transparent 29%
        ),
        radial-gradient(
            circle at 88% 8%,
            rgba(7, 89, 133, .13),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            #071019 0%,
            #070b12 26%,
            #06080e 58%,
            #05060a 100%
        );
    background-color: #05060a;
}


/* Architecture upper color unification */

.reeid-guide-page--architecture
.reeid-int-hero::before {
    border-color: rgba(var(--guide-accent-rgb), .24);
    box-shadow:
        0 0 0 70px rgba(var(--guide-accent-rgb), .025),
        0 0 0 140px rgba(var(--guide-accent-rgb), .014);
}

.reeid-guide-page--architecture
.reeid-int-trust-grid {
    border-color: rgba(var(--guide-accent-rgb), .24);
    background: rgba(var(--guide-accent-rgb), .16);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035),
        0 18px 46px rgba(0,0,0,.22);
}

.reeid-guide-page--architecture
.reeid-int-trust-grid > .wp-block-column {
    background:
        linear-gradient(
            180deg,
            rgba(var(--guide-accent-rgb), .045),
            rgba(255,255,255,.01)
        ),
        rgba(7,13,20,.97);
}

.reeid-guide-page--architecture
.reeid-int-trust-grid > .wp-block-column:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.075);
}

.reeid-guide-page--architecture
.reeid-arch-thesis {
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(var(--guide-accent-rgb), .065),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.012),
            transparent 24%
        ),
        rgba(5,10,16,.68);
}

.reeid-guide-page--architecture
.reeid-arch-problem-card {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            transparent 52%
        ),
        #10141a;
}

@media (max-width: 781px) {
    .reeid-guide-page--architecture
    .reeid-int-trust-grid > .wp-block-column:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.075);
    }
}


/* Architecture final CTA spacing */

.reeid-guide-page--architecture
.reeid-arch-related {
    padding-bottom: clamp(62px, 6vw, 82px);
}

.reeid-guide-page--architecture
.reeid-arch-final {
    padding-top: 0;
}

@media (max-width: 781px) {
    .reeid-guide-page--architecture
    .reeid-arch-related {
        padding-bottom: 48px;
    }
}


/* Classic Editor content boundary refinement */

.reeid-guide-page--classic
.reeid-guide-definition-box {
    text-align: left;
}

.reeid-guide-page--classic
.reeid-guide-definition-box > * {
    max-width: 980px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--classic
.reeid-guide-definition-box h3 {
    margin-bottom: 20px !important;
    color: #fff !important;
    font-size: clamp(26px, 2.7vw, 38px) !important;
    line-height: 1.3 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--classic
.reeid-guide-definition-text {
    margin-bottom: 20px !important;
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--classic
.reeid-guide-definition-note {
    padding-top: 19px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: var(--ri-muted) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}


/* Classic Editor related guides */

.reeid-guide-page--classic
.reeid-guide-related-grid {
    gap: 20px;
    align-items: stretch;
    margin-top: 0;
}

.reeid-guide-page--classic
.reeid-guide-related-grid > .wp-block-column {
    display: flex;
    min-width: 0;
}

.reeid-guide-page--classic
.reeid-guide-related-card {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    padding: 32px 30px 29px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 21px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(var(--guide-accent-rgb), .13),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.046),
            rgba(255,255,255,.017)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 20px 50px rgba(0,0,0,.24);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.reeid-guide-page--classic
.reeid-guide-related-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--guide-accent),
            var(--guide-accent-light),
            transparent 88%
        );
}

.reeid-guide-page--classic
.reeid-guide-related-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -72px;
    width: 155px;
    height: 155px;
    border: 1px solid rgba(var(--guide-accent-rgb), .09);
    border-radius: 50%;
    pointer-events: none;
}

.reeid-guide-page--classic
.reeid-guide-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--guide-accent-rgb), .48);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055),
        0 30px 68px rgba(0,0,0,.34);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--classic
.reeid-guide-related-number {
    position: absolute;
    right: 25px;
    top: 24px;
    margin: 0 !important;
    color: rgba(255,255,255,.12) !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    letter-spacing: -.05em !important;
    line-height: 1 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--classic
.reeid-guide-related-label {
    width: fit-content;
    margin: 0 0 27px !important;
    padding: 7px 10px 6px;
    border: 1px solid rgba(var(--guide-accent-rgb), .32);
    border-radius: 999px;
    background: rgba(var(--guide-accent-rgb), .1);
    color: var(--guide-accent-light) !important;
    font-size: 10px !important;
    font-weight: 850 !important;
    letter-spacing: .13em !important;
    line-height: 1 !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--classic
.reeid-guide-related-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px !important;
    color: #fff !important;
    font-size: clamp(27px, 2.2vw, 34px) !important;
    line-height: 1.15 !important;
    letter-spacing: -.025em !important;
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--classic
.reeid-guide-related-text {
    position: relative;
    z-index: 1;
    margin: 0 0 25px !important;
    color: var(--ri-muted) !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
}

.reeid-guide-page--classic
.reeid-guide-related-link {
    position: relative;
    z-index: 1;
    margin: auto 0 0 !important;
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.075);
}

body:not(.wp-admin):not(.block-editor-iframe__body)
.reeid-guide-page--classic
.reeid-guide-related-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.reeid-guide-page--classic
.reeid-guide-related-link a span {
    color: var(--guide-accent-light);
    font-size: 20px;
    line-height: 1;
    transition: transform .2s ease;
}

.reeid-guide-page--classic
.reeid-guide-related-link a:hover span {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .reeid-guide-page--classic
    .reeid-guide-related-grid {
        flex-wrap: wrap !important;
    }

    .reeid-guide-page--classic
    .reeid-guide-related-grid > .wp-block-column {
        flex-basis: calc(50% - 10px) !important;
    }
}

@media (max-width: 600px) {
    .reeid-guide-page--classic
    .reeid-guide-related-grid > .wp-block-column {
        flex-basis: 100% !important;
    }

    .reeid-guide-page--classic
    .reeid-guide-related-card {
        min-height: 0;
        padding: 28px 25px 25px;
    }
}
