/* ── Blog Article: Shared Base ── */
/* Shared structural styles + brand tokens for all article themes.
   Loaded BEFORE the per-article theme file (blog-article-{theme}.css). */

.blog-article {
    --article-navy: #1E2D4F;
    --article-magenta: #F03167;
    --article-blush: #E8B7C4;
    --article-beige: #D9D2C7;
    --article-ivory: #F7F5F2;
    --article-powder: #AFC5D6;
    --article-graphite: #2B313B;
    --article-gold: #BF9855;

    position: relative;
    color: var(--article-graphite);
    margin: 0 0 48px;
}

/* ── TOC (desktop sidebar) ── */
.blog-article__toc { display: none; }

@media (min-width: 1024px) {
    .blog-article__toc {
        display: block;
        position: sticky;
        top: 110px;
        padding: 20px 0;
    }
}

.blog-article__toc-label {
    display: block;
    margin-bottom: 14px;
    font-family: 'FontMedium', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(43, 49, 59, 0.45);
}

.blog-article__toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 1px solid rgba(30, 45, 79, 0.12);
}

.blog-article__toc-list a {
    display: block;
    padding: 7px 0 7px 14px;
    margin-left: -1px;
    border-left: 2px solid transparent;
    color: rgba(43, 49, 59, 0.65);
    font-size: 12.5px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

/* ── TOC (mobile details) ── */
.blog-article__toc-mobile a {
    display: block;
    padding: 5px 0;
    color: var(--article-graphite);
    font-size: 13px;
    text-decoration: none;
}

.blog-article__toc-mobile a:hover { color: var(--article-magenta); }

.blog-article__toc-mobile ol {
    margin: 14px 0 0;
    padding-left: 18px;
}

.blog-article__toc-mobile summary {
    cursor: pointer;
    font-family: 'FontMedium', sans-serif;
    font-size: 14px;
    color: var(--article-navy);
    list-style: none;
}

.blog-article__toc-mobile summary::-webkit-details-marker { display: none; }

.blog-article__toc-mobile[open] summary::after { content: '−'; }

@media (min-width: 1024px) {
    .blog-article__toc-mobile { display: none; }
}

/* ── Breadcrumb ── */
.blog-article__breadcrumb-sep { opacity: 0.4; }

/* ── Meta ── */
.blog-article__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* ── Sections ── */
.blog-article__section p {
    margin: 0 0 16px;
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(43, 49, 59, 0.88);
}

.blog-article__section p:last-child { margin-bottom: 0; }

/* ── Abstract (gorus & seffaflik) ── */
.blog-article__abstract p:last-of-type { margin-bottom: 0; }

.blog-article__abstract-label {
    display: inline-block;
    margin-bottom: 12px;
    font-family: 'FontMedium', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--article-gold);
}

/* ── Hero glow shell (gorus, seffaflik, nedir) ── */
.blog-article__hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* ── Keywords (gorus & seffaflik) ── */
.blog-article__keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ── References (gorus & seffaflik) ── */
.blog-article__refs h2 {
    margin: 0 0 18px;
    font-size: 1.1rem;
    color: var(--article-navy);
}

.blog-article__refs ol {
    margin: 0;
    padding-left: 20px;
}

.blog-article__refs li {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(43, 49, 59, 0.75);
}

.blog-article__refs li:last-child { margin-bottom: 0; }

/* ── Back link hover (gorus & nedir) ── */
.blog-article__back:hover { color: var(--article-magenta); }
