/* Blog Detail Styles */

.blog-detail-section {
    padding: 150px 0 80px;
    background: #f8f9fa;
}

.blog-detail-article {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.blog-breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-cyan);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

.blog-detail-category {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--black);
    line-height: 1.2;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #666;
}

.blog-detail-meta i {
    margin-right: 5px;
    color: var(--primary-cyan);
}

.blog-detail-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 40px;
}

.blog-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--black);
}

.blog-detail-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 25px 0 12px;
    color: var(--black);
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.blog-detail-content a {
    color: var(--primary-cyan);
    text-decoration: underline;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/* Share Buttons */
.blog-share {
    padding-top: 30px;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.blog-share h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--black);
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.x {
    background: #000000;
}

.share-btn.tiktok {
    background: #000000;
}

.share-btn.tiktok:hover {
    background: #25F4EE;
    color: #000;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Comments Section */
.blog-comments-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.comments-title i {
    color: var(--primary-cyan);
}

.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.comment-author {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 3px;
}

.comment-date {
    font-size: 0.85rem;
    color: #999;
}

.comment-content {
    color: #666;
    line-height: 1.7;
    margin-left: 62px;
}

.comment-replies {
    margin-left: 62px;
    margin-top: 20px;
    padding-left: 20px;
    border-left: 3px solid #eee;
}

.comment-form-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.comment-form-wrapper h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--black);
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 194, 216, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-pink) 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 194, 216, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 130px 0 60px;
    }
    
    .blog-detail-article {
        padding: 25px;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-content {
        font-size: 1rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}
