/* ========================================
   BLOG DETAIL PAGE - SIMPLE & CLEAN
   Blog liste ile uyumlu, gereksiz CSS yok
   ======================================== */

/* CTA Icon */
.blog-detail-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-detail-cta__icon svg {
    color: #ffffff;
    width: 32px;
    height: 32px;
}

/* CTA Logo Image */
.blog-detail-cta__logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* TOC List - Blog Widget Style */
.blog-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-toc-list li {
    margin-bottom: 4px;
}

.blog-toc-link {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start !important; /* Override blog-page.css space-between */
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    transition: all 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.blog-toc-link:hover,
.blog-toc-link.active {
    background: rgba(233, 30, 99, 0.06);
    color: #E91E63;
    font-weight: 600;
}

.blog-toc-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0;
}

.blog-toc-link span:not(.blog-toc-number) {
    /* Metin sadece kendi genişliği kadar yer kaplasın */
    display: inline-block;
    max-width: 100%;
}

/* Article Content */
.blog-detail__article {
    font-size: 17px;
    line-height: 1.9;
    color: #374151;
}

.blog-detail__article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-top: 48px;
    margin-bottom: 20px;
}

.blog-detail__article h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    margin-top: 36px;
    margin-bottom: 16px;
}

.blog-detail__article p {
    margin-bottom: 20px;
}

.blog-detail__article img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 28px 0;
}

/* Tags */
.blog-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #e5e7eb;
}

/* Share Buttons */
.blog-detail__share {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e5e7eb;
}

.blog-detail__share h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.blog-detail__share-btns {
    display: flex;
    gap: 10px;
}

.blog-detail__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    color: #6b7280;
}

.blog-detail__share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.blog-detail__share-btn--x:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.blog-detail__share-btn--fb:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.blog-detail__share-btn--li:hover {
    background: #0A66C2;
    color: #fff;
    border-color: #0A66C2;
}

.blog-detail__share-btn--wa:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.blog-detail__share-btn--pin:hover {
    background: #E60023;
    color: #fff;
    border-color: #E60023;
}

.blog-detail__share-btn--copy {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-detail__share-btn--copy:hover {
    background: #6b7280;
    color: #fff;
    border-color: #6b7280;
}

.blog-detail__share-btn--copy.copied {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

/* Responsive */
@media (max-width: 767px) {
    .blog-detail__article {
        font-size: 15px;
    }
    
    .blog-detail__article h2 {
        font-size: 22px;
    }
    
    .blog-detail__article h3 {
        font-size: 18px;
    }
    
    .blog-detail__share-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
