

.blog-draft-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.blog-sidebar-col {
    order: 1;
}

#blogTitle {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--text-primary);
    outline: none;
    padding: 0 0 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
    font-family: inherit;
}

.topluluk-search-input {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    width: 100%;
}

.bc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bc-card {
    display: flex;
    gap: 18px;
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bc-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glass);
}

.bc-cover {
    flex-shrink: 0;
    width: 200px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
}

.bc-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tl-sidebar-question-row.bc-popular-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.bc-popular-thumb {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.tl-sidebar-question-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.tl-sidebar-question-desc {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bc-title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.35;
    color: var(--text-primary);
}

.bc-desc {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-meta {
    display: flex;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: auto;
}

.bc-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bc-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding: 3px 10px;
    border-radius: 999px;
    text-decoration: none;
}

@media (max-width: 640px) {
    .bc-card {
        flex-direction: column;
    }

    .bc-cover {
        width: 100%;
        height: 160px;
    }
}

.bc-detail {
    padding: 28px;
}

.bc-detail-cover {
    margin: -28px -28px 20px;
    max-height: 380px;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.bc-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-detail-title {
    margin: 0 0 14px;
    font-size: 1.8rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.bc-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.bc-detail-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bc-share-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 5px 14px;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}

.bc-share-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.bc-detail-content {
    font-size: 1.08rem;
}

.blog-cover-picker {
    margin-bottom: 8px;
}

#blogCoverPreview {
    max-width: 320px;
    max-height: 180px;
    width: auto;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-bottom: 10px;
    object-fit: cover;
}

.blog-cover-picker-actions {
    display: flex;
    gap: 8px;
}
