:root {
            --c1: #2563eb;
            --c2: #f59e0b;
            --c3: #047857;
            --c4: #fff;
            --c5: #1e293b;
            --c6: #0f172a;
            --c7: #1e293b;
            --mw: 1100px
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--c5);
            background: var(--c4);
            overflow-x: hidden;
            line-height: 1.6
        }

        a {
            color: var(--c1);
            text-decoration: none;
            transition: color .15s
        }

        a:hover {
            text-decoration: underline
        }

        p,
        li,
        td {
            word-wrap: break-word;
            overflow-wrap: break-word
        }

        .wr {
            max-width: var(--mw);
            margin: 0 auto;
            padding: 0 20px
        }

        header {
            position: sticky;
            top: 0;
            background: #fff;
            box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
            z-index: 100
        }

        header .wr {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            gap: 16px
        }

        .lg {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--c1);
            text-decoration: none
        }

        .lg span {
            color: var(--c2)
        }

        .nv {
            display: flex;
            gap: 24px;
            list-style: none
        }

        .nv a {
            color: var(--c5);
            font-size: .9rem;
            font-weight: 500
        }

        .nv a:hover {
            color: var(--c1);
            text-decoration: none
        }

        .cta-btn {
            background: var(--c3);
            color: #fff;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 600;
            font-size: .85rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background .15s, transform .15s;
            box-shadow: 0 1px 2px rgba(0, 0, 0, .08)
        }

        .cta-btn:hover {
            background: #059669;
            transform: translateY(-1px);
            text-decoration: none;
            color: #fff
        }

        .cta-btn:active {
            transform: translateY(0)
        }

        .hr {
            background: linear-gradient(135deg, #1e40af, var(--c1), #3b82f6);
            padding: 52px 0;
            text-align: center;
            color: #fff
        }

        .hr h1 {
            font-size: 2rem;
            max-width: 720px;
            margin: 0 auto .5em;
            line-height: 1.25
        }

        .hr p {
            font-size: 1.05rem;
            opacity: .95;
            max-width: 620px;
            margin: 0 auto
        }

        .ac {
            padding: 40px 0 60px
        }

        .ac h2 {
            font-size: 1.4rem;
            margin: 2em 0 .8em;
            padding-bottom: .3em;
            border-bottom: 2px solid var(--c1);
            line-height: 1.3
        }

        .ac h3 {
            font-size: 1.1rem;
            margin: 1.5em 0 .5em;
            color: var(--c7);
            font-weight: 700
        }

        .ac p {
            margin: .8em 0;
            line-height: 1.75;
            max-width: 72ch
        }

        .ac ul,
        .ac ol {
            margin: 1em 0;
            padding-left: 1.5em
        }

        .ac li {
            margin: .4em 0;
            line-height: 1.6
        }

        .ac table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5em 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, .06)
        }

        .ac th {
            background: var(--c1);
            color: #fff;
            padding: 10px 14px;
            font-size: .85rem;
            text-align: left
        }

        .ac td {
            padding: 10px 14px;
            border-bottom: 1px solid #e5e7eb;
            font-size: .9rem
        }

        .ac tr:nth-child(even) td {
            background: #f8fafc
        }

        .ac strong {
            color: var(--c7)
        }

        .ac a {
            color: var(--c1);
            text-decoration: underline;
            text-underline-offset: 2px;
            text-decoration-thickness: 1px
        }

        .ac a:hover {
            color: #1d4ed8;
            text-decoration-thickness: 2px
        }

        .ac blockquote {
            border-left: 3px solid var(--c1);
            padding: .5em 1em;
            margin: 1em 0;
            background: #f1f5f9;
            border-radius: 0 6px 6px 0
        }

        .ac details {
            margin: .6em 0;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 0
        }

        .ac details[open] {
            background: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, .04)
        }

        .ac details summary {
            padding: 14px 18px;
            cursor: pointer;
            font-weight: 600;
            list-style: none;
            position: relative;
            line-height: 1.4
        }

        .ac details summary::-webkit-details-marker {
            display: none
        }

        .ac details summary::after {
            content: "+";
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.25rem;
            color: var(--c1);
            font-weight: 700;
            transition: transform .15s
        }

        .ac details[open] summary::after {
            content: "\2212"
        }

        .ac details> :not(summary) {
            padding: 0 18px 14px
        }

        .ac details p {
            margin: .4em 0
        }

        footer {
            background: var(--c6);
            color: #cbd5e1;
            padding: 40px 0;
            font-size: .85rem
        }

        footer .wr {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px
        }

        .ft-lg {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px
        }

        .ft-lk {
            list-style: none;
            display: flex;
            gap: 16px;
            flex-wrap: wrap
        }

        .ft-lk a {
            color: #cbd5e1;
            font-size: .85rem
        }

        .ft-lk a:hover {
            color: #fff;
            text-decoration: underline
        }

        .ft-dc {
            width: 100%;
            padding-top: 16px;
            border-top: 1px solid #1e293b;
            line-height: 1.6;
            color: #94a3b8;
            font-size: .78rem
        }

        .ft-dc .badge {
            display: inline-block;
            background: #dc2626;
            color: #fff;
            font-weight: 700;
            font-size: .72rem;
            padding: 2px 7px;
            border-radius: 4px;
            margin-right: 6px;
            vertical-align: baseline
        }

        .ft-dc a {
            color: #e2e8f0;
            text-decoration: underline
        }

        .ft-dc a:hover {
            color: #fff
        }

        .ab {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 20px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin: 0 0 32px
        }

        .ab-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: .95rem;
            color: #fff;
            background: linear-gradient(135deg, var(--c1), #7c3aed);
            flex-shrink: 0
        }

        .ab-info {
            flex: 1;
            min-width: 0
        }

        .ab-name {
            font-weight: 700;
            font-size: .95rem;
            color: #1e293b
        }

        .ab-name a {
            color: var(--c1);
            text-decoration: none
        }

        .ab-name a:hover {
            text-decoration: underline
        }

        .ab-role {
            font-size: .8rem;
            color: #64748b;
            margin-top: 2px
        }

        .ab-date {
            font-size: .75rem;
            color: #94a3b8;
            margin-top: 2px
        }

        .ab-bio {
            font-size: .85rem;
            color: #475569;
            margin-top: 8px;
            line-height: 1.55
        }

        .ac table:first-of-type {
            border-collapse: separate;
            border-spacing: 0 8px;
            box-shadow: none;
            background: transparent;
            margin: 1em 0 2em
        }

        .ac table:first-of-type thead th {
            background: transparent;
            color: var(--c1);
            font-size: .7rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            padding: 0 14px 6px;
            border: none;
            font-weight: 600
        }

        .ac table:first-of-type tbody tr {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
            transition: transform .15s, box-shadow .15s
        }

        .ac table:first-of-type tbody tr:hover {
            transform: translateY(-1px);
            box-shadow: 0 3px 12px rgba(0, 0, 0, .08)
        }

        .ac table:first-of-type tbody tr:nth-child(even) {
            background: #fff
        }

        .ac table:first-of-type td {
            padding: 12px 14px;
            border: none;
            vertical-align: middle;
            font-size: .9rem
        }

        .ac table:first-of-type td:first-child {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--c1);
            width: 32px;
            text-align: center
        }

        .ac table:first-of-type td:nth-child(2) {
            font-weight: 600;
            color: #1e293b;
            font-size: .95rem
        }

        .ac table:first-of-type td:last-child {
            font-weight: 700;
            color: var(--c3);
            font-size: .95rem
        }

        .ac table:first-of-type tbody tr:first-child {
            box-shadow: 0 0 0 2px var(--c1), 0 2px 8px rgba(0, 0, 0, .08)
        }

        @media(max-width:768px) {
            .ab {
                flex-direction: column;
                text-align: center;
                align-items: center
            }

            .ab-avatar {
                margin: 0 auto
            }

            .wr {
                padding: 0 14px
            }

            .hr {
                padding: 32px 0
            }

            .hr h1 {
                font-size: 1.4rem
            }

            .ac h2 {
                font-size: 1.2rem
            }

            .ac table:first-of-type {
                display: block
            }

            .ac table:not(:first-of-type) {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch
            }

            th,
            td {
                white-space: nowrap;
                font-size: .8rem
            }

            .nv {
                display: none
            }

            footer .wr {
                flex-direction: column
            }
        }

        html {
            -webkit-text-size-adjust: 100%;
            max-width: 100vw;
            overflow-x: hidden
        }

        body {
            overflow-x: hidden;
            overscroll-behavior-x: none;
            max-width: 100vw
        }

        img,
        video,
        iframe {
            max-width: 100%;
            height: auto
        }

        .skip {
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden
        }

        .skip:focus {
            position: fixed;
            left: 10px;
            top: 10px;
            width: auto;
            height: auto;
            padding: 10px 16px;
            background: var(--c1);
            color: #fff;
            z-index: 9999;
            border-radius: 6px
        }

        a:focus-visible,
        button:focus-visible,
        .cta-btn:focus-visible,
        .cc-btn:focus-visible,
        .hd-cta:focus-visible {
            outline: 2px solid var(--c1);
            outline-offset: 3px;
            border-radius: 4px
        }

        .cta-btn,
        .cc-btn,
        .hd-cta,
        a.btn,
        button.btn {
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            line-height: 1.2
        }

        .nv a {
            padding: 10px 0;
            display: inline-block
        }

        .hr h1 {
            font-size: clamp(1.75rem, 5vw, 2.75rem);
            line-height: 1.2
        }

        .hr p,
        .hr .sub {
            line-height: 1.5
        }

        .ac h2 {
            font-size: clamp(1.35rem, 3.5vw, 1.8rem);
            line-height: 1.3;
            margin-top: 1.75em
        }

        .ac h3 {
            font-size: clamp(1.1rem, 2.8vw, 1.3rem);
            line-height: 1.35
        }

        .ac p,
        .ac li {
            line-height: 1.65;
            max-width: 72ch
        }

        .ac table {
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth
        }

        .ac thead th {
            position: sticky;
            top: 0;
            background: var(--c1);
            color: #fff;
            z-index: 1
        }

        footer a {
            color: #e2e8f0
        }

        footer a:hover {
            color: #fff
        }

        .ft-nv a,
        .ft-lk a {
            color: #cbd5e1
        }

        .ab {
            max-width: 768px;
            margin-left: auto;
            margin-right: auto
        }

        .trust {
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            padding: 18px 0
        }

        .trust-list {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 28px;
            list-style: none;
            justify-content: center;
            margin: 0;
            padding: 0
        }

        .trust-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .8rem;
            color: #475569
        }

        .trust-bx {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 28px;
            padding: 0 10px;
            border-radius: 6px;
            background: #fff;
            border: 1px solid #cbd5e1;
            font-weight: 700;
            font-size: .72rem;
            color: #1e293b;
            letter-spacing: .03em
        }

        .trust-list em {
            font-style: normal
        }

        .toc {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 0 0 28px
        }

        .toc-t {
            font-weight: 700;
            font-size: .85rem;
            color: #1e293b;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: .06em;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px
        }

        .toc-ch {
            font-size: .9em;
            color: #64748b;
            transition: transform .2s;
            display: inline-block
        }

        .toc ol {
            margin: 0;
            padding-left: 1.2em;
            columns: 2;
            column-gap: 28px
        }

        .toc li {
            margin: .25em 0;
            line-height: 1.4;
            break-inside: avoid
        }

        .toc a {
            color: #334155;
            text-decoration: none;
            font-size: .9rem
        }

        .toc a:hover {
            color: var(--c1);
            text-decoration: underline
        }

        .picks {
            background: #fff;
            border-bottom: 1px solid #e2e8f0;
            padding: 24px 0 20px
        }

        .picks-head {
            font-size: .72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: #475569;
            margin-bottom: 14px;
            text-align: center
        }

        .picks-list {
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .picks .of {
            padding: 16px 18px;
            position: relative
        }

        .picks .of[data-rank="1"] {
            border-left: 3px solid #eab308
        }

        .picks .of[data-rank="2"] {
            border-left: 3px solid #94a3b8
        }

        .picks .of[data-rank="3"] {
            border-left: 3px solid #b45309
        }

        .ab-bio-more {
            display: none
        }

        .offers {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 1.5em 0 2.2em
        }

        .of {
            display: grid;
            grid-template-columns: 36px 60px 1fr auto;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
            transition: transform .15s, box-shadow .15s, border-color .15s
        }

        .of:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
            border-color: #cbd5e1
        }

        .of[data-rank="1"] {
            border-left: 3px solid #eab308
        }

        .of-rank {
            font-weight: 800;
            font-size: 1.05rem;
            color: #94a3b8;
            text-align: center;
            font-variant-numeric: tabular-nums;
            letter-spacing: -.02em
        }

        .of[data-rank="1"] .of-rank {
            color: #b45309
        }

        .of[data-rank="2"] .of-rank {
            color: #475569
        }

        .of[data-rank="3"] .of-rank {
            color: #92400e
        }

        .of[data-rank="1"] {
            background: linear-gradient(135deg, #fff 60%, #fef3c7 100%);
            border-color: #fde68a
        }

        .of-logo {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            background: #0f172a;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: .02em;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
            overflow: hidden
        }

        .of-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit
        }

        .of-body {
            min-width: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 4px
        }

        .of-head {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            min-width: 0
        }

        .of-name {
            margin: 0;
            font-size: 1.05rem;
            font-weight: 700;
            color: #0f172a;
            min-width: 0;
            letter-spacing: -.01em;
            line-height: 1.25
        }

        .of-pick {
            display: inline-flex;
            align-items: center;
            background: #fbbf24;
            color: #0f172a;
            border: none;
            font-weight: 800;
            font-size: .66rem;
            padding: 4px 10px;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: .06em;
            line-height: 1;
            gap: 5px;
            box-shadow: 0 1px 2px rgba(180, 83, 9, .15)
        }

        .of-pick::before {
            content: "\2605";
            font-size: .78rem;
            color: #7c2d12
        }

        .of-stars {
            color: #eab308;
            font-size: .85rem;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 6px
        }

        .of-stars .rating-num {
            color: #475569;
            font-size: .8rem;
            font-weight: 600;
            letter-spacing: 0
        }

        .of-meta {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 14px;
            margin: 2px 0 0;
            padding: 0;
            font-size: .82rem;
            color: #475569
        }

        .of-meta li {
            position: relative;
            padding-left: 14px;
            line-height: 1.45
        }

        .of-meta li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .55em;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #10b981
        }

        .of-cta {
            white-space: nowrap;
            flex-shrink: 0
        }

        a.of-cta.cta-btn {
            background: #10b981;
            color: #fff;
            font-weight: 700;
            font-size: .88rem;
            padding: 11px 22px;
            border-radius: 8px;
            min-height: 44px;
            min-width: 120px;
            box-shadow: 0 1px 2px rgba(16, 185, 129, .2);
            letter-spacing: .01em;
            transition: background .15s, transform .15s, box-shadow .15s;
            text-decoration: none
        }

        a.of-cta.cta-btn::after {
            content: "\2192";
            margin-left: 8px;
            display: inline-block;
            transition: transform .15s
        }

        a.of-cta.cta-btn:hover {
            background: #059669;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(16, 185, 129, .3);
            text-decoration: none
        }

        a.of-cta.cta-btn:hover::after {
            transform: translateX(3px)
        }

        @media(max-width:768px) {
            .of {
                grid-template-columns: 30px 52px minmax(0, 1fr);
                grid-template-rows: auto auto;
                gap: 6px 12px;
                padding: 14px 14px 12px;
                align-items: center
            }

            .of-logo {
                width: 52px;
                height: 52px;
                font-size: .9rem;
                border-radius: 8px;
                grid-row: 1/3;
                align-self: center
            }

            .of-rank {
                font-size: .95rem;
                grid-row: 1/3;
                align-self: center
            }

            .of-body {
                grid-column: 3;
                grid-row: 1;
                gap: 3px
            }

            .of-cta {
                grid-column: 1/-1;
                grid-row: 3;
                justify-self: stretch;
                margin-top: 6px
            }

            a.of-cta.cta-btn {
                background: #10b981;
                color: #fff;
                border: none;
                padding: 12px 18px;
                font-size: .92rem;
                font-weight: 700;
                width: 100%;
                min-height: 46px;
                border-radius: 8px;
                box-shadow: 0 2px 6px rgba(16, 185, 129, .25)
            }

            a.of-cta.cta-btn::after {
                margin-left: 6px
            }

            a.of-cta.cta-btn:hover {
                background: #059669;
                color: #fff
            }

            .of-name {
                font-size: .98rem;
                line-height: 1.2
            }

            .of-pick {
                font-size: .58rem;
                padding: 2px 6px;
                letter-spacing: .04em
            }

            .of-stars {
                font-size: .82rem
            }

            .of-stars .rating-num {
                font-size: .78rem
            }

            .of-meta {
                gap: 3px 12px;
                font-size: .78rem
            }

            .of-meta li {
                padding-left: 11px
            }

            .picks .of,
            .of {
                padding: 14px 14px 12px
            }

            .hr {
                padding: 22px 0 !important
            }

            .hr h1 {
                font-size: 1.25rem;
                margin-bottom: 0;
                line-height: 1.25;
                overflow-wrap: anywhere;
                word-break: break-word
            }

            .hr p {
                display: none
            }

            .trust {
                padding: 10px 0
            }

            .trust .wr {
                padding: 0
            }

            .trust-list {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                justify-content: flex-start;
                padding: 0 16px;
                gap: 10px 14px;
                scrollbar-width: none
            }

            .trust-list::-webkit-scrollbar {
                display: none
            }

            .trust-list li {
                flex-shrink: 0;
                font-size: .72rem
            }

            .trust-list em {
                display: none
            }

            .trust-bx {
                min-width: 40px;
                height: 28px;
                font-size: .68rem;
                padding: 0 8px
            }

            .picks {
                padding: 14px 0 10px
            }

            .picks-head {
                font-size: .7rem;
                margin-bottom: 8px
            }

            .picks-list {
                gap: 8px
            }

            .toc-t {
                margin-bottom: 0
            }

            .toc ol {
                margin-top: 12px;
                columns: 1
            }

            .ab {
                padding: 14px;
                gap: 12px
            }

            .ab-bio {
                display: none;
                margin-top: 8px;
                font-size: .82rem;
                line-height: 1.5;
                color: #475569
            }

            .ab-bio-more {
                display: inline-block;
                margin-top: 6px;
                font-size: .78rem;
                font-weight: 600;
                color: var(--c1);
                cursor: pointer;
                user-select: none
            }

            .ab-bio-hide {
                display: none
            }

            .ab-bio-toggle:checked~.ab-bio {
                display: block
            }

            .ab-bio-toggle:checked~.ab-bio-more .ab-bio-show {
                display: none
            }

            .ab-bio-toggle:checked~.ab-bio-more .ab-bio-hide {
                display: inline
            }
        }

        .nv-toggle {
            display: none
        }

        .hamb {
            display: none;
            width: 40px;
            height: 40px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
            margin-left: auto
        }

        .hamb span {
            display: block;
            width: 22px;
            height: 2px;
            background: currentColor;
            border-radius: 2px;
            transition: transform .2s
        }

        @media(max-width:768px) {
            .hamb {
                display: flex
            }

            .nv {
                display: none !important;
                flex-direction: column;
                gap: 0;
                width: 100%;
                padding: 8px 0;
                border-top: 1px solid #e5e7eb;
                order: 10
            }

            .nv a {
                padding: 12px 4px;
                min-height: 44px;
                display: flex;
                align-items: center
            }

            .nv-toggle:checked~.nv {
                display: flex !important
            }

            header .wr {
                flex-wrap: wrap;
                height: auto;
                padding-top: 10px;
                padding-bottom: 10px;
                align-items: center;
                min-width: 0
            }

            .lg {
                font-size: 1rem !important;
                max-width: 55vw;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                flex: 0 1 auto;
                min-width: 0
            }

            .ft-dc {
                color: #cbd5e1;
                font-size: .8rem
            }

            .hr {
                padding-left: max(16px, 4vw) !important;
                padding-right: max(16px, 4vw) !important
            }

            .wr {
                padding-left: clamp(14px, 4vw, 20px);
                padding-right: clamp(14px, 4vw, 20px)
            }

            .cta-btn,
            .cc-btn {
                width: auto;
                max-width: 100%
            }

            header .cta-btn {
                display: none !important
            }

            .ac table {
                display: block;
                overflow-x: auto;
                max-width: 100%
            }

            .ac th,
            .ac td {
                white-space: nowrap;
                padding: 10px 12px
            }

            .ac h2 {
                margin-top: 1.5em
            }
        }

        @media(max-width:480px) {
            .ab {
                gap: 12px;
                padding: clamp(16px, 4vw, 24px)
            }

            .ab-avatar {
                width: 40px;
                height: 40px;
                font-size: .85rem;
                flex-shrink: 0
            }

            .hr {
                padding-top: clamp(28px, 8vw, 48px);
                padding-bottom: clamp(24px, 6vw, 40px)
            }

            .cc {
                padding: clamp(16px, 4vw, 24px)
            }
        }

        .hd-kw {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            border-radius: 999px;
            background: var(--c2, #f59e0b);
            color: #111 !important;
            font-weight: 600;
            text-decoration: none;
            margin-right: 10px
        }

        .hd-kw:hover {
            opacity: .9;
            text-decoration: none !important
        }

        .ft-supp {
            margin-top: 12px;
            font-size: .9rem;
            opacity: .9
        }

        .ft-supp a {
            color: inherit;
            text-decoration: none
        }

        .ft-supp a:hover {
            text-decoration: underline
        }

        .ac-fig {
            margin: 1.75rem auto;
            max-width: 900px
        }

        .ac-fig img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(15, 23, 42, .10)
        }

        .ac-fig figcaption {
            font-size: .875rem;
            color: #64748b;
            margin-top: .55rem;
            font-style: italic;
            text-align: center;
            line-height: 1.5
        }

        .ac-author-bio {
            display: flex;
            gap: 1rem;
            align-items: center;
            padding: 1rem 1.25rem;
            margin: 1.25rem 0 1.75rem;
            background: #f8fafc;
            border-radius: 12px;
            border-left: 4px solid #d4a544
        }

        .ac-author-bio img {
            border-radius: 50%;
            flex-shrink: 0;
            object-fit: cover;
            width: 64px;
            height: 64px;
            margin: 0
        }

        .ac-author-bio-name {
            font-weight: 600;
            color: #0f172a;
            font-size: .95rem
        }

        .ac-author-bio-meta {
            color: #64748b;
            font-size: .85rem;
            margin-top: .15rem
        }

        .ac-author-card {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            padding: 1.5rem;
            margin: 1.5rem 0;
            background: #f8fafc;
            border-radius: 16px
        }

        .ac-author-card img {
            border-radius: 50%;
            flex-shrink: 0;
            object-fit: cover;
            width: 148px;
            height: 148px;
            margin: 0;
            box-shadow: 0 4px 14px rgba(15, 23, 42, .10)
        }

        .ac-fig {
            margin: 2em auto;
            text-align: center;
            max-width: 720px
        }

        .repeat-cta {
            margin: 1.75em auto;
            text-align: center;
            max-width: 720px
        }

        .repeat-cta a.cta-btn {
            display: inline-flex;
            background: #10b981;
            color: #fff;
            font-weight: 700;
            padding: 13px 28px;
            border-radius: 8px;
            text-decoration: none;
            box-shadow: 0 2px 6px rgba(16, 185, 129, .25);
            font-size: .95rem;
            letter-spacing: .01em;
            transition: background .15s, transform .15s
        }

        .repeat-cta a.cta-btn:hover {
            background: #059669;
            transform: translateY(-1px);
            text-decoration: none
        }

        .repeat-cta a.cta-btn::after {
            content: "\2192";
            margin-left: 8px
        }

        .top10 {
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            padding: 28px 0 32px;
            scroll-margin-top: 80px
        }

        .top10-head {
            font-size: 1.05rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: #0f172a;
            margin: 0 auto 16px;
            text-align: center;
            max-width: 720px
        }

        .top10 .offers {
            margin: 0 auto;
            max-width: 720px
        }

        .toc-d {
            margin: 0
        }

        .toc-d>summary {
            list-style: none;
            cursor: pointer
        }

        .toc-d>summary::-webkit-details-marker {
            display: none
        }

        .toc-d[open]>summary .toc-ch {
            transform: rotate(180deg)
        }

        /* v3-visible-fixes */
        .ac {
            max-width: 768px;
            margin-left: auto;
            margin-right: auto
        }

        .toc {
            padding: 22px 28px
        }

        .toc ol {
            margin: 14px 0 0;
            padding: 0;
            list-style: none;
            counter-reset: toc;
            columns: 2;
            column-gap: 32px
        }

        .toc li {
            margin: 0;
            line-height: 1.4;
            break-inside: avoid;
            counter-increment: toc;
            padding: 6px 0 6px 34px;
            position: relative
        }

        .toc li::before {
            content: counter(toc, decimal-leading-zero);
            position: absolute;
            left: 0;
            top: 6px;
            font-size: .72rem;
            font-weight: 700;
            color: #94a3b8;
            font-variant-numeric: tabular-nums;
            letter-spacing: .02em
        }

        .toc-t {
            font-size: .78rem;
            color: #0f172a;
            letter-spacing: .08em;
            margin-bottom: 0
        }

        .top10 {
            padding: 32px 0 36px
        }

        .top10-head {
            margin-bottom: 8px
        }

        .top10-sub {
            font-size: .92rem;
            color: #475569;
            line-height: 1.6;
            text-align: center;
            max-width: 620px;
            margin: 0 auto 22px
        }

        .picks {
            padding: 24px 0 22px;
            border-bottom: none
        }

        .picks-head {
            margin-bottom: 6px
        }

        .picks-sub {
            font-size: .85rem;
            color: #64748b;
            text-align: center;
            margin: 0 auto 16px;
            max-width: 540px;
            line-height: 1.5
        }

        @media(max-width:768px) {
            .lg {
                order: 0 !important;
                flex: 1 1 0 !important;
                min-width: 0 !important;
                max-width: none !important;
                margin: 0 !important
            }

            .hamb {
                order: 1 !important;
                margin: 0 !important;
                flex-shrink: 0 !important
            }

            .nv {
                order: 100 !important;
                background: #fff
            }

            .nv li {
                border-bottom: 1px solid #f1f5f9
            }

            .nv li:last-child {
                border-bottom: none
            }

            .nv a {
                font-weight: 500;
                font-size: .95rem;
                padding: 14px 4px
            }

            .nv-toggle:checked~.hamb span:nth-child(1) {
                transform: translateY(6px) rotate(45deg)
            }

            .nv-toggle:checked~.hamb span:nth-child(2) {
                opacity: 0
            }

            .nv-toggle:checked~.hamb span:nth-child(3) {
                transform: translateY(-6px) rotate(-45deg)
            }

            .top10 {
                padding: 22px 0 26px
            }

            .top10-head {
                font-size: .95rem;
                margin-bottom: 6px
            }

            .top10-sub {
                font-size: .85rem;
                padding: 0 8px;
                margin-bottom: 16px
            }

            .picks-sub {
                font-size: .8rem;
                padding: 0 8px
            }

            .toc {
                padding: 18px 18px;
                margin-bottom: 22px
            }

            .toc ol {
                columns: 1
            }

            .toc li {
                padding: 5px 0 5px 32px
            }
        }
