/**
 * Modern Blog Single Styles
 * Vize Tema - Blog Detail Page
 */

/* Blog Hero Section */
.blog-hero-modern {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.blog-hero-modern:hover .blog-hero-bg {
    transform: scale(1.15);
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumb */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: white !important;
}

.blog-breadcrumb * {
    color: white !important;
}

.blog-breadcrumb a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.blog-breadcrumb a:hover {
    color: white !important;
    opacity: 1;
}

.blog-breadcrumb .separator {
    color: white !important;
    font-size: 12px;
    opacity: 0.7;
}

/* Hero Title */
.blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white !important;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* Hero Meta */
.blog-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    color: white !important;
    font-size: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white !important;
}

.meta-item span {
    color: white !important;
}

.meta-item i {
    color: #FFD700;
    font-size: 14px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.author-name {
    font-weight: 600;
    color: white !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: white;
    font-size: 24px;
    opacity: 0.7;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Blog Content Section */
.blog-content-modern {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #006233 0%, #004d26 100%);
    width: 0%;
    transition: width 0.2s ease;
}

/* Share Buttons Sticky */
.share-buttons-sticky {
    position: fixed;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: white;
    border-radius: 30px;
    padding: 15px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.share-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy-link {
    background: #666;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Article Content */
.article-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* Categories */
.article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #006233 0%, #004d26 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 98, 51, 0.3);
}

/* Article Body */
.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.article-body h1, 
.article-body h2, 
.article-body h3, 
.article-body h4, 
.article-body h5, 
.article-body h6 {
    margin-top: 35px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

.article-body h2 {
    font-size: 32px;
    padding-bottom: 15px;
    border-bottom: 3px solid #006233;
}

.article-body h3 {
    font-size: 26px;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-body blockquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #006233;
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 10px;
    font-style: italic;
    font-size: 20px;
    color: #555;
}

.article-body ul, 
.article-body ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 12px;
}

/* Article Tags */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.tags-label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.tag-item {
    display: inline-block;
    padding: 5px 15px;
    background: #f0f0f0;
    color: #666;
    border-radius: 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #006233;
    color: white;
}

/* Author Box */
.author-box {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.author-avatar-wrapper {
    flex-shrink: 0;
}

.author-avatar-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #006233;
}

.author-info {
    flex: 1;
}

.author-info .author-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info .author-name a {
    color: #333;
    text-decoration: none;
}

.author-title {
    color: #006233;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.author-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: #006233;
    color: white;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.nav-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-item.next {
    text-align: right;
    align-items: flex-end;
}

.nav-label {
    font-size: 13px;
    color: #006233;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Related Posts */
.related-posts {
    margin-bottom: 50px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: #006233;
}

.related-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-post-card .post-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 98, 51, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-post-card:hover .post-overlay {
    opacity: 1;
}

.post-overlay i {
    color: white;
    font-size: 24px;
}

.related-post-card .post-content {
    padding: 25px;
}

.post-meta {
    margin-bottom: 15px;
}

.post-date {
    font-size: 13px;
    color: #999;
}

.post-date i {
    margin-right: 5px;
}

.related-post-card .post-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.related-post-card .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-card .post-title a:hover {
    color: #006233;
}

.read-more {
    color: #006233;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* Modern Comments Section - Mobile First */
.blog-content-modern .comments-section,
.comments-section,
#comments {
    background: #f9f9f9 !important;
    border-radius: 15px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e9ecef !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 40px !important;
}

/* Top accent line - REMOVED */

/* Override any conflicting styles */
.blog-content-modern .comments-section .comments-area,
.comments-section .comments-area,
#comments.comments-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    background: transparent !important;
}

/* Modern Comments Title - Clean & Mobile Friendly */
.blog-content-modern .comments-section h3,
.blog-content-modern .comments-section .comments-title,
.blog-content-modern .comment-reply-title,
.comments-section h3,
.comments-section .comments-title,
.comments-section h2.comments-title,
#comments h2.comments-title,
#comments h3,
.comment-reply-title,
#reply-title {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #333 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    margin-bottom: 25px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    position: relative !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Simple modern icon */
.blog-content-modern .comments-section h3::before,
.blog-content-modern .comments-section .comments-title::before,
.blog-content-modern .comment-reply-title::before,
.comments-section h3::before,
.comments-section .comments-title::before,
.comments-section h2.comments-title::before,
#comments h2.comments-title::before,
#comments h3::before,
.comment-reply-title::before,
#reply-title::before {
    content: '💬' !important;
    font-size: 24px !important;
    display: inline-block !important;
    margin-right: 8px !important;
}

.comment-reply-title::before,
#reply-title::before {
    content: '✍️' !important;
}

/* Ultra Modern Comment List - Force Override */
.blog-content-modern .comment-list,
.comments-section .comment-list,
#comments .comment-list,
.comment-list,
ol.comment-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    gap: 25px !important;
}

/* Modern Comment Cards - Clean & Interactive */
.blog-content-modern .comment-list .comment,
.comments-section .comment-list .comment,
#comments .comment-list .comment,
.comment-list .comment,
.comment-list li.comment,
.comment-list .comment-item {
    background: white !important;
    border: 1px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 20px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
    border-left: 4px solid #006233 !important;
}

/* Subtle hover animation */
.blog-content-modern .comment-list .comment::before,
.comments-section .comment-list .comment::before,
#comments .comment-list .comment::before,
.comment-list .comment::before,
.comment-list li.comment::before,
.comment-list .comment-item::before {
    display: none !important;
}

.blog-content-modern .comment-list .comment:hover,
.comments-section .comment-list .comment:hover,
#comments .comment-list .comment:hover,
.comment-list .comment:hover,
.comment-list li.comment:hover,
.comment-list .comment-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 98, 51, 0.1) !important;
    background: white !important;
    border-left-color: #FFD700 !important;
}

.blog-content-modern .comment-list .comment:hover::before,
.comments-section .comment-list .comment:hover::before,
#comments .comment-list .comment:hover::before,
.comment-list .comment:hover::before,
.comment-list li.comment:hover::before,
.comment-list .comment-item:hover::before {
    display: none !important;
}

/* Ultra Modern Comment Structure - Force Override */
.blog-content-modern .comment-body,
.comments-section .comment-body,
#comments .comment-body,
.comment-body,
article.comment-body {
    display: block !important;
    gap: 0 !important;
}

/* Modern Comment Author - Clean & Responsive */
.blog-content-modern .comment-author,
.comments-section .comment-author,
#comments .comment-author,
.comment-author,
.comment-author.vcard {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
    position: relative !important;
}

.blog-content-modern .comment-author .avatar,
.comments-section .comment-author .avatar,
#comments .comment-author .avatar,
.comment-author .avatar,
.comment-author img.avatar {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    border: 3px solid #006233 !important;
    background: white !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 98, 51, 0.1) !important;
    flex-shrink: 0 !important;
}

.blog-content-modern .comment-author:hover .avatar,
.comments-section .comment-author:hover .avatar,
#comments .comment-author:hover .avatar,
.comment-author:hover .avatar,
.comment-author img.avatar:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0, 98, 51, 0.2) !important;
    border-color: #FFD700 !important;
}

.blog-content-modern .comment-author .fn,
.comments-section .comment-author .fn,
#comments .comment-author .fn,
.comment-author .fn,
.comment-author h4.fn {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #333 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    margin: 0 0 5px 0 !important;
    transition: all 0.3s ease !important;
    line-height: 1.3 !important;
}

.blog-content-modern .comment-author .fn a,
.comments-section .comment-author .fn a,
#comments .comment-author .fn a,
.comment-author .fn a,
.comment-author h4.fn a {
    text-decoration: none !important;
    color: #333 !important;
    transition: color 0.3s ease !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.blog-content-modern .comment-author .fn a:hover,
.comments-section .comment-author .fn a:hover,
#comments .comment-author .fn a:hover,
.comment-author .fn a:hover,
.comment-author h4.fn a:hover {
    color: #006233 !important;
}

/* Modern Comment Meta - Clean & Readable */
.blog-content-modern .comment-metadata,
.comments-section .comment-metadata,
#comments .comment-metadata,
.comment-metadata,
.comment-meta .comment-metadata {
    position: static !important;
    top: auto !important;
    right: auto !important;
    background: rgba(0, 98, 51, 0.05) !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #006233 !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(0, 98, 51, 0.1) !important;
    margin-top: 0 !important;
    display: inline-block !important;
    margin-left: 15px !important;
}

.blog-content-modern .comment-metadata a,
.comments-section .comment-metadata a,
#comments .comment-metadata a,
.comment-metadata a,
.comment-meta .comment-metadata a {
    color: inherit !important;
    text-decoration: none !important;
}

/* Clean Modern Comment Content - Simplified */
.blog-content-modern .comment-content,
.comments-section .comment-content,
#comments .comment-content,
.comment-content {
    margin: 15px 0 !important;
    color: #666 !important;
    line-height: 1.6 !important;
    font-size: 15px !important;
    position: relative !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-top: 15px !important;
}

/* Remove quote decoration */
.blog-content-modern .comment-content::before,
.comments-section .comment-content::before,
#comments .comment-content::before,
.comment-content::before {
    display: none !important;
}

.blog-content-modern .comment-content p,
.comments-section .comment-content p,
#comments .comment-content p,
.comment-content p {
    margin-bottom: 15px !important;
}

/* Clean Modern Reply Button - Simplified */
.blog-content-modern .reply,
.comments-section .reply,
#comments .reply,
.reply {
    margin-top: 15px !important;
    text-align: left !important;
}

.blog-content-modern .reply .comment-reply-link,
.comments-section .reply .comment-reply-link,
#comments .reply .comment-reply-link,
.reply .comment-reply-link,
.reply a.comment-reply-link {
    background: #006233 !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    display: inline-block !important;
    align-items: center !important;
    gap: 5px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    position: relative !important;
    overflow: visible !important;
}

/* Remove complex animations */
.blog-content-modern .reply .comment-reply-link::before,
.comments-section .reply .comment-reply-link::before,
#comments .reply .comment-reply-link::before,
.reply .comment-reply-link::before,
.reply a.comment-reply-link::before {
    display: none !important;
}

.blog-content-modern .reply .comment-reply-link:hover,
.comments-section .reply .comment-reply-link:hover,
#comments .reply .comment-reply-link:hover,
.reply .comment-reply-link:hover,
.reply a.comment-reply-link:hover {
    transform: none !important;
    background: #004d26 !important;
    box-shadow: 0 2px 8px rgba(0, 98, 51, 0.3) !important;
    color: white !important;
}

.blog-content-modern .reply .comment-reply-link:hover::before,
.comments-section .reply .comment-reply-link:hover::before,
#comments .reply .comment-reply-link:hover::before,
.reply .comment-reply-link:hover::before,
.reply a.comment-reply-link:hover::before {
    display: none !important;
}

.blog-content-modern .reply .comment-reply-link::after,
.comments-section .reply .comment-reply-link::after,
#comments .reply .comment-reply-link::after,
.reply .comment-reply-link::after,
.reply a.comment-reply-link::after {
    display: none !important;
}

.blog-content-modern .reply .comment-reply-link:hover::after,
.comments-section .reply .comment-reply-link:hover::after,
#comments .reply .comment-reply-link:hover::after,
.reply .comment-reply-link:hover::after,
.reply a.comment-reply-link:hover::after {
    display: none !important;
}

/* Nested Comments */
.comment-list .children {
    margin-top: 25px;
    margin-left: 40px;
    border-left: 3px solid #006233;
    padding-left: 25px;
}

/* Modern Comment Form - Attractive & Mobile Friendly */
.blog-content-modern .comment-respond,
.comments-section .comment-respond,
#comments .comment-respond,
.comment-respond,
#respond {
    margin-top: 40px !important;
    padding: 25px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 16px rgba(0, 98, 51, 0.08) !important;
    border: 1px solid rgba(0, 98, 51, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    padding-top: 25px !important;
}

/* Subtle top accent - REMOVED */

/* Override the existing inline styles that create layout conflicts */
.comments-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

/* Fix the comment body flex layout that's breaking our design */
.blog-content-modern .comment-body,
.comments-section .comment-body,
#comments .comment-body,
.comment-body,
article.comment-body {
    display: block !important;
    flex-direction: column !important;
}

.comment-respond .comment-reply-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-respond .comment-reply-title::before {
    content: '\f075';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #006233;
    font-size: 20px;
}

/* Ultra Modern Comment Form Fields - Force Override */
.blog-content-modern .comment-form,
.comments-section .comment-form,
#comments .comment-form,
.comment-form,
#commentform {
    display: grid !important;
    gap: 25px !important;
}

.blog-content-modern .comment-form .form-group,
.blog-content-modern .comment-form-comment,
.blog-content-modern .comment-form-author,
.blog-content-modern .comment-form-email,
.blog-content-modern .comment-form-url,
.comments-section .comment-form .form-group,
.comments-section .comment-form-comment,
.comments-section .comment-form-author,
.comments-section .comment-form-email,
.comments-section .comment-form-url,
#comments .comment-form .form-group,
#comments .comment-form-comment,
#comments .comment-form-author,
#comments .comment-form-email,
#comments .comment-form-url,
.comment-form .form-group,
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url,
#commentform .form-group,
#commentform .comment-form-comment {
    margin: 0 !important;
    margin-bottom: 0 !important;
}

.blog-content-modern .comment-form label,
.comments-section .comment-form label,
#comments .comment-form label,
.comment-form label,
#commentform label {
    display: block !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    font-size: 15px !important;
    background: linear-gradient(135deg, #006233 0%, #004d26 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.blog-content-modern .comment-form input[type="text"],
.blog-content-modern .comment-form input[type="email"],
.blog-content-modern .comment-form input[type="url"],
.blog-content-modern .comment-form textarea,
.comments-section .comment-form input[type="text"],
.comments-section .comment-form input[type="email"],
.comments-section .comment-form input[type="url"],
.comments-section .comment-form textarea,
#comments .comment-form input[type="text"],
#comments .comment-form input[type="email"],
#comments .comment-form input[type="url"],
#comments .comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea,
#commentform .form-control {
    width: 100% !important;
    padding: 18px 25px !important;
    border: 2px solid transparent !important;
    border-radius: 15px !important;
    font-size: 16px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, rgba(0, 98, 51, 0.2), rgba(255, 215, 0, 0.2)) border-box !important;
    box-shadow: 
        0 4px 15px rgba(0, 98, 51, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.blog-content-modern .comment-form input[type="text"]:focus,
.blog-content-modern .comment-form input[type="email"]:focus,
.blog-content-modern .comment-form input[type="url"]:focus,
.blog-content-modern .comment-form textarea:focus,
.comments-section .comment-form input[type="text"]:focus,
.comments-section .comment-form input[type="email"]:focus,
.comments-section .comment-form input[type="url"]:focus,
.comments-section .comment-form textarea:focus,
#comments .comment-form input[type="text"]:focus,
#comments .comment-form input[type="email"]:focus,
#comments .comment-form input[type="url"]:focus,
#comments .comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus,
#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform input[type="url"]:focus,
#commentform textarea:focus,
#commentform .form-control:focus {
    outline: none !important;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #006233, #FFD700) border-box !important;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 8px 25px rgba(0, 98, 51, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.blog-content-modern .comment-form textarea,
.comments-section .comment-form textarea,
#comments .comment-form textarea,
.comment-form textarea,
#commentform textarea,
#commentform .form-control {
    min-height: 140px !important;
    resize: vertical !important;
    font-family: inherit !important;
}

/* Ultra Modern Submit Button - Force Override */
.blog-content-modern .comment-form .form-submit,
.blog-content-modern .comment-form .form-submit,
.comments-section .comment-form .form-submit,
#comments .comment-form .form-submit,
.comment-form .form-submit,
#commentform .form-submit,
#commentform p.form-submit {
    margin: 0 !important;
    text-align: center !important;
}

.blog-content-modern .comment-form input[type="submit"],
.comments-section .comment-form input[type="submit"],
#comments .comment-form input[type="submit"],
.comment-form input[type="submit"],
#commentform input[type="submit"],
#commentform input.submit,
#commentform .thm-btn,
.submit.thm-btn {
    background: linear-gradient(135deg, #006233 0%, #004d26 50%, #FFD700 100%) !important;
    color: white !important;
    padding: 18px 40px !important;
    border: none !important;
    border-radius: 25px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 
        0 8px 25px rgba(0, 98, 51, 0.3),
        0 4px 10px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
}

.blog-content-modern .comment-form input[type="submit"]::before,
.comments-section .comment-form input[type="submit"]::before,
#comments .comment-form input[type="submit"]::before,
.comment-form input[type="submit"]::before,
#commentform input[type="submit"]::before,
#commentform input.submit::before,
#commentform .thm-btn::before,
.submit.thm-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.6s ease !important;
}

.blog-content-modern .comment-form input[type="submit"]:hover,
.comments-section .comment-form input[type="submit"]:hover,
#comments .comment-form input[type="submit"]:hover,
.comment-form input[type="submit"]:hover,
#commentform input[type="submit"]:hover,
#commentform input.submit:hover,
#commentform .thm-btn:hover,
.submit.thm-btn:hover {
    transform: translateY(-4px) !important;
    box-shadow: 
        0 15px 40px rgba(0, 98, 51, 0.4),
        0 8px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    color: white !important;
}

.blog-content-modern .comment-form input[type="submit"]:hover::before,
.comments-section .comment-form input[type="submit"]:hover::before,
#comments .comment-form input[type="submit"]:hover::before,
.comment-form input[type="submit"]:hover::before,
#commentform input[type="submit"]:hover::before,
#commentform input.submit:hover::before,
#commentform .thm-btn:hover::before,
.submit.thm-btn:hover::before {
    left: 100% !important;
}

.blog-content-modern .comment-form input[type="submit"]:active,
.comments-section .comment-form input[type="submit"]:active,
#comments .comment-form input[type="submit"]:active,
.comment-form input[type="submit"]:active,
#commentform input[type="submit"]:active,
#commentform input.submit:active,
#commentform .thm-btn:active,
.submit.thm-btn:active {
    transform: translateY(-2px) !important;
}

.blog-content-modern .comment-form input[type="submit"]:disabled,
.comments-section .comment-form input[type="submit"]:disabled,
#comments .comment-form input[type="submit"]:disabled,
.comment-form input[type="submit"]:disabled,
#commentform input[type="submit"]:disabled,
#commentform input.submit:disabled,
#commentform .thm-btn:disabled,
.submit.thm-btn:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Comment Form Grid Layout */
@media (min-width: 768px) {
    .comment-form {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "author email"
            "url url"
            "comment comment"
            "submit submit";
    }
    
    .comment-form-author {
        grid-area: author;
    }
    
    .comment-form-email {
        grid-area: email;
    }
    
    .comment-form-url {
        grid-area: url;
    }
    
    .comment-form-comment {
        grid-area: comment;
    }
    
    .form-submit {
        grid-area: submit;
    }
}

/* Comment Awaiting Moderation */
.comment-awaiting-moderation {
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin: 10px 0;
    border-left: 4px solid #ffc107;
}

/* No Comments Message */
.no-comments {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

.no-comments i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

/* Comment Navigation */
.comment-navigation {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.comment-navigation a {
    background: #f8f9fa;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.comment-navigation a:hover {
    background: #006233;
    color: white;
    transform: translateY(-2px);
}

/* Sidebar Modern */
.blog-sidebar-modern {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.widget-title i {
    color: #006233;
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 15px;
}

.search-form button {
    padding: 12px 25px;
    background: #006233;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #004d26;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

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

.recent-post-item .post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-item .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-item .post-info {
    flex: 1;
}

.recent-post-item .post-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.recent-post-item .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-item .post-title a:hover {
    color: #006233;
}

.recent-post-item .post-date {
    font-size: 13px;
    color: #999;
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: #006233;
    color: white;
    transform: translateX(5px);
}

.category-count {
    background: white;
    color: #006233;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.category-list a:hover .category-count {
    background: rgba(255, 255, 255, 0.9);
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud-item {
    display: inline-block;
    padding: 8px 15px;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    background: #006233;
    color: white;
    transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #006233 0%, #004d26 100%);
    color: white !important;
    text-align: center;
}

.newsletter-widget .widget-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: white !important;
    transform: scaleX(-1);
    display: block;
}

.newsletter-widget .widget-icon i {
    color: white !important;
}

.newsletter-widget .widget-title {
    color: white !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-bottom: 15px !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.newsletter-widget .widget-desc {
    margin-bottom: 25px;
    opacity: 0.9;
    color: white !important;
    text-align: center !important;
}

.newsletter-widget .newsletter-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    margin-bottom: 15px;
    font-size: 15px;
}

.newsletter-widget .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.newsletter-widget .newsletter-form button {
    width: 100%;
    padding: 15px;
    background: white !important;
    color: #006233 !important;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-widget .newsletter-form button:hover {
    background: #FFD700 !important;
    transform: translateY(-2px);
    color: #006233 !important;
}

/* CTA Section - Algeria Theme */
.blog-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #007751 0%, #D52B1E 100%);
    position: relative;
    overflow: hidden;
}

/* Force white text for all CTA content */
.blog-cta-section .cta-content * {
    color: white !important;
}

/* Add subtle pattern overlay */
.blog-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.blog-cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Add animated gradient border */
.cta-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(90deg, #FFD700, transparent, #FFD700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.cta-content h2 {
    font-size: 38px;
    color: white !important;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    color: white !important;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.cta-button .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #007751;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0;
}

.cta-button .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button .btn-primary:hover {
    background: #FFD700;
    color: #D52B1E;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(213, 43, 30, 0.3);
}

.cta-button .btn-primary:hover::before {
    left: 100%;
}

.cta-button .btn-primary i {
    font-size: 14px;
    transform: scaleX(-1);
    display: inline-block;
    animation: phoneRingFlipped 2s ease-in-out infinite;
}

@keyframes phoneRingFlipped {
    0%, 100% { transform: scaleX(-1) rotate(0deg); }
    10%, 30% { transform: scaleX(-1) rotate(-10deg); }
    20%, 40% { transform: scaleX(-1) rotate(10deg); }
}

/* Animations */
.animate-fade-up {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .share-buttons-sticky {
        left: 20px;
    }
}

@media (max-width: 991px) {
    .blog-sidebar-modern {
        margin-top: 50px;
        position: static;
    }
    
    .share-buttons-sticky {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 30px;
        transform: none;
        border-radius: 15px;
    }
    
    .blog-cta-section .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 35px;
        padding: 40px 30px;
    }
    
    .blog-cta-section .cta-content h2 {
        font-size: 28px;
        color: white !important;
    }
    
    .blog-cta-section .cta-content p {
        font-size: 17px;
        color: white !important;
    }
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 32px;
    }
    
    .blog-hero-content {
        padding: 60px 20px;
    }
    
    .blog-hero-meta {
        gap: 15px;
        font-size: 14px;
    }
    
    .article-content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .article-body {
        font-size: 16px;
    }
    
    .article-body h2 {
        font-size: 26px;
    }
    
    .article-body h3 {
        font-size: 22px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-posts .row {
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #006233;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-notification.error {
    background: #dc3545;
}

.toast-notification i {
    font-size: 18px;
}

/* Share button copied state */
.share-btn.copied {
    background: #28a745 !important;
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Newsletter success state */
.newsletter-form button.success {
    background: #28a745;
}

/* Article images lazy loading */
.article-body img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.article-body img.loaded {
    opacity: 1;
}

/* Hide share buttons on mobile scroll */
.share-buttons-sticky.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(-100px);
}

/* Comments form loading state */
#commentform input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Smooth animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Print styles */
@media print {
    .share-buttons-sticky,
    .reading-progress-bar,
    .blog-sidebar-modern,
    .blog-cta-section,
    .newsletter-widget,
    .comments-section,
    .related-posts {
        display: none !important;
    }
    
    .article-content {
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
    
    .article-body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Comment Section Mobile Styles */
@media (max-width: 768px) {
    .comments-section {
        padding: 25px 20px;
    }
    
    .comment-list .comment {
        padding: 20px 15px;
    }
    
    .comment-list .children {
        margin-left: 20px;
        padding-left: 15px;
    }
    
    .comment-author {
        gap: 10px;
    }
    
    .comment-author .avatar {
        width: 50px;
        height: 50px;
    }
    
    .comment-form {
        grid-template-columns: 1fr;
        grid-template-areas:
            "author"
            "email"
            "url"
            "comment"
            "submit";
    }
    
    .comment-form input[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-hero-modern {
        min-height: 400px;
    }
    
    .blog-hero-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .blog-hero-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-breadcrumb {
        font-size: 12px;
    }
    
    .share-buttons-sticky {
        padding: 10px;
    }
    
    .share-btn {
        width: 35px;
        height: 35px;
    }
    
    .article-content {
        padding: 20px 15px;
    }
    
    .article-body {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .article-body blockquote {
        font-size: 17px;
        padding: 20px;
    }
    
    .author-avatar-wrapper img {
        width: 80px;
        height: 80px;
    }
    
    .sidebar-widget {
        padding: 20px;
        border-radius: 15px;
    }
    
    .widget-title {
        font-size: 18px;
    }
    
    .cta-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 15px;
    }
    
    /* Modern Comments Mobile Optimization */
    .comments-section {
        padding: 20px !important;
        margin: 20px -15px 0 -15px !important;
        border-radius: 12px !important;
    }
    
    .comments-section h3,
    .comments-section .comments-title,
    .comment-reply-title {
        font-size: 22px !important;
        text-align: left !important;
        margin-bottom: 20px !important;
    }
    
    .comment-list .comment {
        padding: 18px !important;
        margin-bottom: 15px !important;
        border-radius: 10px !important;
    }
    
    .comment-author {
        gap: 12px !important;
        align-items: center !important;
    }
    
    .comment-author .avatar {
        width: 48px !important;
        height: 48px !important;
    }
    
    .comment-author .fn {
        font-size: 16px !important;
    }
    
    .comment-metadata {
        font-size: 11px !important;
        padding: 3px 8px !important;
        margin-left: 0 !important;
        margin-top: 8px !important;
    }
    
    .comment-content {
        font-size: 14px !important;
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .comment-list .children .comment {
        margin-left: 15px !important;
        border-left: 3px solid #006233 !important;
        border-radius: 0 10px 10px 0 !important;
        padding: 15px !important;
    }
    
    .comment-respond {
        padding: 20px !important;
        margin: 30px -15px 0 -15px !important;
        border-radius: 12px !important;
    }
    
    .comment-form {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    
    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        padding: 14px 16px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }
    
    .comment-form input[type="submit"] {
        width: 100% !important;
        text-align: center !important;
        font-size: 15px !important;
        padding: 16px 20px !important;
    }
    
    .reply {
        text-align: left !important;
        margin-top: 12px !important;
    }
    
    .reply .comment-reply-link {
        font-size: 12px !important;
        padding: 6px 14px !important;
    }
}