/* ── READING PROGRESS BAR ── */
.reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal, #0E7C7B), var(--teal-light, #12A09E));
    z-index: 1001;
    width: 0%;
    transition: width .1s linear;
    pointer-events: none;
}

/* ── PAGE LAYOUT ── */
.page-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 20px 60px;
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 28px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-sidebar {
    position: sticky;
    top: calc(var(--header-h, 56px) + 16px);
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: calc(100dvh - 120px);
}

/* ── BREADCRUMB ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.77rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb-sep {
    color: var(--border);
}

.breadcrumb-cur {
    color: var(--text);
    font-weight: 500;
}

/* ── ARTICLE HEADER ── */
.art-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.art-h1 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 900;
    color: var(--text);
    font-family: var(--font-alt);
    line-height: 1.3;
    margin-bottom: 12px;
}

.art-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.77rem;
    color: var(--text-muted);
    padding: 12px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 18px;
}

.art-meta svg {
    width: 13px;
    height: 13px;
    color: var(--teal);
}

.art-meta-sep {
    color: var(--border);
}

/* ── TOC — Mobile accordion only ── */
.toc-mobile {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
}

.toc-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.toc-mobile-header svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    transition: transform 0.25s;
}

.toc-mobile.open .toc-mobile-header svg {
    transform: rotate(180deg);
}

.toc-mobile-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.toc-mobile.open .toc-mobile-body {
    max-height: 600px;
}

.toc-list {
    list-style: none;
    padding: 4px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.toc-list li a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-mid);
    padding: 4px 0;
    transition: color 0.2s;
}

.toc-list li a:hover {
    color: var(--teal);
}

.toc-list li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    margin-top: 6px;
    transition: background 0.2s;
}

.toc-list li a:hover::before {
    background: var(--teal);
}

.toc-list li.sub a {
    padding-inline-start: 14px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── BANNER SLOTS ── */
.v2-banner-slot {
    display: block;
    margin-block: 1.5rem;
    text-align: center;
}
.v2-banner-slot:empty { display: none; }

/* ── ARTICLE BODY ── */
.art-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-mid);
}

.art-body p {
    margin-bottom: 24px;
}

.art-body h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin: 36px 0 16px;
    line-height: 1.4;
}

/* ── UNIFIED SECTION HEADING ── */
.section-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin: 36px 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.2px;
}

.section-heading::before {
    content: '';
    width: 5px;
    height: 26px;
    background: var(--teal);
    border-radius: 3px;
    display: block;
}

.art-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 12px;
    line-height: 1.5;
}

.art-body ul,
.art-body ol {
    padding-inline-start: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.art-body li {
    font-size: 1rem;
    line-height: 1.5;
}

.art-body strong {
    color: var(--text);
    font-weight: 700;
}

.art-body table thead th strong {
    color: #fff;
    font-weight: 700;
}

.art-body a {
    color: var(--teal);
    border-bottom: 1px solid rgba(14, 124, 123, 0.25);
}

.art-body .trading-company-details-card a {
    color: #fff;
}

.best-companies-table a {
    color: #fff;
}

.best-companies-table th, .best-companies-table td{
    text-align: center;
}
.art-info-box {
    background: var(--teal-bg);
    border: 1px solid rgba(14, 124, 123, 0.2);
    border-inline-end: 4px solid var(--teal);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin: 24px 0;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.art-warn-box {
    background: var(--warn-bg);
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-inline-end: 4px solid var(--warn);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin: 24px 0;
    font-size: 0.95rem;
    color: var(--warn-text);
    line-height: 1.75;
}

/* ── INLINE BANNER ── */
.inline-banner {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    margin: 0 0 24px;
    background: var(--bg-card);
    overflow: hidden;
    position: relative;
}

.inline-banner-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
}

.inline-banner-ad-label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
    padding: 3px 8px;
    border-radius: 0 0 6px 0;
}

.inline-banner-logo {
    width: 44px;
    height: 44px;
    border-radius: 9px;
    background: var(--bg);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--navy);
    flex-shrink: 0;
}

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

.inline-banner-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3px;
}

.inline-banner-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 7px;
}

.inline-banner-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.inline-banner-tag {
    font-size: 0.67rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--teal-bg);
    color: var(--teal);
}

.inline-banner-cta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
    min-width: 110px;
}

.inline-banner-open {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: var(--bg-card, #fff);
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: background 0.2s;
    text-align: center;
}

.inline-banner-open:hover {
    background: var(--teal-light);
}

.inline-banner-read {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.77rem;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
}

.inline-banner-read:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.inline-banner-risk {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-align: center;
    padding: 6px 14px;
    border-top: 1px solid var(--border-soft);
    background: var(--bg);
}

/* ── BROKER TABLE ── */
.brokers-table-wrap {
    margin: 32px 0;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.brokers-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.brokers-table th {
    background: var(--bg);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 16px;
    text-align: start;
    border-bottom: 1px solid var(--border);
    font-family: var(--font);
}

.brokers-table td {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border-soft);
    vertical-align: middle;
}

.brokers-table tr:hover td {
    background: rgba(14, 124, 123, 0.015);
}

/* ── STANDARD COMPARISON TABLE ── */
.standard-table-wrap {
    margin: 32px 0;
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
}

.standard-table {
    width: 100%;
    border-collapse: collapse;
}

.standard-table th {
    background: var(--border-soft);
    color: var(--navy);
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 800;
    border-bottom: 2px solid var(--border);
    text-align: start;
    font-family: var(--font);
}

.standard-table td {
    padding: 12px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-mid);
}

.standard-table tr:nth-child(even) {
    background: var(--bg-subtle);
}

.bt-logo {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: var(--bg);
    border: 1px solid var(--border-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.62rem;
    color: var(--navy);
}

.bt-name {
    font-weight: 700;
    color: var(--text);
    font-size: 0.83rem;
}

.bt-since {
    font-size: 0.69rem;
    color: var(--text-muted);
}

.bt-stars {
    color: var(--gold);
    font-size: 0.72rem;
}

.bt-yes {
    color: var(--green);
    font-weight: 700;
}

.bt-no {
    color: var(--text-muted);
}

.bt-rank {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--bg-card, #fff);
    font-size: 0.72rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bt-rank.gold {
    background: var(--gold);
}

.bt-open-wrap {
    min-width: 100px;
}

.bt-open {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: var(--bg-card, #fff);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 7px 10px;
    white-space: nowrap;
    width: 100%;
    transition: background 0.2s;
    text-align: center;
}

.bt-open:hover {
    background: var(--teal-light);
}

.table-caption {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    padding: 8px 14px;
    border-top: 1px solid var(--border-soft);
    background: var(--bg);
}

/* ── BROKER MINI CARDS ── */
.broker-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.broker-mini {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.broker-mini:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
}

.bm-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
}

.bm-logo {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: var(--bg);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.65rem;
    color: var(--navy);
    flex-shrink: 0;
}

.bm-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text);
}

.bm-tag {
    background: var(--green-bg);
    color: var(--green-text);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 2px;
}

.bm-stars {
    color: var(--gold);
    font-size: 0.7rem;
}

.bm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg);
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    margin-bottom: 9px;
}

.bm-stat {
    text-align: center;
    padding: 7px 4px;
    position: relative;
}

.bm-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border);
}

.bm-stat-l {
    font-size: 0.61rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.bm-stat-v {
    font-size: 0.77rem;
    font-weight: 700;
    color: var(--text);
}

.bm-stat-v.yes {
    color: var(--green);
}

.bm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.bm-open {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: var(--bg-card, #fff);
    padding: 8px;
    border-radius: 7px;
    font-size: 0.74rem;
    font-weight: 700;
    transition: background 0.2s;
}

.bm-open:hover {
    background: var(--teal-light);
}

.bm-read {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    padding: 8px;
    border-radius: 7px;
    font-size: 0.74rem;
    font-weight: 600;
    transition: all 0.2s;
}

.bm-read:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ── AUTHOR BIO FULL ── */
.author-bio-full {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin: 28px 0;
}

.author-bio-full-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 12px;
}

.author-bio-row {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-soft);
}

.author-bio-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.author-bio-av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.author-bio-av-ph {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--bg-card, #fff);
    flex-shrink: 0;
}

.author-bio-bname {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
}

.author-bio-bcred {
    font-size: 0.73rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 6px;
}

.author-bio-btext {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── RELATED section: DELETED by CV-017 / DI-085 root fix on 2026-04-18.
   The non-BEM legacy rules (.related-section / .related-title / .related-grid /
   .related-card / .related-thumb / .related-cat-badge / .related-body /
   .related-title-text / .related-footer / .related-author-av / .related-author-name /
   .related-date) had ZERO consumers across all blade files — grep verified.
   Every topic/tool-page/stock-v2 page renders the related block via
   `site-new.includes.article-related` partial which uses BEM markup
   (.related-card__media / __image / __body / __title / __desc / __cta /
   __footer / __avatar / __author / __date) served by
   assets/design-system/pages/article-related.css (the canonical styling).
   The legacy rules here caused a selector-specificity war on any page that
   loaded both CSS files (topic.blade + stock-v2.blade + tool-page.blade),
   because the bare .related-card rule in THIS file was overriding the BEM
   canonical. Deletion closes DI-085 at root. Mobile responsive rules for
   .related-grid that lived in the @media blocks around line 2083 + 2097
   also removed. See council-votes-log CV-017. */
/* (intentionally empty — legacy .related-* rules deleted as dead code;
   see comment block above for full audit trail) */

/* ── SIDEBAR ── */
.sidebar-widget {
    background: var(--bg-card, #fff);
    border: 1px solid var(--border, #DDE5EF);
    border-radius: var(--radius-lg, 12px);
    padding: 20px;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(11, 31, 58, 0.06));
    flex-shrink: 0;
}

.sidebar-widget-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sidebar-widget-title::before {
    content: '';
    width: 3px;
    height: 15px;
    background: var(--teal);
    border-radius: 2px;
}

.sidebar-toc {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
}

.sidebar-toc::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-soft);
    border-radius: 2px;
}

.sidebar-toc li {
    position: relative;
}

.sidebar-toc li a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.77rem;
    color: var(--text-muted);
    padding: 4px 0 4px 8px;
    border-radius: 6px;
    transition: color 0.25s, background 0.25s, font-weight 0.1s;
    border-right: 2px solid transparent;
    line-height: 1.4;
}

.sidebar-toc li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    transition: background 0.25s, transform 0.25s;
}

.sidebar-toc li a:hover {
    color: var(--teal);
    background: var(--teal-bg);
}

.sidebar-toc li a:hover::before {
    background: var(--teal);
}

.sidebar-toc li.active a {
    color: var(--teal);
    background: rgba(14, 124, 123, 0.08);
    border-color: var(--teal);
    font-weight: 700;
}

.sidebar-toc li.active a::before {
    background: var(--teal);
    transform: scale(1.4);
}

.side-broker {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-broker-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
    transition: border-color 0.2s;
}

.side-broker-item:hover {
    border-color: var(--teal);
}

.side-logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--navy);
    flex-shrink: 0;
    font-family: var(--font);
}
.side-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--border-soft);
    object-fit: contain;
    background: #fff;
    flex-shrink: 0;
}

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

.side-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
}

.side-stars {
    color: var(--gold);
    font-size: 0.65rem;
}
.side-star-on  { color: var(--gold) }
.side-star-off { color: var(--border) }

.side-broker-item .side-cta {
    background: var(--teal);
    color: var(--bg-card, #fff);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}

.side-broker-item:hover .side-cta:hover {
    background: var(--teal-light);
}

.side-disc {
    font-size: 0.73rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.side-disc p {
    margin-bottom: 6px;
}

.side-disc a {
    color: var(--teal);
}

/* ── ARTICLE CTA SECTION ── */
.art-cta-section {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy-deep, #0B1F3A) 0%, var(--navy, #152D50) 50%, var(--navy-deep, #0B1F3A) 100%);
    margin: 28px 0 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.art-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold-light), var(--teal-light));
    z-index: 3;
}

.art-cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 500px 300px at 15% 80%, rgba(14, 124, 123, 0.12) 0%, transparent 70%),
                radial-gradient(ellipse 400px 300px at 85% 20%, rgba(192, 138, 46, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.art-cta-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    position: relative;
    z-index: 2;
}

.art-cta-content {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.art-cta-title {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 900;
    color: var(--bg-card, #fff);
    line-height: 1.35;
    margin-bottom: 14px;
    font-family: var(--font-alt);
}

.art-cta-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    margin-bottom: 8px;
    max-width: 420px;
}

.art-cta-disclaimer {
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 22px;
}

.art-cta-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.art-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp, #25d366);
    color: var(--bg-card, #fff);
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

.art-cta-wa:hover {
    background: var(--whatsapp-hover, #1fba58);
    transform: translateY(-2px);
    color: var(--bg-card, #fff);
}

.art-cta-tg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.2s;
    text-decoration: none;
}

.art-cta-tg:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    color: var(--bg-card, #fff);
}

.art-cta-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.art-cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.art-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.9;
    transition: opacity 0.3s;
}

.art-cta-section:hover .art-cta-visual img {
    opacity: 1;
}

@media (max-width: 900px) {
    .art-cta-grid { grid-template-columns: 1fr; }
    .art-cta-visual { display: none; }
    .art-cta-content { padding: 28px 22px; text-align: center; }
    .art-cta-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .art-cta-btns { justify-content: center; }
    .art-cta-wa, .art-cta-tg { flex: 1; justify-content: center; padding: 12px 14px; font-size: 0.84rem; }
}

.art-featured-img-mobile {
    display: none;
    width: 100%;
    margin: 0 0 24px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
}

.art-featured-img-mobile img {
    display: block;
    width: 100%;
    height: auto;
}

@media(max-width:1024px) {
    .art-featured-img-mobile {
        display: block;
    }
    .art-cta-content {
        padding: 24px 20px;
    }
    .art-cta-btns {
        flex-direction: row;
        gap: 10px;
    }
    .art-cta-btns a {
        flex: 1;
        justify-content: center;
        padding: 12px 10px !important;
        font-size: 0.85rem !important;
    }
}

.tldr-box {
    background: var(--teal-bg);
    border: 1px solid rgba(14, 124, 123, 0.12);
    border-right: 3px solid var(--teal);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 20px;
}

.tldr-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.tldr-label span {
    background: var(--teal);
    color: var(--bg-card, #fff);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.65rem;
}

.tldr-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0;
    margin: 0;
}

.tldr-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.55;
}

.tldr-list li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.tldr-list li strong {
    color: var(--text);
}

.tldr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(29, 93, 181, 0.1);
    flex-wrap: wrap;
    gap: 6px;
}

.tldr-note {
    font-size: 0.67rem;
    color: var(--text-muted);
}

/* ── AUTHOR STRIP ── */
.author-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.author-strip-authors {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    flex: 1;
}

.as-author {
    display: flex;
    align-items: center;
    gap: 7px;
}

.as-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--border-soft);
    flex-shrink: 0;
}

.as-avatar-ph {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.65rem;
    color: var(--bg-card, #fff);
    flex-shrink: 0;
}

.as-role {
    font-size: 0.67rem;
    color: var(--text-muted);
}

.as-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 4px;
}

.as-name a {
    color: inherit;
}

.as-name a:hover {
    color: var(--teal);
}

.as-verified {
    display: inline-flex;
    align-items: center;
    background: var(--green-bg);
    color: var(--green-text);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
}

.as-sep {
    width: 1px;
    height: 24px;
    background: var(--border-soft);
    flex-shrink: 0;
}

.as-others-toggle {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    padding: 0;
}

.as-others-toggle svg {
    transition: transform 0.25s;
    flex-shrink: 0;
}

.as-others-toggle.open svg {
    transform: rotate(180deg);
}

.as-extra {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.author-strip-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.as-updated {
    font-size: 0.68rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.as-disclosure-link {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0;
}

.as-disclosure-link:hover {
    color: var(--teal);
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.as-bio-panel {
    width: 100%;
    display: none;
    padding: 12px 0 2px;
    border-top: 1px solid var(--border-soft);
    margin-top: 6px;
    gap: 12px;
    flex-direction: column;
}

.as-bio-panel.open {
    display: flex;
    animation: panelFadeIn 0.25s ease forwards;
}

.as-bio-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.as-bio-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid var(--border-soft);
}

.as-bio-av-ph {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.78rem;
    color: var(--bg-card, #fff);
    flex-shrink: 0;
}

.as-bio-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text);
}

.as-bio-cred {
    font-size: 0.7rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 3px;
}

.as-bio-text {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.as-info-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-right: 2px;
}

.as-info-btn:hover,
.as-info-btn.active {
    background: var(--teal);
    color: var(--bg-card, #fff);
    border-color: var(--teal);
}

@media(max-width:640px) {
    .as-others-toggle { display: inline-flex; }
    .as-extra { display: none; }
    .as-extra.open { display: flex; }
    .as-sep.extra-sep { display: none; }
    .author-strip { padding: 8px 12px; flex-wrap: wrap; }
    .author-strip-meta { width: 100%; border-top: 1px solid var(--border-soft); padding-top: 7px; margin-top: 2px; justify-content: space-between; }
}

.tldr-link {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

/* --- COMMENTS --- */
.comments-sct {
    margin-top: 12px;
    border-top: 2px solid var(--border-soft);
    padding-top: 24px;
    margin-bottom: 40px;
}

.comments-h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

@media (max-width: 640px) {
    .comments-h2 { font-size: 1.25rem; margin-bottom: 16px; }
}

.c-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.c-item {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 16px;
    transition: box-shadow 0.2s;
}

@media (max-width: 640px) {
    .c-item { padding: 12px; }
}

.c-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.c-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.c-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-av svg {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.c-meta {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.c-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
}

.c-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.c-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    padding-right: 52px;
}

@media (max-width: 640px) {
    .c-body { font-size: 0.9rem; padding-right: 0; margin-top: 6px; }
    .c-name { font-size: 0.95rem; }
    .c-date { font-size: 0.75rem; }
    .c-av { width: 36px; height: 36px; }
    .c-av svg { width: 18px; height: 18px; }
}

/* form */
.cf-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-soft);
}

@media (max-width: 640px) {
    .cf-wrap { padding: 16px; }
}

.cf-h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

@media (max-width: 640px) {
    .cf-h3 { font-size: 1.15rem; margin-bottom: 12px; }
}

.cf-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .cf-row { grid-template-columns: 1fr; }
}

.cf-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: var(--font);
    background: var(--bg-card, #fff);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

@media (max-width: 640px) {
    .cf-input { font-size: 0.9rem; padding: 10px 12px; }
}

.cf-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.1);
}

.cf-tx {
    resize: vertical;
    min-height: 80px;
    margin-bottom: 12px;
}

.cf-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cf-foot { flex-direction: column; align-items: stretch; gap: 16px; }
}

.cf-notes {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .cf-notes { font-size: 0.75rem; }
}

.cf-acts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

@media (max-width: 640px) {
    .cf-acts { align-items: flex-start; }
}

.cf-mock-cap {
    display: flex;
    align-items: center;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-soft);
    border-radius: 4px;
    padding: 8px 12px;
    gap: 12px;
    direction: ltr;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    width: 100%;
}

.cf-mock-cap span {
    font-size: 0.85rem;
    font-family: var(--font);
    color: var(--text, #1A2B45);
}

@media (max-width: 640px) {
    .cf-mock-cap span { font-size: 0.8rem; }
}

.cf-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
}

.cf-logo span {
    font-size: 0.45rem !important;
    color: var(--text-muted, #7A95B0) !important;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.cf-btn {
    background: var(--navy);
    color: var(--bg-card, #fff);
    font-weight: 700;
    font-family: var(--font);
    font-size: 1.05rem;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    width: 100%;
}

@media (max-width: 640px) {
    .cf-btn { font-size: 0.95rem; }
}

@media (min-width: 641px) {
    .cf-btn { width: auto; }
}

.cf-btn:hover { background: var(--navy-deep, #0B1F3A); }
.cf-btn:active { transform: scale(0.97); }

.art-img-wrap {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: var(--bg-card);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.art-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- CONCLUSION & SOURCES --- */
.art-conclusion {
    background: rgba(14, 124, 123, 0.04);
    border: 1px solid rgba(14, 124, 123, 0.15);
    border-radius: var(--radius-lg);
    padding: 10px;
    margin: 8px 0 24px 0;
}

.art-conclusion h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 0;
    margin-bottom: 16px;
    font-family: var(--font-alt);
}

.art-conclusion p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
}

.art-conclusion ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.art-conclusion li {
    position: relative;
    padding-inline-start: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
}

.art-conclusion li::before {
    content: "•";
    position: absolute;
    inset-inline-start: 0;
    color: var(--teal);
    font-weight: bold;
}

.art-conclusion li strong {
    color: var(--teal);
}

.art-sources {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    margin: 16px 0;
    overflow: hidden;
    background: var(--bg-card);
}

.art-sources-head {
    background: var(--navy);
    color: var(--bg-card, #fff);
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-alt);
}

.art-sources-head svg {
    transition: transform 0.3s;
}

.art-sources.open .art-sources-head svg {
    transform: rotate(180deg);
}

.art-sources-body {
    display: none;
    padding: 24px;
}

.art-sources.open .art-sources-body {
    display: block;
}

.art-sources-body > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 20px;
}

.art-sources-hr {
    height: 1px;
    background: var(--border-soft);
    margin: 20px 0;
}

.art-sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.art-sources-list li {
    position: relative;
    padding-inline-start: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.6;
}

.art-sources-list li::before {
    content: "•";
    position: absolute;
    inset-inline-start: 0;
    color: var(--text-muted);
}

.art-sources-link {
    color: var(--teal);
    text-decoration: underline;
    font-weight: 600;
    margin-inline-end: 5px;
}

@media (max-width: 640px) {
    .art-conclusion { padding: 16px; }
    .art-conclusion h2 { font-size: 1.25rem; }
    .art-sources-body { padding: 16px; }
}

/* ── STICKY TOC (Desktop sidebar) ──
   overflow-y:auto on the sticky container lets both widgets (TOC + brokers)
   scroll together when total sidebar height exceeds the viewport. */
.article-sidebar { overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.sidebar-toc li.active a { color: var(--teal); font-weight: 700; border-inline-end: 2px solid var(--teal); padding-inline-end: 8px; }

/* ── AFFILIATE DISCLOSURE — moved to layout partial (disc-bar.blade.php) ── */

/* ── IMPROVED IMAGE STYLING ── */
.art-body img{border-radius:var(--radius);max-width:100%;height:auto}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .page-wrapper { grid-template-columns: 1fr; gap: 0; }
    .article-sidebar { display: none; }
    .toc-mobile { display: block; }
    /* .related-grid rule removed — canonical in article-related.css */
}

@media(max-width:768px) {
    .page-wrapper { padding: 14px 14px 40px; }
    .art-h1 { font-size: 1.3rem; line-height: 1.35; }
    .art-body { font-size: 0.95rem; line-height: 1.75; }
    .art-body h2 { font-size: 1.25rem; margin: 28px 0 12px; }
    .art-body h3 { font-size: 1.05rem; margin: 24px 0 10px; }
    .art-body p { margin-bottom: 18px; }
    .art-body ul, .art-body ol { padding-inline-start: 0; }
    .art-body li { font-size: 0.92rem; }
    .art-info-box, .art-warn-box { padding: 14px 16px; font-size: 0.88rem; margin: 18px 0; }
    .broker-mini-grid { grid-template-columns: 1fr; }
    /* .related-grid rule removed — canonical in article-related.css */
    .inline-banner-inner { grid-template-columns: 1fr; gap: 12px; text-align: center; }
    .inline-banner-logo { margin: 0 auto; }
    .inline-banner-tags { justify-content: center; }
    .inline-banner-cta { flex-direction: row; width: 100%; justify-content: center; }
    .inline-banner-open, .inline-banner-read { flex: 1; }
    .brokers-table-wrap { margin: 16px -14px; border-radius: 0; border-left: none; border-right: none; }
    /* Breadcrumb mobile */
    .breadcrumb { font-size: 0.72rem; gap: 4px; margin-bottom: 12px; }
    /* Author strip mobile */
    .uac-strip { flex-wrap: wrap; gap: 8px; }
    .uac-strip-meta { width: 100%; font-size: 0.72rem; }
    /* Art meta mobile */
    .art-meta { font-size: 0.72rem; gap: 6px; padding: 10px 0; }
    /* TOC mobile improvements */
    .toc-mobile-header { padding: 14px 16px; font-size: 0.88rem; min-height: 48px; }
    .toc-list li a { padding: 6px 0; font-size: 0.78rem; min-height: 36px; display: flex; align-items: center; }
    /* Tables scroll on mobile */
    .art-body table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    /* Summary boxes mobile */
    .topic-summary { padding: 14px 16px; margin-bottom: 18px; }
    .summary-title { font-size: 14px; }
    .summary-show { font-size: 13px; }
    /* Banner slots mobile */
    .v2-banner-slot { margin: 12px -14px; }
    .v2-banner-slot img { width: 100%; height: auto; border-radius: 0; }
}

@media(max-width:480px) {
    .page-wrapper { padding: 10px 12px 32px; }
    .art-h1 { font-size: 1.15rem; margin-bottom: 8px; }
    .art-body { font-size: 0.9rem; }
    .art-body h2 { font-size: 1.15rem; }
    .art-body h3 { font-size: 1rem; }
    .breadcrumb { font-size: 0.68rem; }
    .toc-mobile { margin-bottom: 14px; }
    .toc-mobile-header { padding: 12px 14px; }
    .inline-banner-inner { padding: 12px 14px; }
    .inline-banner-logo { width: 36px; height: 36px; }
    .inline-banner-name { font-size: 0.82rem; }
    /* Featured image mobile */
    .art-featured-img-mobile { margin: 0 -12px 18px; border-radius: 0; border: none; }
}

/* ── Tool Article Toggle (collapse/expand for tool pages) ── */
/* Phase-C root-fix #6 — class-based read-more replaces the former inline
   style="max-height:400px;overflow:hidden;position:relative" on the
   #toolArticleContent div and the inline gradient fade div. JS now toggles
   .tool-article--expanded on the container instead of mutating
   el.style.maxHeight directly. */
.tool-article-collapsed {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}
.tool-article-collapsed.tool-article--expanded {
    max-height: none;
    overflow: visible;
}
.tool-article-fade {
    height: 60px;
    margin-top: -60px;
    position: relative;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, var(--bg-card, #fff));
}
.tool-article--expanded + #toolArticleMore .tool-article-fade,
#toolArticleMore.is-expanded .tool-article-fade {
    display: none;
}

.tool-article-toggle-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--bg-subtle, #f5f7fb);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy, #0a1f44);
    cursor: pointer;
    margin-top: 12px;
    transition: background .15s;
}
.tool-article-toggle-btn:hover {
    background: var(--bg-muted, #e9ecef);
}

/* ── ARTICLE SUMMARY (start + end) — CMS fields ── */
.topic-summary {
    background: var(--teal-bg, #EBF7F7);
    border: 1px solid var(--teal-border, #B8E0DF);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    position: relative;
}
.topic-summary::before {
    content: "📋";
    top: 2px;
    position: absolute;
    inset-inline-end: 16px;
    background: var(--teal-bg, #EBF7F7);
    padding: 0 8px;
    font-size: 18px;
}
.summary-title {
    color: var(--navy, #0B1F3A);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
    padding-inline-start: 32px;
}
.summary-show {
    color: var(--text-mid, #3D5A7A);
    font-size: 14px;
    line-height: 1.8;
}
.summary-show ul { padding-inline-start: 18px; margin: 8px 0; }
.summary-show li { margin-bottom: 6px; }
.summary-show a { color: var(--teal, #0E7C7B); font-weight: 600; }
@media (max-width: 768px) {
    .topic-summary { padding: 16px 18px; }
    .summary-title { font-size: 15px; }
    .summary-show { font-size: 13px; }
}

/* ── COMMENTS RESPONSIVE ── */
.profile-details { padding: 14px 0; border-bottom: 1px solid var(--border-soft, #E8EFF8); }
.profile-details .top-block { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.profile-details .top-block img { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.profile-details .content-details .name { font-size: 0.88rem; font-weight: 700; color: var(--text, #1A2B45); margin: 0; }
.profile-details .content-details small { font-size: 0.72rem; color: var(--text-muted, #7A95B0); }
.profile-details .info-text { font-size: 0.88rem; line-height: 1.7; color: var(--text-mid, #3D5A7A); margin: 0; padding-right: 46px; }
@media(max-width:768px) {
    .profile-details .info-text { padding-right: 0; font-size: 0.84rem; }
    .profile-details .top-block img { width: 32px; height: 32px; }
}

/* ── COMMENT FORM RESPONSIVE ── */
@media(max-width:768px) {
    #comment-form .form-box { padding: 0; }
    #comment-form .row { margin: 0; }
    #comment-form .col-sm-6, #comment-form .col-md-4 { padding: 0; width: 100%; }
    #comment-form .form-control { font-size: 16px; padding: 12px 14px; }
    #comment-form textarea.form-control { min-height: 100px; }
    #comment-form .btn-primary { width: 100%; padding: 14px; font-size: 15px; }
}

/* ── DISCLOSURE (كيف نعمل) RESPONSIVE ── */
@media(max-width:480px) {
    .disc-strip { padding: 6px 0; }
    .disc-strip__inner { flex-wrap: nowrap; }
    .disc-strip__detail { font-size: 11px; padding: 10px 14px; margin: 6px 12px 0; }
}

/* ── GLOBAL TOUCH TARGETS — 2026 UX ── */
@media(hover:none) and (pointer:coarse) {
    a, button, [role="button"], summary { min-height: 44px; }
    .toc-list li a { min-height: 40px; }
    .breadcrumb a { padding: 4px 2px; }
}
