/* =========================================================
   24 SAAT LASTİK - İÇERİK DETAY SAYFASI
   ========================================================= */

.content-detail {
    --content-primary: #111827;
    --content-text: #374151;
    --content-muted: #6b7280;
    --content-border: #e5e7eb;
    --content-soft: #f8fafc;
    --content-accent: #e11d2e;
    --content-accent-dark: #b91524;

    color: var(--content-text);
    font-size: 17px;
    line-height: 1.8;
    word-break: normal;
    overflow-wrap: break-word;
}


/* =========================================================
   BAŞLIKLAR
   ========================================================= */

.content-detail h1 {
    margin: 0 0 25px;
    color: var(--content-primary);
    font-size: 42px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.content-detail h2 {
    position: relative;
    margin: 48px 0 18px;
    padding-left: 17px;
    color: var(--content-primary);
    font-size: 29px;
    line-height: 1.3;
    font-weight: 750;
    letter-spacing: -0.4px;
}

.content-detail h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 10px;
    background: var(--content-accent);
}

.content-detail h3 {
    margin: 30px 0 12px;
    color: var(--content-primary);
    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================================
   PARAGRAF / METİN
   ========================================================= */

.content-detail p {
    margin: 0 0 20px;
}

.content-detail strong {
    color: #1f2937;
    font-weight: 700;
}

.content-detail a {
    color: var(--content-accent);
    font-weight: 650;
    text-decoration: none;
    transition: color .2s ease;
}

.content-detail a:hover {
    color: var(--content-accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================================================
   LİSTELER
   ========================================================= */

.content-detail ul,
.content-detail ol {
    margin: 15px 0 22px;
    padding-left: 25px;
}

.content-detail li {
    margin-bottom: 9px;
    padding-left: 3px;
}

.content-detail li:last-child {
    margin-bottom: 0;
}

.content-detail ul li::marker {
    color: var(--content-accent);
}

.content-detail ol li::marker {
    color: var(--content-accent);
    font-weight: 700;
}


/* =========================================================
   ORTAK KUTU YAPISI
   ========================================================= */

.content-detail .snippet-box,
.content-detail .ai-box,
.content-detail .info-box,
.content-detail .warning-box,
.content-detail .cta-box,
.content-detail .mini-note {
    position: relative;
    margin: 28px 0;
    padding: 23px 25px;
    border-radius: 12px;
}

.content-detail .snippet-box p:last-child,
.content-detail .ai-box p:last-child,
.content-detail .info-box p:last-child,
.content-detail .warning-box p:last-child,
.content-detail .cta-box p:last-child,
.content-detail .mini-note p:last-child {
    margin-bottom: 0;
}

.content-detail .snippet-box ul:last-child,
.content-detail .snippet-box ol:last-child,
.content-detail .ai-box ul:last-child,
.content-detail .ai-box ol:last-child,
.content-detail .info-box ul:last-child,
.content-detail .info-box ol:last-child,
.content-detail .warning-box ul:last-child,
.content-detail .warning-box ol:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SNIPPET BOX
   Kısa cevap / Featured Snippet alanı
   ========================================================= */

.content-detail .snippet-box {
    border: 1px solid #dce3ea;
    border-left: 5px solid var(--content-accent);
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
}

.content-detail .snippet-box > strong:first-child {
    display: block;
    margin-bottom: 7px;
    color: var(--content-primary);
    font-size: 18px;
}


/* =========================================================
   AI BOX
   AI Summary / Özet
   ========================================================= */

.content-detail .ai-box {
    border: 1px solid #dbeafe;
    background: #f4f8ff;
}

.content-detail .ai-box::before {
    content: "✦";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    border-radius: 7px;
    background: #e0ebff;
    color: #3159a7;
    font-size: 15px;
    vertical-align: middle;
}

.content-detail .ai-box > strong:first-child {
    color: #1e3a6d;
    font-size: 17px;
}


/* =========================================================
   INFO BOX
   Bilgilendirme / Kontrol listeleri
   ========================================================= */

.content-detail .info-box {
    border: 1px solid #d7e6dc;
    border-left: 5px solid #2f855a;
    background: #f5faf7;
}

.content-detail .info-box > strong:first-child {
    display: block;
    margin-bottom: 7px;
    color: #205c3d;
    font-size: 17px;
}


/* =========================================================
   WARNING BOX
   Güvenlik / Kritik uyarılar
   ========================================================= */

.content-detail .warning-box {
    border: 1px solid #f3d6d8;
    border-left: 5px solid #dc3545;
    background: #fff7f7;
}

.content-detail .warning-box > strong:first-child {
    display: block;
    margin-bottom: 7px;
    color: #a51f2b;
    font-size: 17px;
}

.content-detail .warning-box strong {
    color: #a51f2b;
}


/* =========================================================
   MINI NOTE
   Küçük teknik notlar
   ========================================================= */

.content-detail .mini-note {
    padding: 17px 20px;
    border: 1px dashed #d1d5db;
    background: #f9fafb;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
}

.content-detail .mini-note > strong:first-child {
    color: var(--content-primary);
}


/* =========================================================
   CTA BOX
   İletişim / Dönüşüm alanı
   ========================================================= */

.content-detail .cta-box {
    margin: 40px 0;
    padding: 29px 30px;
    border: 0;
    background: var(--content-primary);
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(17, 24, 39, 0.15);
}

.content-detail .cta-box > strong:first-child {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.35;
}

.content-detail .cta-box p,
.content-detail .cta-box li {
    color: rgba(255, 255, 255, 0.85);
}

.content-detail .cta-box p:last-child {
    margin-bottom: 0;
}

.content-detail .cta-box strong {
    color: #ffffff;
}

.content-detail .cta-box a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-detail .cta-box a:hover {
    color: #ffffff;
}


/* =========================================================
   TABLOLAR
   ========================================================= */

.content-detail .table-wrap {
    width: 100%;
    margin: 28px 0 34px;
    overflow-x: auto;
    border: 1px solid var(--content-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(17, 24, 39, 0.04);
    -webkit-overflow-scrolling: touch;
}

.content-detail .table-wrap table {
    width: 100%;
    min-width: 650px;
    margin: 0;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.content-detail .table-wrap thead {
    background: var(--content-primary);
}

.content-detail .table-wrap th {
    padding: 16px 18px;
    border: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    text-align: left;
    vertical-align: middle;
}

.content-detail .table-wrap td {
    padding: 15px 18px;
    border: 0;
    border-bottom: 1px solid var(--content-border);
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    vertical-align: top;
}

.content-detail .table-wrap tbody tr:last-child td {
    border-bottom: 0;
}

.content-detail .table-wrap tbody tr:nth-child(even) {
    background: #f9fafb;
}

.content-detail .table-wrap tbody tr {
    transition: background .2s ease;
}

.content-detail .table-wrap tbody tr:hover {
    background: #f4f6f8;
}


/* =========================================================
   FAQ
   ========================================================= */

.content-detail .faq-item {
    margin: 0 0 14px;
    padding: 22px 24px;
    border: 1px solid var(--content-border);
    border-radius: 11px;
    background: #ffffff;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.content-detail .faq-item:hover {
    border-color: #d2d7de;
    box-shadow: 0 7px 24px rgba(17, 24, 39, 0.06);
    transform: translateY(-1px);
}

.content-detail .faq-item h3 {
    position: relative;
    margin: 0 0 9px;
    padding-left: 28px;
    color: var(--content-primary);
    font-size: 18px;
    line-height: 1.45;
}

.content-detail .faq-item h3::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--content-accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.content-detail .faq-item p {
    margin: 0;
    padding-left: 28px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   RESİMLER
   ========================================================= */

.content-detail img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.content-detail figure {
    margin: 32px 0;
}

.content-detail figcaption {
    margin-top: 9px;
    color: var(--content-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}


/* =========================================================
   BLOCKQUOTE
   ========================================================= */

.content-detail blockquote {
    margin: 30px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--content-accent);
    background: var(--content-soft);
    color: #4b5563;
    font-size: 18px;
    line-height: 1.75;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}


/* =========================================================
   AYIRICI
   ========================================================= */

.content-detail hr {
    height: 1px;
    margin: 42px 0;
    border: 0;
    background: var(--content-border);
}


/* =========================================================
   SEÇİLİ METİN
   ========================================================= */

.content-detail ::selection {
    background: var(--content-accent);
    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .content-detail {
        font-size: 16px;
        line-height: 1.75;
    }

    .content-detail h1 {
        font-size: 36px;
    }

    .content-detail h2 {
        margin-top: 40px;
        font-size: 26px;
    }

    .content-detail h3 {
        font-size: 20px;
    }

    .content-detail .snippet-box,
    .content-detail .ai-box,
    .content-detail .info-box,
    .content-detail .warning-box,
    .content-detail .cta-box {
        padding: 21px 22px;
    }
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 767px) {

    .content-detail {
        font-size: 15.5px;
        line-height: 1.72;
    }

    .content-detail h1 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 1.25;
        letter-spacing: -0.4px;
    }

    .content-detail h2 {
        margin: 36px 0 15px;
        padding-left: 14px;
        font-size: 23px;
        line-height: 1.32;
    }

    .content-detail h2::before {
        width: 3px;
    }

    .content-detail h3 {
        margin-top: 25px;
        font-size: 19px;
    }

    .content-detail p {
        margin-bottom: 17px;
    }

    .content-detail ul,
    .content-detail ol {
        padding-left: 21px;
    }

    .content-detail .snippet-box,
    .content-detail .ai-box,
    .content-detail .info-box,
    .content-detail .warning-box {
        margin: 22px 0;
        padding: 18px 18px;
        border-radius: 9px;
    }

    .content-detail .mini-note {
        margin: 20px 0;
        padding: 15px 16px;
        font-size: 14px;
    }

    .content-detail .cta-box {
        margin: 30px 0;
        padding: 23px 20px;
        border-radius: 10px;
    }

    .content-detail .cta-box > strong:first-child {
        font-size: 20px;
    }

    .content-detail .table-wrap {
        margin: 22px 0 28px;
        border-radius: 9px;
    }

    .content-detail .table-wrap table {
        min-width: 580px;
    }

    .content-detail .table-wrap th {
        padding: 14px 15px;
        font-size: 14px;
    }

    .content-detail .table-wrap td {
        padding: 13px 15px;
        font-size: 14px;
    }

    .content-detail .faq-item {
        padding: 18px 17px;
    }

    .content-detail .faq-item h3 {
        padding-left: 26px;
        font-size: 17px;
    }

    .content-detail .faq-item p {
        padding-left: 26px;
        font-size: 15px;
    }
}


/* =========================================================
   ÇOK KÜÇÜK TELEFONLAR
   ========================================================= */

@media (max-width: 480px) {

    .content-detail h1 {
        font-size: 27px;
    }

    .content-detail h2 {
        font-size: 21px;
    }

    .content-detail .snippet-box,
    .content-detail .ai-box,
    .content-detail .info-box,
    .content-detail .warning-box {
        padding: 16px;
    }

    .content-detail .faq-item {
        padding: 17px 15px;
    }
}
