/**
 * Styles du blog public DentoLink
 *
 * Theme Business Insider
 *
 * Palette de couleurs :
 * - Fond : #FFFFFF (white)
 * - Primary : #E01E5A (Business Insider Red)
 * - Primary hover : #C01848 (darker red)
 * - Accent : #000000 (black)
 * - Text primary : #000000 (black)
 * - Text secondary : #333333 (dark gray)
 * - Text muted : #767676 (gray)
 * - Border : #E4E4E4 (light gray)
 * - Surface : #FFFFFF
 */

/* ==================== RESET & BASE ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #E01E5A;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #C01848;
}

/* ==================== ANIMATIONS ==================== */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out both;
}

/* ==================== HEADER ==================== */

.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E4E4E4;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.2s ease;
}

.header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.375rem;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    letter-spacing: -0.01em;
}

.logo:hover {
    color: #E01E5A;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-menu li a {
    color: #333333;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    padding: 0.5rem 0.875rem;
    border-radius: 4px;
}

.nav-menu li a:hover {
    color: #E01E5A;
    background-color: #F5F5F5;
}

.btn-primary {
    background: #E01E5A;
    color: #FFFFFF !important;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    color: #FFFFFF !important;
    background: #C01848;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
    font-size: 1.25rem;
    cursor: pointer;
    color: #000000;
    padding: 0.375rem 0.625rem;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background-color: #F5F5F5;
    border-color: #E01E5A;
}

/* ==================== HERO SECTION ==================== */

.hero {
    background: #FFFFFF;
    color: #000000;
    padding: 4rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #E4E4E4;
}

.hero-container {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F5F5F5;
    border: 1px solid #E4E4E4;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #E01E5A;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #E01E5A;
    border-radius: 50%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero p {
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #E01E5A;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: #767676;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* ==================== MAIN CONTENT ==================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background-color: #FAFAFA;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 32px;
    background: #E01E5A;
    border-radius: 2px;
}

/* ==================== FILTRES CATEGORIES ==================== */

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0.25rem;
}

.filter-btn {
    padding: 0.5rem 1.125rem;
    border-radius: 4px;
    border: 1px solid #E4E4E4;
    background-color: #FFFFFF;
    color: #767676;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: #E01E5A;
    color: #E01E5A;
    background-color: #FFFFFF;
}

.filter-btn.active {
    background: #E01E5A;
    color: #FFFFFF;
    border-color: #E01E5A;
}

/* ==================== GRILLE D'ARTICLES ==================== */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.article-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #E01E5A;
}

.article-card-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    background-color: #F1F5F9;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover .article-card-image {
    transform: scale(1.03);
}

.article-card-image-wrapper {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.article-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    width: fit-content;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.article-card-title a {
    color: inherit;
    transition: color 0.2s ease;
}

.article-card-title a:hover {
    color: #E01E5A;
}

.article-card-excerpt {
    color: #333333;
    margin-bottom: 1.25rem;
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #767676;
    font-size: 0.8125rem;
    padding-top: 1rem;
    border-top: 1px solid #E4E4E4;
}

.article-card-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.meta-icon {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* ==================== ARTICLE A LA UNE ==================== */

.featured-article {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    transition: all 0.2s ease;
}

.featured-article:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #E01E5A;
}

.featured-article-image-wrapper {
    overflow: hidden;
}

.featured-article-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    background-color: #F1F5F9;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.featured-article-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #E01E5A;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.featured-label-icon {
    width: 16px;
    height: 16px;
}

.featured-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    width: fit-content;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.featured-article-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.875rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.featured-article-title a {
    color: inherit;
    transition: color 0.2s ease;
}

.featured-article-title a:hover {
    color: #E01E5A;
}

.featured-article-excerpt {
    color: #333333;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-article-meta {
    color: #767676;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-separator {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #767676;
}

.btn-read-more {
    background: #E01E5A;
    color: #FFFFFF;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    width: fit-content;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read-more:hover {
    color: #FFFFFF;
    background: #C01848;
}

.btn-read-more .arrow {
    transition: transform 0.3s ease;
}

.btn-read-more:hover .arrow {
    transform: translateX(4px);
}

/* ==================== PAGINATION ==================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 0.875rem;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
    background-color: #FFFFFF;
    color: #767676;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: #E01E5A;
    color: #FFFFFF;
    border-color: #E01E5A;
}

.pagination .current {
    background: #E01E5A;
    color: #FFFFFF;
    border-color: #E01E5A;
}

/* ==================== PAGE ARTICLE ==================== */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #767676;
}

.breadcrumb a {
    color: #E01E5A;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.article-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000000;
    margin: 1.25rem 0 1rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    color: #767676;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.article-excerpt-large {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-cover-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #000000;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.article-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #000000;
    margin: 2rem 0 0.75rem;
}

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

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

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

.article-content a {
    color: #E01E5A;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(224, 30, 90, 0.3);
    transition: text-decoration-color 0.2s ease;
}

.article-content a:hover {
    text-decoration-color: #E01E5A;
}

.article-content img {
    border-radius: 8px;
    margin: 2rem auto;
}

.article-content blockquote {
    border-left: 4px solid #E01E5A;
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #333333;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.article-content th,
.article-content td {
    padding: 0.75rem;
    border: 1px solid #E4E4E4;
    text-align: left;
}

.article-content th {
    background-color: #F5F5F5;
    font-weight: 600;
    color: #000000;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #E01E5A;
    font-weight: 500;
    margin-top: 3rem;
    transition: all 0.2s ease;
}

.btn-back:hover {
    transform: translateX(-4px);
}

/* ==================== NEWSLETTER ==================== */

.newsletter-section {
    background: #000000;
    color: #FFFFFF;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E01E5A;
    pointer-events: none;
}

.newsletter-container {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.newsletter-description {
    font-size: 1rem;
    opacity: 0.88;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.375rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    outline: none;
    background: transparent;
    color: #FFFFFF;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
}

.btn-newsletter {
    background-color: #E01E5A;
    color: #FFFFFF;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-newsletter:hover {
    background-color: #C01848;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.875rem;
}

.newsletter-message.success {
    background-color: rgba(52, 211, 153, 0.2);
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.newsletter-message.error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==================== FOOTER ==================== */

.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 4rem 1.5rem 1.5rem;
    border-top: 1px solid #E4E4E4;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-section p {
    color: #767676;
    line-height: 1.7;
    font-size: 0.875rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #767676;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.footer-links a:hover {
    color: #E01E5A;
    transform: translateX(3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
    text-align: center;
    color: #767676;
    font-size: 0.8125rem;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #E4E4E4;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 0.25rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 4px;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 3rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .featured-article {
        grid-template-columns: 1fr;
        border-radius: 8px;
    }

    .featured-article-image {
        min-height: 220px;
    }

    .featured-article-content {
        padding: 1.75rem;
    }

    .featured-article-title {
        font-size: 1.5rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.75rem;
    }

    .newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        padding: 0.875rem 1rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .category-filters {
        gap: 0.375rem;
    }

    .filter-btn {
        padding: 0.4375rem 0.875rem;
        font-size: 0.8125rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== UTILITAIRES ==================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none;
}

.empty-state {
    padding: 5rem 2rem;
    text-align: center;
}

.empty-state-text {
    font-size: 1.0625rem;
    color: #767676;
}

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

/* ==================== LANGUAGE SWITCHER ==================== */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    background: #F5F5F5;
    padding: 0.25rem;
    border-radius: 6px;
}

.lang-link {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #767676;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-link:hover {
    color: #E01E5A;
    background-color: #FFFFFF;
}

.lang-link.active {
    color: #FFFFFF;
    background: #E01E5A;
}

/* ==================== RTL SUPPORT ==================== */

[dir="rtl"] body {
    font-family: 'Noto Sans Arabic', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

[dir="rtl"] .header-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .breadcrumb {
    flex-direction: row-reverse;
}

[dir="rtl"] .article-content {
    text-align: right;
}

[dir="rtl"] .article-content ul,
[dir="rtl"] .article-content ol {
    padding-left: 0;
    padding-right: 1.75rem;
}

[dir="rtl"] .article-content blockquote {
    border-left: none;
    border-right: 4px solid #E01E5A;
    padding-left: 0;
    padding-right: 1.25rem;
}

[dir="rtl"] .article-content th,
[dir="rtl"] .article-content td {
    text-align: right;
}

[dir="rtl"] .article-header {
    text-align: center;
}

[dir="rtl"] .article-card-meta {
    flex-direction: row-reverse;
}

[dir="rtl"] .featured-article {
    direction: rtl;
}

[dir="rtl"] .featured-article-content {
    text-align: right;
}

[dir="rtl"] .category-filters {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-container {
    direction: rtl;
}

[dir="rtl"] .footer-section {
    text-align: right;
}

[dir="rtl"] .hero {
    text-align: center;
}

[dir="rtl"] .newsletter-form {
    flex-direction: row-reverse;
}

[dir="rtl"] .pagination {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-back {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-read-more .arrow {
    transform: scaleX(-1);
}

[dir="rtl"] .section-title::before {
    order: 1;
}

[dir="rtl"] .footer-links a:hover {
    transform: translateX(-3px);
}

/* RTL Responsive */
@media (max-width: 768px) {
    [dir="rtl"] .nav-menu {
        flex-direction: column;
    }

    [dir="rtl"] .newsletter-form {
        flex-direction: column;
    }
}
