.story-detail-page {
    --story-ink: #15213a;
    --story-slate: #53627d;
    --story-blue: #2f66d7;
    --story-blue-dark: #1f4079;
    --story-green: #2d9a63;
    --story-green-soft: #e7f7ef;
    --story-gold: #e6a63a;
    --story-mist: #f4f7fc;
    --story-line: #dce4f1;
    --story-white: #fff;
    color: var(--story-ink);
    background: var(--story-white);
    overflow: hidden;
}

.story-detail-page *,
.story-detail-page *::before,
.story-detail-page *::after {
    box-sizing: border-box;
}

.story-detail-hero {
    position: relative;
    padding: 86px 0 76px;
    background:
        radial-gradient(circle at 8% 12%, rgba(47, 102, 215, .13), transparent 28%),
        radial-gradient(circle at 91% 10%, rgba(45, 154, 99, .12), transparent 25%),
        linear-gradient(135deg, #f7faff 0%, #fff 53%, #f4fbf7 100%);
}

.story-detail-hero::after {
    position: absolute;
    right: -160px;
    bottom: -320px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(47, 102, 215, .12);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 56px rgba(47, 102, 215, .025), 0 0 0 112px rgba(47, 102, 215, .018);
}

.story-detail-breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
    color: #77849a;
    font-size: .82rem;
    font-weight: 700;
}

.story-detail-breadcrumb a {
    color: var(--story-blue);
    text-decoration: none;
}

.story-detail-breadcrumb a:hover {
    text-decoration: underline;
}

.story-detail-breadcrumb i {
    font-size: .75rem;
}

.story-detail-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(410px, .84fr);
    gap: clamp(54px, 7vw, 104px);
    align-items: center;
}

.story-detail-eyebrow,
.story-detail-kicker {
    color: var(--story-blue);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.story-detail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    padding: 8px 12px;
    border: 1px solid #cbdcf8;
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
}

.story-detail-eyebrow > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--story-green);
    box-shadow: 0 0 0 5px rgba(45, 154, 99, .14);
}

.story-detail-copy h1 {
    max-width: 700px;
    margin: 0 0 25px;
    color: var(--story-ink);
    font-size: clamp(3rem, 5.25vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .98;
}

.story-detail-copy h1 em {
    display: block;
    color: var(--story-blue);
    font-style: normal;
}

.story-detail-intro {
    max-width: 650px;
    margin: 0;
    color: var(--story-slate);
    font-size: 1.12rem;
    line-height: 1.75;
}

.story-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.story-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: .91rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.story-detail-btn:hover {
    transform: translateY(-2px);
}

.story-detail-btn-primary {
    color: #fff !important;
    background: var(--story-blue);
    box-shadow: 0 12px 28px rgba(47, 102, 215, .2);
}

.story-detail-btn-primary:hover {
    background: #2558c2;
    box-shadow: 0 15px 32px rgba(47, 102, 215, .28);
}

.story-detail-btn-secondary {
    color: var(--story-blue) !important;
    border-color: #cbd7ea;
    background: rgba(255, 255, 255, .8);
}

.story-detail-btn-secondary:hover {
    background: #fff;
}

.story-detail-definition {
    display: flex;
    gap: 10px;
    max-width: 625px;
    margin: 24px 0 0;
    color: #6b7890;
    font-size: .83rem;
    line-height: 1.55;
}

.story-detail-definition i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--story-green);
}

.story-detail-definition strong {
    color: #46546b;
}

.story-detail-evidence {
    position: relative;
    min-width: 0;
    padding: 32px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(145deg, #192d52 0%, #294b84 100%);
    box-shadow: 0 28px 60px rgba(22, 45, 84, .2);
    overflow: hidden;
}

.story-detail-evidence::before {
    position: absolute;
    right: -95px;
    bottom: -120px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .018);
}

.story-detail-evidence > * {
    position: relative;
    z-index: 1;
}

.story-detail-evidence-head {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 21px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.story-detail-logo-wrap {
    display: flex;
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.story-detail-logo {
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.story-detail-evidence-head > div:last-child {
    min-width: 0;
}

.story-detail-evidence-head span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd8ef;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .065em;
    text-transform: uppercase;
}

.story-detail-live-dot {
    display: inline-block;
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6bd696;
    box-shadow: 0 0 0 5px rgba(107, 214, 150, .14);
}

.story-detail-evidence-head strong {
    display: block;
    max-width: 275px;
    margin-top: 5px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-detail-total {
    padding: 28px 0 25px;
}

.story-detail-total strong {
    display: block;
    color: #fff;
    font-size: clamp(3.7rem, 5vw, 5rem);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .95;
}

.story-detail-total span {
    display: block;
    max-width: 340px;
    margin-top: 9px;
    color: #d7e1f2;
    font-size: .87rem;
    font-weight: 700;
    line-height: 1.45;
}

.story-detail-rating-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.story-detail-rating-grid > div {
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
}

.story-detail-rating-grid strong,
.story-detail-rating-grid span {
    display: block;
}

.story-detail-rating-grid strong {
    color: #fff;
    font-size: 1.35rem;
}

.story-detail-rating-grid span {
    margin-top: 4px;
    color: #bdcbe2;
    font-size: .72rem;
}

.story-detail-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 13px;
}

.story-detail-flow > div {
    position: relative;
    min-height: 78px;
    padding: 15px 11px 11px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .065);
}

.story-detail-flow i {
    display: block;
    margin-bottom: 9px;
    color: #81aaff;
    font-size: 1rem;
}

.story-detail-flow span {
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
}

.story-detail-flow b {
    position: absolute;
    top: 9px;
    right: 10px;
    color: rgba(255, 255, 255, .26);
    font-size: .65rem;
}

.story-detail-evidence-note {
    display: flex;
    gap: 8px;
    margin: 16px 0 0;
    color: #c3d0e5;
    font-size: .69rem;
    line-height: 1.45;
}

.story-detail-evidence-note i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #72d79b;
}

.story-detail-proof-strip {
    border-top: 1px solid var(--story-line);
    border-bottom: 1px solid var(--story-line);
    background: #fff;
}

.story-detail-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-detail-proof-grid > div {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 104px;
    padding: 18px 24px;
    border-right: 1px solid var(--story-line);
}

.story-detail-proof-grid > div:first-child {
    border-left: 1px solid var(--story-line);
}

.story-detail-proof-grid i {
    display: flex;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--story-blue);
    background: #eff4ff;
}

.story-detail-proof-grid span,
.story-detail-proof-grid strong {
    display: block;
}

.story-detail-proof-grid strong {
    margin-bottom: 2px;
    color: var(--story-ink);
    font-size: .82rem;
}

.story-detail-proof-grid span {
    color: #718098;
    font-size: .72rem;
    line-height: 1.35;
}

.story-detail-section {
    padding: 96px 0;
}

.story-detail-section-heading {
    max-width: 765px;
    margin-bottom: 43px;
}

.story-detail-section-heading h2,
.story-detail-history-heading h2,
.story-detail-context h2,
.story-detail-related-heading h2,
.story-detail-final h2 {
    margin: 12px 0 16px;
    color: var(--story-ink);
    font-size: clamp(2.15rem, 3.2vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.story-detail-section-heading p,
.story-detail-history-heading p {
    margin: 0;
    color: var(--story-slate);
    font-size: 1rem;
    line-height: 1.75;
}

.story-detail-signals {
    background: var(--story-mist);
}

.story-detail-signal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.story-detail-signal-grid article {
    min-width: 0;
    padding: 27px 24px 25px;
    border: 1px solid #dbe4f1;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 13px 28px rgba(30, 55, 94, .045);
}

.story-detail-signal-icon {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 12px;
    color: var(--story-blue);
    background: #edf3ff;
}

.story-detail-signal-grid article > strong {
    display: block;
    color: var(--story-blue-dark);
    font-size: clamp(1.55rem, 2.25vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.story-detail-signal-grid h3 {
    margin: 12px 0 8px;
    color: var(--story-ink);
    font-size: .94rem;
    font-weight: 800;
}

.story-detail-signal-grid p {
    margin: 0;
    color: #748198;
    font-size: .78rem;
    line-height: 1.58;
}

.story-detail-context {
    background: #fff;
}

.story-detail-context-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 24px;
}

.story-detail-profile-card,
.story-detail-method-card {
    padding: clamp(30px, 4vw, 50px);
    border-radius: 22px;
}

.story-detail-profile-card {
    position: relative;
    border: 1px solid #dce4f1;
    background:
        radial-gradient(circle at 96% 5%, rgba(47, 102, 215, .1), transparent 31%),
        #fff;
    overflow: hidden;
}

.story-detail-profile-card h2,
.story-detail-method-card h2 {
    font-size: clamp(1.9rem, 2.75vw, 2.75rem);
}

.story-detail-profile-card > p {
    max-width: 680px;
    margin: 0;
    color: var(--story-slate);
    font-size: 1rem;
    line-height: 1.78;
}

.story-detail-profile-result {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    padding: 16px 18px;
    border-radius: 13px;
    color: #256d4b;
    background: var(--story-green-soft);
    font-size: .86rem;
    line-height: 1.45;
}

.story-detail-profile-result i {
    font-size: 1.15rem;
}

.story-detail-method-card {
    color: #fff;
    background: var(--story-ink);
}

.story-detail-method-card .story-detail-kicker {
    color: #7ea9ff;
}

.story-detail-method-card h2 {
    color: #fff;
}

.story-detail-method-card ul {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.story-detail-method-card li {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #d2dbea;
    font-size: .82rem;
    line-height: 1.5;
}

.story-detail-method-card li i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #63d08f;
}

.story-detail-method-card li.story-detail-method-excluded {
    color: #9eabc0;
}

.story-detail-method-card li.story-detail-method-excluded i {
    color: #e59b75;
}

.story-detail-history {
    border-top: 1px solid var(--story-line);
    background:
        linear-gradient(rgba(238, 243, 251, .7) 1px, transparent 1px),
        linear-gradient(90deg, rgba(238, 243, 251, .7) 1px, transparent 1px),
        #f9fbfe;
    background-size: 34px 34px;
}

.story-detail-history-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 40px;
}

.story-detail-history-heading h2 {
    margin-bottom: 0;
}

.story-detail-history-shell {
    max-width: 1050px;
    margin: 0 auto;
    border: 1px solid #d8e1ee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(29, 52, 88, .08);
    overflow: hidden;
}

.story-detail-history-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 67px;
    padding: 15px 24px;
    border-bottom: 1px solid #dfe6f0;
    color: #68768c;
    background: #f7f9fc;
    font-size: .78rem;
}

.story-detail-history-toolbar > span:first-child {
    display: flex;
    align-items: center;
    gap: 9px;
}

.story-detail-history-toolbar strong {
    color: var(--story-ink);
}

.story-detail-review-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 220px;
    border-bottom: 1px solid #e1e7f0;
}

.story-detail-review-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 28px 20px;
    border-right: 1px solid #e3e9f2;
    background: #f8fafd;
    color: #607089;
    font-size: .73rem;
    font-weight: 700;
    text-align: center;
}

.story-detail-review-logo {
    display: block;
    width: 58px;
    height: 58px;
    border: 1px solid #dce4ef;
    border-radius: 15px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 8px 18px rgba(32, 57, 94, .08);
}

.story-detail-review-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 30px 34px;
}

.story-detail-review-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.story-detail-score-badge {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 10px;
    border-radius: 999px;
    color: #226d49;
    background: var(--story-green-soft);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.story-detail-review-topline time {
    color: #8490a3;
    font-size: .72rem;
    font-weight: 700;
}

.story-detail-review-text {
    margin: 19px 0 22px;
    color: #35435a;
    font-size: 1rem;
    line-height: 1.72;
    overflow-wrap: anywhere;
    white-space: pre-line;
}

.story-detail-review-text.story-detail-rating-only {
    color: #7b8799;
    font-style: italic;
}

.story-detail-reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #77849a;
    font-size: .74rem;
}

.story-detail-reviewer strong {
    color: #4b5970;
}

.story-detail-reviewer-mark {
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--story-blue);
    background: #edf3ff;
}

.story-detail-empty {
    padding: 70px 30px;
    text-align: center;
}

.story-detail-empty > i {
    color: #9aabc2;
    font-size: 2rem;
}

.story-detail-empty h3 {
    margin: 15px 0 6px;
    color: var(--story-ink);
    font-size: 1.2rem;
}

.story-detail-empty p {
    margin: 0;
    color: var(--story-slate);
}

.story-detail-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 25px;
    background: #f7f9fc;
}

.story-detail-page-button {
    display: inline-flex;
    min-width: 38px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #d6deea;
    border-radius: 8px;
    color: #53627a;
    background: #fff;
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none !important;
}

.story-detail-page-button:hover,
.story-detail-page-current {
    color: #fff;
    border-color: var(--story-blue);
    background: var(--story-blue);
}

.story-detail-related {
    background: #fff;
}

.story-detail-related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.story-detail-related-heading h2 {
    margin-bottom: 0;
}

.story-detail-related-heading > a {
    flex: 0 0 auto;
    color: var(--story-blue);
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
}

.story-detail-related-heading > a:hover {
    text-decoration: underline;
}

.story-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.story-detail-related-card {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 17px;
    padding: 20px;
    border: 1px solid #dce4ef;
    border-radius: 16px;
    color: inherit;
    background: #fff;
    text-decoration: none !important;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.story-detail-related-card:hover {
    transform: translateY(-3px);
    border-color: #b8cae8;
    box-shadow: 0 15px 30px rgba(33, 57, 94, .08);
}

.story-detail-related-logo-wrap {
    display: flex;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 13px;
    background: #f4f7fb;
}

.story-detail-related-logo {
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.story-detail-related-copy {
    min-width: 0;
}

.story-detail-related-copy small,
.story-detail-related-copy strong,
.story-detail-related-copy > span {
    display: block;
}

.story-detail-related-copy small {
    margin-bottom: 4px;
    color: var(--story-green);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.story-detail-related-copy strong {
    color: var(--story-ink);
    font-size: .92rem;
    line-height: 1.3;
}

.story-detail-related-copy > span {
    margin-top: 8px;
    color: var(--story-blue);
    font-size: .72rem;
    font-weight: 800;
}

.story-detail-final {
    padding: 0 0 90px;
    background: #fff;
}

.story-detail-final-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
    gap: 50px;
    align-items: center;
    padding: clamp(38px, 5vw, 62px);
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #182c50 0%, #2d5798 100%);
    overflow: hidden;
}

.story-detail-final-shell::after {
    position: absolute;
    right: -110px;
    bottom: -210px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 48px rgba(255, 255, 255, .025), 0 0 0 96px rgba(255, 255, 255, .018);
}

.story-detail-final-shell > * {
    position: relative;
    z-index: 1;
}

.story-detail-final-copy > span {
    color: #80aaff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.story-detail-final h2 {
    max-width: 720px;
    margin-bottom: 13px;
    color: #fff;
}

.story-detail-final-copy p {
    max-width: 680px;
    margin: 0;
    color: #cbd7ea;
    line-height: 1.65;
}

.story-detail-final-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-detail-final-cta > strong {
    color: #fff;
    font-size: 1.85rem;
}

.story-detail-final-cta > span {
    margin: 3px 0 17px;
    color: #c4d1e5;
    font-size: .75rem;
}

.story-detail-btn-light {
    color: var(--story-blue-dark) !important;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .13);
}

.story-detail-mobile-cta {
    display: none;
}

@media (max-width: 1199.98px) {
    .story-detail-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
        gap: 45px;
    }

    .story-detail-signal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-detail-proof-grid > div {
        padding: 16px;
    }
}

@media (max-width: 991.98px) {
    .story-detail-hero {
        padding: 62px 0 70px;
    }

    .story-detail-hero-grid,
    .story-detail-context-grid,
    .story-detail-history-heading,
    .story-detail-final-shell {
        grid-template-columns: 1fr;
    }

    .story-detail-copy h1 {
        max-width: 800px;
    }

    .story-detail-evidence {
        max-width: 650px;
    }

    .story-detail-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-detail-proof-grid > div:nth-child(3) {
        border-left: 1px solid var(--story-line);
    }

    .story-detail-proof-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--story-line);
    }

    .story-detail-related-grid {
        grid-template-columns: 1fr;
    }

    .story-detail-history-heading {
        gap: 17px;
    }
}

@media (max-width: 767.98px) {
    .story-detail-page {
        padding-bottom: 76px;
    }

    .story-detail-hero {
        padding: 42px 0 54px;
    }

    .story-detail-breadcrumb {
        margin-bottom: 30px;
    }

    .story-detail-copy h1 {
        font-size: clamp(2.55rem, 12vw, 3.65rem);
    }

    .story-detail-intro {
        font-size: 1rem;
    }

    .story-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .story-detail-btn {
        width: 100%;
    }

    .story-detail-evidence {
        padding: 24px;
        border-radius: 19px;
    }

    .story-detail-section {
        padding: 70px 0;
    }

    .story-detail-signal-grid,
    .story-detail-proof-grid {
        grid-template-columns: 1fr;
    }

    .story-detail-proof-grid > div,
    .story-detail-proof-grid > div:nth-child(3) {
        border-right: 1px solid var(--story-line);
        border-bottom: 1px solid var(--story-line);
        border-left: 1px solid var(--story-line);
    }

    .story-detail-proof-grid > div:last-child {
        border-bottom: 0;
    }

    .story-detail-profile-card,
    .story-detail-method-card {
        padding: 28px 23px;
        border-radius: 18px;
    }

    .story-detail-history-shell {
        border-radius: 17px;
    }

    .story-detail-review-card {
        grid-template-columns: 1fr;
    }

    .story-detail-review-source {
        flex-direction: row;
        justify-content: flex-start;
        padding: 18px 22px;
        border-right: 0;
        border-bottom: 1px solid #e3e9f2;
        text-align: left;
    }

    .story-detail-review-logo {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }

    .story-detail-review-body {
        padding: 25px 22px;
    }

    .story-detail-history-toolbar,
    .story-detail-review-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .story-detail-history-toolbar {
        justify-content: center;
    }

    .story-detail-review-topline {
        gap: 9px;
    }

    .story-detail-related-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .story-detail-final {
        padding-bottom: 60px;
    }

    .story-detail-final-shell {
        gap: 28px;
        padding: 34px 24px;
        border-radius: 19px;
    }

    .story-detail-final-cta {
        width: 100%;
    }

    .story-detail-mobile-cta {
        position: fixed;
        z-index: 999;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 14px;
        border-top: 1px solid #d8e0ec;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -10px 30px rgba(25, 45, 76, .1);
        backdrop-filter: blur(10px);
    }

    .story-detail-mobile-cta > div {
        min-width: 0;
    }

    .story-detail-mobile-cta strong,
    .story-detail-mobile-cta span {
        display: block;
    }

    .story-detail-mobile-cta strong {
        color: var(--story-ink);
        font-size: .82rem;
    }

    .story-detail-mobile-cta span {
        color: #6f7d92;
        font-size: .63rem;
    }

    .story-detail-mobile-cta .story-detail-btn {
        width: auto;
        min-width: 100px;
        min-height: 43px;
        padding: 0 16px;
    }
}

@media (max-width: 419.98px) {
    .story-detail-rating-grid,
    .story-detail-flow {
        grid-template-columns: 1fr;
    }

    .story-detail-flow > div {
        min-height: 65px;
    }

    .story-detail-related-card {
        align-items: flex-start;
    }

    .story-detail-related-logo-wrap {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .story-detail-page *,
    .story-detail-page *::before,
    .story-detail-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
