/* RTL specific overrides for blog stylesheet */

.blog-content-body blockquote {
    border-left: 0;
    border-right: 4px solid var(--primary-color);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* Comment Speech bubble arrow alignment for RTL */
.comment-content-block::before {
    left: auto;
    right: -8px;
    border-right: 0;
    border-left: 8px solid var(--slate-200);
}

.comment-content-block::after {
    left: auto;
    right: -7px;
    border-right: 0;
    border-left: 8px solid var(--slate-50);
}

/* Floating Label alignments for RTL */
.floating-label {
    left: auto;
    right: 16px;
    transform-origin: right top;
}

.modern-input:focus ~ .floating-label,
.modern-textarea:focus ~ .floating-label,
.modern-input:not(:placeholder-shown) ~ .floating-label,
.modern-textarea:not(:placeholder-shown) ~ .floating-label {
    transform: translateY(-24px) scale(0.8);
    left: auto;
    right: 16px;
}

/* Sidebar widget accents for RTL */
.widget-title::after {
    left: auto;
    right: 0;
}

/* Blog Content Headings */
.blog-content-body h2::after {
    left: auto;
    right: 0;
}

/* Alignments inside lists */
.blog-content-body ul, 
.blog-content-body ol {
    padding-left: 0;
    padding-right: 20px;
}

.recent-post-date i {
    margin-left: 4px;
    margin-right: 0;
}

/* Form actions alignment */
.form-actions-group {
    justify-content: flex-start;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-quick-stats {
        align-items: flex-start;
    }
}