/* Blog Post Page Complete Styles */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Post Meta Card */
.post-meta-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

/* Blog Article */
.blog-article {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.featured-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    /* Image Protection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
    /* Disable right-click and drag on images */
}

.post-excerpt {
    background: #f8f9fa;
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.post-content {
    line-height: 1.8;
    color: #333;
    /* Copy Protection CSS */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    /* Prevent text highlighting */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    /* Disable image dragging */
    pointer-events: auto;
    /* Prevent context menu on images */
    -webkit-context-menu: none;
    /* Disable text selection on all elements */
    -webkit-touch-callout: none;
    /* Prevent long press context menu on mobile */
    -webkit-user-modify: read-only;
    /* Make content read-only */
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    color: #1d1d1f;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    /* Copy Protection for Headings */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.post-content p {
    margin-bottom: 1.5rem;
    /* Copy Protection for Paragraphs */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    /* Copy Protection for Lists */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.post-content li {
    margin-bottom: 0.5rem;
    /* Copy Protection for List Items */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Responsive Tables in Blog Content */
.post-content table,
.blog-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Copy Protection for Tables */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.post-content table th,
.post-content table td,
.blog-article table th,
.blog-article table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    /* Copy Protection for Table Cells */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.post-content table th,
.blog-article table th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-weight: 600;
    color: #1d1d1f;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content table tr:hover,
.blog-article table tr:hover {
    background-color: #f8f9fa;
}

.post-content table tr:last-child td,
.blog-article table tr:last-child td {
    border-bottom: none;
}

/* Table Wrapper for Horizontal Scrolling */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table-responsive table {
    margin: 0;
    min-width: 600px;
}

/* Mobile Table Styles */
@media (max-width: 768px) {
    .post-content table,
    .blog-article table {
        font-size: 0.85rem;
        margin: 1rem 0;
    }
    
    .post-content table th,
    .post-content table td,
    .blog-article table th,
    .blog-article table td {
        padding: 8px 10px;
    }
    
    .post-content table th,
    .blog-article table th {
        font-size: 0.8rem;
    }
    
    /* Stack table on very small screens */
    .table-responsive {
        border: none;
        box-shadow: none;
    }
    
    .table-responsive table {
        min-width: 100%;
    }
}

/* Card-style table for mobile (alternative approach) */
@media (max-width: 576px) {
    .post-content .table-mobile-cards,
    .blog-article .table-mobile-cards {
        display: block;
    }
    
    .post-content .table-mobile-cards thead,
    .blog-article .table-mobile-cards thead {
        display: none;
    }
    
    .post-content .table-mobile-cards tbody,
    .blog-article .table-mobile-cards tbody {
        display: block;
    }
    
    .post-content .table-mobile-cards tr,
    .blog-article .table-mobile-cards tr {
        display: block;
        margin-bottom: 1rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border: 1px solid #e5e7eb;
    }
    
    .post-content .table-mobile-cards td,
    .blog-article .table-mobile-cards td {
        display: block;
        text-align: left !important;
        border: none;
        padding: 0.5rem 0;
        position: relative;
        padding-left: 50%;
    }
    
    .post-content .table-mobile-cards td:before,
    .blog-article .table-mobile-cards td:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: #6b7280;
    }
    
    /* Hide table wrapper on mobile cards */
    .post-content .table-mobile-cards,
    .blog-article .table-mobile-cards {
        display: block !important;
    }
    
    .post-content .table-responsive:has(.table-mobile-cards),
    .blog-article .table-responsive:has(.table-mobile-cards) {
        overflow: visible;
        box-shadow: none;
        border-radius: 0;
    }
}

/* Additional table styling for better appearance */
.post-content table caption,
.blog-article table caption {
    caption-side: top;
    padding: 0.75rem 0;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
}

/* Table with borders variant */
.post-content table.table-bordered,
.blog-article table.table-bordered {
    border: 1px solid #e5e7eb;
}

.post-content table.table-bordered th,
.post-content table.table-bordered td,
.blog-article table.table-bordered th,
.blog-article table.table-bordered td {
    border: 1px solid #e5e7eb;
}

/* Striped table variant */
.post-content table.table-striped tbody tr:nth-child(odd),
.blog-article table.table-striped tbody tr:nth-child(odd) {
    background-color: #f9fafb;
}

/* Table with hover effects */
.post-content table.table-hover tbody tr:hover,
.blog-article table.table-hover tbody tr:hover {
    background-color: #f3f4f6;
}

/* Compact table variant */
.post-content table.table-sm th,
.post-content table.table-sm td,
.blog-article table.table-sm th,
.blog-article table.table-sm td {
    padding: 0.5rem 0.75rem;
}

/* Table with dark header */
.post-content table.table-dark th,
.blog-article table.table-dark th {
    background: #374151;
    color: white;
}

/* Responsive table improvements */
@media (max-width: 992px) {
    .table-responsive {
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    
    .table-responsive::-webkit-scrollbar {
        height: 8px;
    }
    
    .table-responsive::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 4px;
    }
    
    .table-responsive::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
    }
    
    .table-responsive::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }
}

/* Sidebar Styling */
.sidebar-sticky {
    position: sticky !important;
    top: 2rem !important;
    min-height: 200px !important;
}

.sidebar-widget {
    background: white !important;
    border-radius: 16px !important;
    margin-bottom: 2rem !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
}

.sidebar-widget:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    transform: translateY(-2px) !important;
}

.widget-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem !important;
    border-bottom: 1px solid #f1f1f1 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
}

.widget-title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.widget-title i {
    color: #dc3545 !important;
    font-size: 1rem !important;
}

.widget-content {
    padding: 1.5rem !important;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid #f8f8f8 !important;
    transition: all 0.3s ease !important;
}

.recent-post-item:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.recent-post-item:hover {
    background: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin: 0 -1rem 1.5rem -1rem !important;
}

.recent-post-image {
    width: 60px !important;
    height: 60px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.recent-post-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.recent-post-item:hover .recent-post-image img {
    transform: scale(1.1) !important;
}

.image-placeholder {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #f5f5f7 0%, #e5e5e7 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #86868b !important;
    font-size: 1.2rem !important;
}

.recent-post-content {
    flex: 1 !important;
}

.recent-post-title {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
}

.recent-post-title a {
    color: #1d1d1f !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.recent-post-title a:hover {
    color: #dc3545 !important;
}

.recent-post-meta {
    font-size: 0.8rem !important;
    color: #86868b !important;
}

.recent-post-meta i {
    color: #dc3545 !important;
    margin-right: 0.25rem !important;
}

/* Categories Widget */
.categories-list {
    max-height: 300px;
    overflow-y: auto;
}

.category-item {
    margin-bottom: 0.75rem;
}

.category-item:last-child {
    margin-bottom: 0;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #1d1d1f;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: #f8f9fa;
}

.category-link:hover {
    background: #dc3545;
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.category-name {
    font-weight: 500;
}

.category-count {
    background: rgba(0,0,0,0.1);
    color: inherit;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link:hover .category-count {
    background: rgba(255,255,255,0.2);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #dc3545 0%, #0077ed 100%);
    color: white;
}

.newsletter-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem 1.5rem;
}

.newsletter-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.newsletter-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form {
    padding: 1.5rem;
}

.newsletter-input {
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    width: 100%;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    outline: none;
}

.newsletter-btn {
    width: 100%;
    background: white;
    color: #dc3545;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #f5f5f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.newsletter-privacy {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 1rem 0 0 0;
    text-align: center;
}

.newsletter-privacy i {
    margin-right: 0.25rem;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #f5f5f7;
    color: #dc3545;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.tag:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Back to Blog Widget */
.back-to-blog-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.back-to-blog-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.back-to-blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: #86868b;
}

.empty-state i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    margin: 0;
    font-size: 0.9rem;
}

/* Comments Section */
.comments-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.comments-title {
    color: #1d1d1f;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comments-title i {
    color: #dc3545;
}

.comment-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #dc3545;
}

.comment-content {
    display: flex;
    gap: 1rem;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.comment-date {
    font-size: 0.8rem;
    color: #86868b;
}

.comment-text {
    color: #333;
    line-height: 1.6;
}

/* Comment Form */
.comment-form {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.form-title {
    color: #1d1d1f;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-input, .form-textarea {
    border: 2px solid #e5e5e7;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    outline: none;
}

.btn-submit {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

/* Post Navigation */
.post-navigation {
    margin-top: 3rem;
}

.nav-card {
    display: block;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    width: 40px;
    height: 40px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-text {
    flex: 1;
}

.nav-label {
    font-size: 0.8rem;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-title {
    color: #1d1d1f;
    font-weight: 600;
    margin: 0.25rem 0 0 0;
    line-height: 1.3;
}

.next-post .nav-content {
    flex-direction: row-reverse;
    text-align: right;
}

/* Compact Social Share Styles */
.social-share-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.social-share-compact:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.social-share-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.social-share-label i {
    color: #dc3545;
    font-size: 1rem;
}

.social-buttons-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-btn-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn-compact i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.social-btn-compact:hover i {
    transform: scale(1.1);
}

/* Facebook */
.social-btn-compact.facebook {
    background: #1877f2;
    color: #fff;
}

.social-btn-compact.facebook:hover {
    background: #166fe5;
    color: #fff;
}

/* Twitter */
.social-btn-compact.twitter {
    background: #1da1f2;
    color: #fff;
}

.social-btn-compact.twitter:hover {
    background: #1a91da;
    color: #fff;
}

/* LinkedIn */
.social-btn-compact.linkedin {
    background: #0077b5;
    color: #fff;
}

.social-btn-compact.linkedin:hover {
    background: #006ba1;
    color: #fff;
}

/* WhatsApp */
.social-btn-compact.whatsapp {
    background: #25d366;
    color: #fff;
}

.social-btn-compact.whatsapp:hover {
    background: #22c55e;
    color: #fff;
}

/* Copy Link */
.social-btn-compact.copy-link {
    background: #6b7280;
    color: #fff;
}

.social-btn-compact.copy-link:hover {
    background: #4b5563;
    color: #fff;
}

.social-btn-compact.copy-link.success {
    background: #10b981;
    color: #fff;
}

/* Blog Post Social Share Styles (Legacy - keeping for backward compatibility) */
.social-share-section {
    margin: 3rem 0;
}

.social-share-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: all 0.3s ease;
}

.social-share-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.share-title {
    color: #1d1d1f;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.022em;
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    font-size: 1.1rem;
}

.social-btn span {
    font-size: 0.9rem;
}

/* Facebook */
.social-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.social-btn.facebook:hover {
    background: #166fe5;
    color: #fff;
}

/* Twitter */
.social-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.social-btn.twitter:hover {
    background: #1a91da;
    color: #fff;
}

/* LinkedIn */
.social-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.social-btn.linkedin:hover {
    background: #006ba1;
    color: #fff;
}

/* WhatsApp */
.social-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.social-btn.whatsapp:hover {
    background: #22c55e;
    color: #fff;
}

/* Copy Link */
.social-btn.copy-link {
    background: #6b7280;
    color: #fff;
}

.social-btn.copy-link:hover {
    background: #4b5563;
    color: #fff;
}

.social-btn.copy-link.success {
    background: #10b981;
    color: #fff;
}

/* Responsive Design for Compact Social Share */
@media (max-width: 768px) {
    .social-share-compact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .social-share-label {
        justify-content: center;
    }
    
    .social-buttons-compact {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .social-share-compact {
        padding: 0.75rem;
    }
    
    .social-btn-compact {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .social-share-label {
        font-size: 0.8rem;
    }
}

/* Responsive Design for Legacy Social Share */
@media (max-width: 768px) {
    .social-share-card {
        padding: 1.5rem;
    }
    
    .share-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .social-buttons {
        gap: 0.75rem;
    }
    
    .social-btn {
        min-width: 100px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .social-btn span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Additional Copy Protection Styles */
.blog-article {
    /* Prevent selection of entire article */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.blog-article * {
    /* Apply protection to all child elements */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Protect all images in blog content */
.post-content img,
.blog-article img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
    /* Disable image saving and dragging */
}

/* Protect all text elements */
.post-content *,
.blog-article * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Disable text selection on the entire blog article */
.blog-article::selection,
.blog-article *::selection {
    background: transparent !important;
    color: inherit !important;
}

.blog-article::-moz-selection,
.blog-article *::-moz-selection {
    background: transparent !important;
    color: inherit !important;
}

/* Responsive Design for Blog Post Page */
@media (max-width: 992px) {
    .sidebar-sticky {
        position: static;
        margin-top: 3rem;
    }

    .sidebar-widget {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 2rem 0;
    }

    .blog-article {
        padding: 1.5rem;
    }

    .comments-section {
        padding: 1.5rem;
    }

    .comment-form {
        padding: 1.5rem;
    }

    .recent-post-item {
        flex-direction: column;
        text-align: center;
    }

    .recent-post-image {
        align-self: center;
    }

    .nav-content {
        flex-direction: column;
        text-align: center;
    }

    .next-post .nav-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .blog-hero-section {
        padding: 1.5rem 0;
    }

    .blog-article {
        padding: 1rem;
    }

    .sidebar-widget {
        margin-bottom: 1rem;
    }

    .widget-content {
        padding: 1rem;
    }
}

/* Questions Section Styles */
.questions-section {
    margin-top: 2rem;
}

.questions-section .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.questions-section .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1.5rem;
}

.questions-section .card-body {
    padding: 2rem;
}

.question-item {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.question-item:last-child {
    margin-bottom: 0;
}

.question-item h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.question-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.question-content p {
    margin-bottom: 1rem;
}

.question-content p:last-child {
    margin-bottom: 0;
}

.question-content ul,
.question-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.question-content li {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for questions section */
@media (max-width: 768px) {
    .questions-section .card-body {
        padding: 1.5rem;
    }
    
    .question-item {
        padding-left: 1rem;
    }
    
    .question-content {
        padding: 1rem;
    }
}
