/*
 * Shared blog content styles.
 *
 * Loaded by the alluxi.com React app (via public/index.html) and by the
 * blog.alluxi.com Ghost theme (via Settings -> Code Injection -> Site Header).
 *
 * Selectors target both wrappers so the same rules render correctly on:
 *   - .blog_description  (React BlogDetail wrapper)
 *   - .js-post-content   (Ghost theme post body wrapper)
 *
 * This is the single source of truth for custom blog block styles. Any change
 * here ships to both sites: deploy alluxi.com and Ghost picks it up on next
 * page load (cache busting handled by appending ?v=N to the link tag).
 */

:where(.blog_description, .js-post-content) .callout {
    background: #eef3fd;
    border-left: 4px solid #3973e7;
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin: 2rem 0;
}

:where(.blog_description, .js-post-content) .callout p {
    margin: 0;
    color: #1a2a5e;
    font-size: 1rem;
    font-style: italic;
}

:where(.blog_description, .js-post-content) .callout strong {
    color: #030448;
    font-style: normal;
}

:where(.blog_description, .js-post-content) .callout.amber {
    background: #fef3e2;
    border-left-color: #d97706;
}

:where(.blog_description, .js-post-content) .callout.amber p {
    color: #7c4a00;
}

:where(.blog_description, .js-post-content) .callout.amber strong {
    color: #92400e;
}

:where(.blog_description, .js-post-content) .callout.purple {
    background: #f5f3ff;
    border-left-color: #7c3aed;
}

:where(.blog_description, .js-post-content) .callout.purple p {
    color: #3b0764;
}

:where(.blog_description, .js-post-content) .callout.purple strong {
    color: #4c1d95;
}

:where(.blog_description, .js-post-content) .callout.red {
    background: #fef2f2;
    border-left-color: #dc2626;
}

:where(.blog_description, .js-post-content) .callout.red p {
    color: #7f1d1d;
}

:where(.blog_description, .js-post-content) .callout.red strong {
    color: #991b1b;
}

:where(.blog_description, .js-post-content) .callout.green {
    background: #e8f7f2;
    border-left-color: #0f9d6e;
}

:where(.blog_description, .js-post-content) .callout.green p {
    color: #064e35;
}

:where(.blog_description, .js-post-content) .callout.green strong {
    color: #065f46;
}

:where(.blog_description, .js-post-content) .stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 2rem 0;
}

:where(.blog_description, .js-post-content) .stat-card {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(3, 4, 72, 0.05);
}

:where(.blog_description, .js-post-content) .stat-card .num {
    font-family: Manrope, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #3973e7;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

:where(.blog_description, .js-post-content) .stat-card .num.green {
    color: #0f9d6e;
}

:where(.blog_description, .js-post-content) .stat-card .num.purple {
    color: #7c3aed;
}

:where(.blog_description, .js-post-content) .stat-card .num.amber {
    color: #d97706;
}

:where(.blog_description, .js-post-content) .stat-card .num.red {
    color: #dc2626;
}

:where(.blog_description, .js-post-content) .stat-card .label {
    font-family: Manrope, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

:where(.blog_description, .js-post-content) .verdict-card {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 14px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 2px 12px rgba(3, 4, 72, 0.07);
}

:where(.blog_description, .js-post-content) .verdict-header {
    background: #dc2626;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

:where(.blog_description, .js-post-content) .verdict-header span {
    font-family: Manrope, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

:where(.blog_description, .js-post-content) .verdict-body {
    padding: 24px;
}

:where(.blog_description, .js-post-content) .verdict-body .title {
    font-family: Manrope, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #030448;
    margin-bottom: 16px;
}

:where(.blog_description, .js-post-content) .verdict-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 10px 16px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e9f5;
    align-items: start;
}

:where(.blog_description, .js-post-content) .verdict-row:last-child {
    border-bottom: none;
}

:where(.blog_description, .js-post-content) .verdict-row .key {
    font-family: Manrope, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
    padding-top: 2px;
}

:where(.blog_description, .js-post-content) .verdict-row .val {
    font-size: 0.9rem;
    color: #2d2d4a;
    line-height: 1.6;
}

:where(.blog_description, .js-post-content) .verdict-row .val strong {
    color: #030448;
}

:where(.blog_description, .js-post-content) .timeline {
    margin: 2rem 0;
    position: relative;
    padding-left: 24px;
}

:where(.blog_description, .js-post-content) .timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e5e9f5;
}

:where(.blog_description, .js-post-content) .tl-item {
    position: relative;
    margin-bottom: 24px;
}

:where(.blog_description, .js-post-content) .tl-item:last-child {
    margin-bottom: 0;
}

:where(.blog_description, .js-post-content) .tl-dot {
    position: absolute;
    left: -21px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3973e7;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #3973e7;
}

:where(.blog_description, .js-post-content) .tl-dot.red {
    background: #dc2626;
    box-shadow: 0 0 0 2px #dc2626;
}

:where(.blog_description, .js-post-content) .tl-dot.amber {
    background: #d97706;
    box-shadow: 0 0 0 2px #d97706;
}

:where(.blog_description, .js-post-content) .tl-date {
    font-family: Manrope, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

:where(.blog_description, .js-post-content) .tl-title {
    font-family: Manrope, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #030448;
    margin-bottom: 3px;
}

:where(.blog_description, .js-post-content) .tl-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
}

:where(.blog_description, .js-post-content) .risk-table {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(3, 4, 72, 0.05);
}

:where(.blog_description, .js-post-content) .risk-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    padding: 11px 20px;
    background: #030448;
    gap: 12px;
}

:where(.blog_description, .js-post-content) .risk-table-header span {
    font-family: Manrope, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

:where(.blog_description, .js-post-content) .risk-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e9f5;
    gap: 12px;
}

:where(.blog_description, .js-post-content) .risk-row:last-child {
    border-bottom: none;
}

:where(.blog_description, .js-post-content) .risk-row:hover {
    background: #eef3fd;
}

:where(.blog_description, .js-post-content) .risk-row > span,
:where(.blog_description, .js-post-content) .risk-table-header > span {
    min-width: 0;
    display: block;
}

:where(.blog_description, .js-post-content) .risk-label {
    font-family: Manrope, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #030448;
    line-height: 1.45;
}

:where(.blog_description, .js-post-content) .risk-level {
    justify-self: start;
}

:where(.blog_description, .js-post-content) .risk-badge {
    display: inline-block;
    font-family: Manrope, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 999px;
}

:where(.blog_description, .js-post-content) .risk-badge.high {
    background: #fef2f2;
    color: #dc2626;
}

:where(.blog_description, .js-post-content) .risk-badge.med {
    background: #fef3e2;
    color: #d97706;
}

:where(.blog_description, .js-post-content) .risk-badge.low {
    background: #e8f7f2;
    color: #0f9d6e;
}

:where(.blog_description, .js-post-content) .risk-note {
    display: block;
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}

:where(.blog_description, .js-post-content) .checklist {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 12px;
    padding: 8px 0;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(3, 4, 72, 0.05);
}

:where(.blog_description, .js-post-content) .check-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e9f5;
    align-items: flex-start;
}

:where(.blog_description, .js-post-content) .check-item:last-child {
    border-bottom: none;
}

:where(.blog_description, .js-post-content) .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e8f7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #0f9d6e;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

:where(.blog_description, .js-post-content) .check-icon.warn {
    background: #fef3e2;
    color: #d97706;
}

:where(.blog_description, .js-post-content) .check-text strong {
    font-family: Manrope, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #030448;
    display: block;
    margin-bottom: 2px;
}

:where(.blog_description, .js-post-content) .check-text span {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}

:where(.blog_description, .js-post-content) .emotion-table {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(3, 4, 72, 0.05);
}

:where(.blog_description, .js-post-content) .emotion-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 11px 20px;
    background: #030448;
    gap: 12px;
}

:where(.blog_description, .js-post-content) .emotion-table-header span {
    font-family: Manrope, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

:where(.blog_description, .js-post-content) .emotion-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e9f5;
    gap: 12px;
}

:where(.blog_description, .js-post-content) .emotion-row:last-child {
    border-bottom: none;
}

:where(.blog_description, .js-post-content) .emotion-row:hover {
    background: #eef3fd;
}

:where(.blog_description, .js-post-content) .emotion-label {
    font-family: Manrope, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #030448;
    line-height: 1.45;
}

:where(.blog_description, .js-post-content) .emotion-trigger,
:where(.blog_description, .js-post-content) .emotion-effect {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}

:where(.blog_description, .js-post-content) .emotion-effect {
    color: #2d2d4a;
}

:where(.blog_description, .js-post-content) .badge {
    display: inline-block;
    font-family: Manrope, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
    margin-bottom: 4px;
}

:where(.blog_description, .js-post-content) .badge.risk {
    background: #fef2f2;
    color: #dc2626;
}

:where(.blog_description, .js-post-content) .badge.note {
    background: #fef3e2;
    color: #d97706;
}

:where(.blog_description, .js-post-content) .badge.good {
    background: #e8f7f2;
    color: #0f9d6e;
}

:where(.blog_description, .js-post-content) .quote-block {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(3, 4, 72, 0.05);
    position: relative;
}

:where(.blog_description, .js-post-content) .quote-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-family: Manrope, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #3973e7;
    line-height: 1;
    opacity: 0.3;
}

:where(.blog_description, .js-post-content) .quote-block p {
    font-size: 1rem;
    font-style: italic;
    color: #030448;
    margin-bottom: 10px;
    line-height: 1.7;
}

:where(.blog_description, .js-post-content) .quote-block .attribution {
    font-family: Manrope, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-style: normal;
}

:where(.blog_description, .js-post-content) .bench-table {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(3, 4, 72, 0.05);
}

:where(.blog_description, .js-post-content) .bench-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 11px 20px;
    background: #030448;
    gap: 12px;
}

:where(.blog_description, .js-post-content) .bench-header span {
    font-family: Manrope, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

:where(.blog_description, .js-post-content) .bench-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid #e5e9f5;
    gap: 12px;
}

:where(.blog_description, .js-post-content) .bench-row:last-child {
    border-bottom: none;
}

:where(.blog_description, .js-post-content) .bench-row:hover {
    background: #eef3fd;
}

:where(.blog_description, .js-post-content) .bench-name {
    font-family: Manrope, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #030448;
}

:where(.blog_description, .js-post-content) .bench-score {
    font-family: Manrope, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
}

:where(.blog_description, .js-post-content) .bench-score.mythos {
    color: #3973e7;
}

:where(.blog_description, .js-post-content) .bench-score.opus {
    color: #6b7280;
}

:where(.blog_description, .js-post-content) .partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
}

:where(.blog_description, .js-post-content) .partner-tag {
    font-family: Manrope, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #030448;
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 999px;
    padding: 6px 14px;
    box-shadow: 0 1px 4px rgba(3, 4, 72, 0.05);
}

:where(.blog_description, .js-post-content) .vuln-list {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(3, 4, 72, 0.05);
}

:where(.blog_description, .js-post-content) .vuln-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #e5e9f5;
    align-items: start;
}

:where(.blog_description, .js-post-content) .vuln-item:last-child {
    border-bottom: none;
}

:where(.blog_description, .js-post-content) .vuln-age {
    font-family: Manrope, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
}

:where(.blog_description, .js-post-content) .vuln-age span {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-top: 2px;
}

:where(.blog_description, .js-post-content) .vuln-title {
    font-family: Manrope, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #030448;
    margin-bottom: 4px;
}

:where(.blog_description, .js-post-content) .vuln-desc {
    font-size: 0.83rem;
    color: #6b7280;
    line-height: 1.55;
}

:where(.blog_description, .js-post-content) .occ-list {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(3, 4, 72, 0.05);
}

:where(.blog_description, .js-post-content) .occ-list-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
    background: #030448;
    gap: 12px;
}

:where(.blog_description, .js-post-content) .occ-list-header span {
    font-family: Manrope, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

:where(.blog_description, .js-post-content) .occ-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e9f5;
    gap: 12px;
}

:where(.blog_description, .js-post-content) .occ-row:last-child {
    border-bottom: none;
}

:where(.blog_description, .js-post-content) .occ-row:hover {
    background: #eef3fd;
}

:where(.blog_description, .js-post-content) .occ-name {
    font-family: Manrope, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #030448;
}

:where(.blog_description, .js-post-content) .occ-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

:where(.blog_description, .js-post-content) .occ-bar {
    width: 120px;
    height: 6px;
    background: #e5e9f5;
    border-radius: 3px;
    overflow: hidden;
}

:where(.blog_description, .js-post-content) .occ-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    background: #3973e7;
    border-radius: 3px;
}

:where(.blog_description, .js-post-content) .occ-pct {
    font-family: Manrope, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #3973e7;
    min-width: 36px;
    text-align: right;
}

:where(.blog_description, .js-post-content) .divider {
    border: none;
    border-top: 1px solid #e5e9f5;
    margin: 2.25rem 0;
}

:where(.blog_description, .js-post-content) .takeaway {
    background: #030448;
    border-radius: 16px;
    padding: 40px;
    margin: 2.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

:where(.blog_description, .js-post-content) .takeaway::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(57, 115, 231, 0.3) 0%, transparent 70%);
}

:where(.blog_description, .js-post-content) .takeaway h2 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

:where(.blog_description, .js-post-content) .takeaway p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

:where(.blog_description, .js-post-content) .takeaway p + p {
    margin-top: 1rem;
}

:where(.blog_description, .js-post-content) .chain {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(3, 4, 72, 0.05);
}

:where(.blog_description, .js-post-content) .chain-header {
    background: #030448;
    padding: 12px 20px;
}

:where(.blog_description, .js-post-content) .chain-header span {
    font-family: Manrope, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

:where(.blog_description, .js-post-content) .chain-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #e5e9f5;
    align-items: start;
    transition: background-color .15s ease;
}

:where(.blog_description, .js-post-content) .chain-step:last-child {
    border-bottom: none;
}

:where(.blog_description, .js-post-content) .chain-step:hover {
    background: #fef2f2;
}

:where(.blog_description, .js-post-content) .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dc2626;
    color: #ffffff;
    font-family: Manrope, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

:where(.blog_description, .js-post-content) .step-title {
    font-family: Manrope, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #030448;
    margin-bottom: 4px;
}

:where(.blog_description, .js-post-content) .step-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
}

:where(.blog_description, .js-post-content) .source-note {
    background: #ffffff;
    border: 1px solid #e5e9f5;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 2rem;
}

:where(.blog_description, .js-post-content) .source-note p {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 767px) {
    :where(.blog_description, .js-post-content) .callout {
        padding: 20px;
    }

    :where(.blog_description, .js-post-content) .stat-grid {
        grid-template-columns: 1fr;
    }

    :where(.blog_description, .js-post-content) .verdict-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    :where(.blog_description, .js-post-content) .verdict-row .key {
        color: #3973e7;
    }

    :where(.blog_description, .js-post-content) .risk-table-header,
    :where(.blog_description, .js-post-content) .risk-row {
        grid-template-columns: 1fr;
    }

    :where(.blog_description, .js-post-content) .risk-level {
        justify-self: start;
    }

    :where(.blog_description, .js-post-content) .risk-table-header span:last-child,
    :where(.blog_description, .js-post-content) .risk-row .risk-note {
        display: none;
    }

    :where(.blog_description, .js-post-content) .emotion-table-header,
    :where(.blog_description, .js-post-content) .emotion-row {
        grid-template-columns: 1fr;
    }

    :where(.blog_description, .js-post-content) .emotion-table-header span:last-child,
    :where(.blog_description, .js-post-content) .emotion-row .emotion-effect {
        display: none;
    }

    :where(.blog_description, .js-post-content) .bench-header,
    :where(.blog_description, .js-post-content) .bench-row {
        grid-template-columns: 1fr 1fr;
    }

    :where(.blog_description, .js-post-content) .bench-header span:last-child,
    :where(.blog_description, .js-post-content) .bench-row .bench-score.opus {
        display: none;
    }

    :where(.blog_description, .js-post-content) .vuln-item {
        grid-template-columns: 48px 1fr;
    }

    :where(.blog_description, .js-post-content) .quote-block {
        padding: 24px 22px 22px;
    }

    :where(.blog_description, .js-post-content) .occ-row,
    :where(.blog_description, .js-post-content) .occ-list-header {
        grid-template-columns: 1fr;
    }

    :where(.blog_description, .js-post-content) .occ-bar {
        width: 80px;
    }

    :where(.blog_description, .js-post-content) .takeaway {
        padding: 28px 24px;
    }

    :where(.blog_description, .js-post-content) .chain-step {
        grid-template-columns: 32px 1fr;
        gap: 12px;
        padding: 16px;
    }

    :where(.blog_description, .js-post-content) .step-title {
        font-size: 0.92rem;
    }
}
