/* ================================================================
   GEO / LLM-optimize content components
   - .tldr        : Özet / Key Takeaways bloğu (LLM'ler alıntılar)
   - .last-updated: "Son güncelleme" bandı (taze içerik sinyali)
   - .speakable   : Sesli arama için işaretli içerik (görsel etki yok)
   - .glossary    : Terim tanımı bloğu
   ================================================================ */

.tldr {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.06), rgba(34, 211, 238, 0.02));
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-left: 3px solid #22d3ee;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 28px 0;
    color: var(--text-primary, #e6edf3);
}

.tldr__title {
    font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #22d3ee;
    margin: 0 0 12px 0;
}

.tldr__title::before {
    content: '↳ ';
    opacity: 0.6;
}

.tldr__list {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: none;
}

.tldr__list li {
    position: relative;
    padding: 4px 0 4px 18px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-primary, #e6edf3);
}

.tldr__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
}

/* "Son güncelleme" bandı - sayfa başı (H1 altında) */
.last-updated {
    font-size: 0.85rem;
    color: var(--text-muted, #8b949e);
    margin: 8px 0 24px 0;
    font-family: 'Inter', system-ui, sans-serif;
}

.last-updated time {
    color: var(--text-secondary, #c9d1d9);
    font-weight: 500;
}

/* Sayfa altına yerleştirilen "Son güncelleme" sarmalı - footer öncesi ince band */
.page-meta-section {
    padding-top: 16px !important;
    padding-bottom: 8px !important;
}
.page-meta-section .last-updated {
    margin: 0;
    text-align: center;
    opacity: 0.75;
}

/* Glossary / DefinedTerm tek bir terim için */
.glossary-term {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 16px 0;
}

.glossary-term dt {
    font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #22d3ee;
    margin: 0 0 6px 0;
}

.glossary-term dd {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--text-primary, #e6edf3);
}

/* Speakable işaretli bölge - görsel etki yok, sadece a11y için */
.speakable {
    position: relative;
}

/* Mobil */
@media (max-width: 600px) {
    .tldr {
        padding: 16px 18px;
        margin: 20px 0;
        border-radius: 10px;
    }

    .tldr__title {
        font-size: 0.85rem;
    }

    .tldr__list li {
        font-size: 0.94rem;
    }
}
