/* =========================
   BLOG POST DETAIL PAGE
========================= */

/* Page Container */
.blog-detail-page {
    padding: 30px 0;
}

/* ========== BREADCRUMB ========== */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-gold, #ffc107);
}

.breadcrumb-link i {
    font-size: 0.85rem;
}

.breadcrumb-separator {
    color: #999;
    font-size: 0.85rem;
}

.breadcrumb-current {
    color: var(--primary-gold, #ffc107);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Dark Mode Breadcrumb */
.dark-mode .breadcrumb-nav {
    background: rgba(30, 30, 40, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode .breadcrumb-link {
    color: #ccc;
}

.dark-mode .breadcrumb-separator {
    color: #666;
}

/* ========== MAIN ARTICLE ========== */
.blog-post-article {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* Category Badge */
.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.5);
    color: #000;
}

/* Blog Title */
.blog-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 0;
    line-height: 1.3;
}

/* Meta Bar */
.meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-gold, #ffc107);
    font-size: 0.95rem;
}

/* Featured Image - MEDIUM SIZE WITHOUT CROPPING */
.featured-image-wrapper {
    width: 100%;
    max-width: 700px;
    /* Medium size limit */
    margin: 25px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-image {
    width: 100%;
    height: auto;
    /* AUTO HEIGHT - no cropping */
    display: block;
    object-fit: contain;
    /* Contain to prevent cropping */
    transition: transform 0.4s ease;
}

.featured-image:hover {
    transform: scale(1.02);
}

/* Lead Text */
.lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    font-weight: 500;
    padding: 20px;
    background: rgba(255, 193, 7, 0.08);
    border-left: 4px solid var(--primary-gold, #ffc107);
    border-radius: 8px;
    margin: 25px 0;
}

/* Article Content */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin: 30px 0;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--primary-gold, #ffc107);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
}

/* Article Tags */
.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tag-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-gold, #ffc107);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: rgba(255, 193, 7, 0.2);
    color: var(--primary-gold, #ffc107);
    transform: translateY(-2px);
}

/* Share Section */
.share-section {
    margin-top: 35px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.08));
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.share-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.share-title i {
    color: var(--primary-gold, #ffc107);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

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

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #000000, #333333);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5fc1);
}

.share-btn.copy-link {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.share-btn.copied {
    background: linear-gradient(135deg, #28a745, #218838);
}

/* ========== COMMENTS SECTION ========== */
.comments-section {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 193, 7, 0.2);
}

.comments-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.comments-title i {
    color: var(--primary-gold, #ffc107);
    font-size: 1.2rem;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 3px solid var(--primary-gold, #ffc107);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(3px);
}

.comment-header {
    margin-bottom: 12px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold, #ffc107), #ff9800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.user-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.comment-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #888;
}

.comment-date i {
    font-size: 0.75rem;
    color: var(--primary-gold, #ffc107);
}

.comment-body {
    padding-left: 52px;
}

.comment-body p {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 12px;
    border: 2px dashed rgba(255, 193, 7, 0.3);
}

.no-comments i {
    font-size: 3rem;
    color: var(--primary-gold, #ffc107);
    margin-bottom: 15px;
    opacity: 0.6;
}

.no-comments p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Comment Form */
.comment-form-box {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.comment-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.comment-textarea:focus {
    outline: none;
    border-color: var(--primary-gold, #ffc107);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
    background: #fff;
}

.comment-textarea::placeholder {
    color: #999;
}

.comment-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-gold, #ffc107), #ff9800);
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.comment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #ff9800, var(--primary-gold, #ffc107));
    color: #000;
}

.comment-submit-btn i {
    font-size: 0.9rem;
}

/* ========== CONTACT ADMIN SECTION ========== */
.contact-admin-section {
    margin-top: 40px;
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.05));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
}

.contact-admin-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold, #ffc107), #ff9800);
    border-radius: 50%;
    color: #000;
    font-size: 2.5rem;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.contact-admin-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-admin-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.admin-contact-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.admin-contact-info i {
    color: var(--primary-gold, #ffc107);
    font-size: 1.2rem;
}

.admin-contact-info a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.admin-contact-info a:hover {
    color: var(--primary-gold, #ffc107);
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-gold, #ffc107), #ff9800);
    color: #000;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    color: #000;
}

/* ========== LOGIN PROMPT SECTION ========== */
.login-prompt-section {
    margin-top: 40px;
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(52, 168, 83, 0.05));
    border: 2px solid rgba(66, 133, 244, 0.3);
    border-radius: 16px;
}

.login-prompt-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    color: #fff;
    font-size: 2.5rem;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.login-prompt-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.login-prompt-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.login-prompt-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-login-prompt,
.btn-register-prompt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-login-prompt {
    background: linear-gradient(135deg, #4285f4, #357ae8);
    color: #fff;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-login-prompt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.5);
    color: #fff;
}

.btn-register-prompt {
    background: linear-gradient(135deg, #34a853, #2d8e47);
    color: #fff;
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
}

.btn-register-prompt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.5);
    color: #fff;
}

/* ========== SIDEBAR ========== */
.blog-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 20px;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sidebar-box:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.sidebar-title i {
    color: var(--primary-gold, #ffc107);
    font-size: 1rem;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    color: var(--primary-gold, #ffc107);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--primary-gold, #ffc107), #ff9800);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

/* Search Widget */
.sidebar-search-wrapper {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-search-input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.02);
}

.sidebar-search-btn {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--primary-gold, #ffc107), #ff9800);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search-btn i {
    color: #000;
    font-size: 1rem;
}

.sidebar-search-btn:hover {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 6px;
}

.category-list a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #555;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.25s ease;
}

.category-list a i {
    color: var(--primary-gold, #ffc107);
    font-size: 0.65rem;
}

.category-list a:hover {
    color: var(--primary-gold, #ffc107);
    padding-left: 5px;
}

.category-list a:hover i {
    transform: translateX(3px);
}

/* About Widget */
.sidebar-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Social Links */
.follow-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

/* Glow effect on hover */
.social-link::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.social-link.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.social-link.instagram::before {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
    filter: blur(8px);
}

.social-link.instagram:hover::before {
    opacity: 0.8;
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.youtube::before {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    filter: blur(8px);
}

.social-link.youtube:hover::before {
    opacity: 0.8;
}

.social-link.twitter {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.social-link.twitter::before {
    background: linear-gradient(135deg, #333333, #000000);
    filter: blur(8px);
}

.social-link.twitter:hover::before {
    opacity: 0.8;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.2) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.social-link i {
    position: relative;
    z-index: 1;
    animation: subtlePulse 2s ease-in-out infinite;
}

.social-link:hover i {
    animation: excitedBounce 0.6s ease;
}

@keyframes subtlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes excitedBounce {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(0.95);
    }

    75% {
        transform: scale(1.15);
    }
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 152, 0, 0.12));
    border: 2px solid rgba(255, 193, 7, 0.3);
    text-align: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold, #ffc107), #ff9800);
    border-radius: 50%;
    color: #000;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.newsletter-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-gold, #ffc107), #ff9800);
    color: #000;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    color: #000;
}

/* ========== DARK MODE ========== */
.dark-mode .blog-post-article,
.dark-mode .sidebar-box {
    background: rgba(30, 30, 40, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .blog-title {
    color: #fff;
}

.dark-mode .meta-bar {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .meta-item {
    color: #aaa;
}

.dark-mode .lead-text {
    color: #ccc;
    background: rgba(255, 193, 7, 0.12);
}

.dark-mode .article-content {
    color: #ddd;
}

.dark-mode .article-content p {
    color: #ccc;
}

.dark-mode .article-tags {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .tag-label {
    color: #aaa;
}

.dark-mode .share-section {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 152, 0, 0.12));
    border-color: rgba(255, 193, 7, 0.25);
}

.dark-mode .share-title {
    color: #fff;
}

.dark-mode .sidebar-title {
    color: #fff;
}

.dark-mode .sidebar-box p {
    color: #ccc;
}

.dark-mode .sidebar-search-input {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.dark-mode .sidebar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.dark-mode .category-list a {
    color: #ccc;
}

.dark-mode .follow-text,
.dark-mode .newsletter-text {
    color: #aaa;
}

.dark-mode .newsletter-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.15));
}

/* Comments Section Dark Mode */
.dark-mode .comments-title {
    color: #fff;
}

.dark-mode .comment-item {
    background: rgba(40, 40, 50, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-gold, #ffc107);
}

.dark-mode .comment-item:hover {
    background: rgba(50, 50, 60, 0.9);
}

.dark-mode .user-name {
    color: #fff;
}

.dark-mode .comment-date {
    color: #aaa;
}

.dark-mode .comment-body p {
    color: #ddd;
}

.dark-mode .no-comments {
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.25);
}

.dark-mode .no-comments p {
    color: #ccc;
}

.dark-mode .comment-form-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 152, 0, 0.08));
    border-color: rgba(255, 193, 7, 0.3);
}

.dark-mode .comment-textarea {
    background: rgba(40, 40, 50, 0.8);
    border-color: rgba(255, 193, 7, 0.3);
    color: #fff;
}

.dark-mode .comment-textarea:focus {
    background: rgba(50, 50, 60, 0.9);
}

.dark-mode .comment-textarea::placeholder {
    color: #888;
}

/* Contact Admin & Login Prompt Dark Mode */
.dark-mode .contact-admin-title,
.dark-mode .login-prompt-title {
    color: #fff;
}

.dark-mode .contact-admin-text,
.dark-mode .login-prompt-text {
    color: #ccc;
}

.dark-mode .contact-admin-section {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 152, 0, 0.08));
    border-color: rgba(255, 193, 7, 0.35);
}

.dark-mode .login-prompt-section {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.12), rgba(52, 168, 83, 0.08));
    border-color: rgba(66, 133, 244, 0.35);
}

.dark-mode .admin-contact-info {
    background: rgba(40, 40, 50, 0.8);
}

.dark-mode .admin-contact-info a {
    color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .blog-post-article {
        padding: 25px;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .featured-image-wrapper {
        max-width: 100%;
    }

    .sidebar-sticky {
        position: relative;
        top: 0;
    }
}

@media (max-width: 576px) {
    .blog-post-article {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.5rem;
    }

    .meta-bar {
        gap: 12px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }

    .quick-actions {
        flex-direction: column;
    }

    .breadcrumb-nav {
        padding: 10px 12px;
    }
}

/* ==========================================================
   COMMENT ACTIONS (EDIT / DELETE)
   ========================================================== */
.comment-actions {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    opacity: 0.9;
}

.action-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 0;
}

.edit-link {
    color: var(--primary-gold);
}

.delete-link {
    color: #ff4757;
}

.action-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.edit-link:hover {
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.delete-link:hover {
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
}