/* resources/css/blog.css */

/* Blog Content Typography */
.blog-content h1, .blog-content h2, .blog-content h3 {
    color: #fff;
    font-weight: 800;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-content h1 { font-size: 3rem; }
.blog-content h2 { font-size: 2.25rem; }
.blog-content h3 { font-size: 1.75rem; }

.blog-content p {
    color: #94a3b8;
    line-height: 2;
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    font-weight: 400;
}

.blog-content b, .blog-content strong {
    color: #fff;
    font-weight: 700;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.sidebar-widget h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Category Badge counts */
.category-count {
    background: #1a1a1a;
    color: #666;
    font-size: 0.7rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.group:hover .category-count {
    background: #ef4444;
    color: #fff;
}

/* Highlight Box */
.highlight-box {
    background: #111;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.topic-cta-orange {
    background: linear-gradient(135deg, #ff5f00, #ff2e00);
    border-radius: 2rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.topic-cta-orange::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

/* Share Buttons */
.share-btn {
    width: 40px;
    height: 40px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: translateY(-3px);
}

/* Breadcrumbs */
.breadcrumb-item {
    transition: all 0.3s ease;
}

.breadcrumb-item:hover {
    color: #ef4444;
}
