/* 
Theme Name: English Level Test Theme
Version: 1.3.0 - Performance Optimized
*/

/* Purge unused CSS - Keep only what's used on your site */

/* Font Awesome - Load only needed icons */
.fa-mobile-alt:before { content: "\f3cd"; }
.fa-phone:before { content: "\f095"; }
.fa-calendar-alt:before { content: "\f073"; }

/* Remove unused animations and transitions */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== BASE STYLES ===== */
:root {
    --primary: #003366;
    --secondary: #0056b3;
    --background: #f8f9fb;
    --text-main: #1f2933;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --card-bg: #ffffff;
    --header-bg: #002244;
    --sidebar-bg: #fafcff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTACT BAR ===== */
.top-contact-bar {
    background: var(--header-bg);
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-left {
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.phone i {
    color: #4caf50;
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    background: linear-gradient(90deg, var(--primary), var(--header-bg));
    color: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
}

/* Mobile Menu Toggle - HIDDEN ON DESKTOP */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1002;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation - VISIBLE ON DESKTOP */
.elt-nav {
    display: flex !important; /* Force display on desktop */
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.elt-nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.elt-nav a:hover {
    color: #ffcc00;
}

.elt-nav a::after {
    content: '›';
    margin-right: 5px;
    font-size: 16px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.dropdown:hover a::after {
    transform: rotate(90deg);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 1000;
    border-radius: 10px;
    padding: 8px 0;
    top: 100%;
    right: 0;
    border: 1px solid var(--border);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 10px 18px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: #f0f7ff;
    color: var(--secondary);
    padding-right: 22px;
}




/* Mobile Navigation - HIDDEN ON DESKTOP */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh; /* Changed from 100% to 100vh */
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Changed from 100% to 100vh */
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(3px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.mobile-close-btn:hover {
    transform: scale(1.1);
}

.mobile-nav-content {
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-item {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s, padding-right 0.2s;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    background: #f8f9fb;
    padding-right: 25px;
    color: #0056b3;
}

.mobile-dropdown {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-dropdown-toggle {
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    text-align: right;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background 0.2s;
}

.mobile-dropdown-toggle:hover {
    background: #f8f9fb;
}

.dropdown-arrow {
    transition: transform 0.3s;
    font-size: 12px;
    margin-right: 5px;
    transform: rotate(0deg);
}

.dropdown-arrow.active {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.mobile-dropdown-content.active {
    max-height: 500px;
}

.mobile-dropdown-content a {
    display: block;
    padding: 12px 35px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    transition: background 0.2s, padding-right 0.2s;
}

.mobile-dropdown-content a:hover {
    background: #f0f7ff;
    padding-right: 40px;
    color: #0056b3;
}

/* ===== MAIN LAYOUT ===== */
.main-layout {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 25px;
    min-height: calc(100vh - 250px);
}

/* When sidebar is hidden */
.main-layout.no-sidebar {
    grid-template-columns: 1fr;
}

.main-layout.no-sidebar .elt-content {
    max-width: none;
    width: 100%;
    padding: 40px 50px;
}

/* When sidebar is shown */
.main-layout.with-sidebar .elt-content {
    width: 100%;
    padding: 30px;
}

/* ===== SIDEBAR ===== */
.sidebar {
    background: var(--sidebar-bg);
    border: 1px solid #e0e7ff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0, 51, 102, 0.04);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar h3 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e7ff;
}

.exam-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.exam-item {
    margin-bottom: 8px;
}

.exam-link {
    display: block;
    padding: 10px 14px;
    background-color: #ffffff;
    border-radius: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e8edff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.exam-link:hover {
    background-color: #f0f7ff;
    border-color: var(--secondary);
    transform: translateX(-3px);
    box-shadow: 0 3px 8px rgba(0, 86, 179, 0.1);
}

/* ===== CONTENT AREA ===== */
.elt-content {
    min-height: 600px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.elt-content h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.elt-content h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.elt-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin-top: 30px;
}

.elt-content p {
    font-size: 15px;
    color: var(--text-main);
    margin-top: 12px;
}

.elt-content a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

/* ===== HERO SECTION ===== */
.hero {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-image {
    background: #eef2f7;
    height: 220px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    margin: 20px 0;
}

.hero-actions {
    margin-top: 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: #ffffff;
}

.btn-primary:hover {
    background: #004494;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.3);
}

.btn-outline {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-outline:hover {
    background-color: #f0f7ff;
    transform: translateY(-2px);
}

/* ===== CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--primary);
}

.card p {
    font-size: 14px;
    color: var(--text-muted);
}

.card a {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
}

/* ===== FOOTER ===== */
.elt-footer {
    background: var(--header-bg);
    color: white;
    padding: 26px 0 20px;
    margin-top: 50px;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

.footer-container p {
    margin: 8px 0;
    font-size: 0.9rem;
}

.footer-container a {
    color: #c2d6ff;
    margin: 0 6px;
    font-weight: 500;
    text-decoration: none;
}

.footer-container a:hover {
    color: white;
    text-decoration: underline;
}

.footer-container i {
    margin-left: 6px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet and below */
@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-bottom: 25px;
        order: 1;
    }
    
    .elt-content {
        order: 2;
    }
    
    .main-layout.with-sidebar {
        display: flex;
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .contact-right {
        flex-direction: column;
        gap: 12px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile devices (768px and below) */
@media (max-width: 768px) {
    /* Show mobile menu, hide desktop */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav,
    .mobile-nav-overlay {
        display: flex;
    }
    
    .main-header {
        position: relative;
    }
    
    .header-container {
        padding: 10px 60px 10px 20px;
        position: relative;
        min-height: 60px;
    }
    
    .top-contact-bar .contact-container {
        padding: 5px 60px 5px 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .elt-nav {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-right: 20px;
        background-color: transparent;
        border: none;
        animation: none;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        color: #e0e0e0;
        padding: 8px 15px;
    }
    
    .dropdown-content a:hover {
        background-color: rgba(255,255,255,0.1);
        padding-right: 25px;
    }
    
    /* Adjust content padding on mobile */
    .main-layout.no-sidebar .elt-content,
    .main-layout.with-sidebar .elt-content {
        padding: 20px;
    }
    
    .hero {
        padding: 20px;
        margin: 20px auto;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-image {
        height: 180px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-container p {
        font-size: 0.8rem;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .main-layout {
        padding: 0 15px;
    }
    
    .elt-content {
        padding: 15px !important;
    }
    
    .hero h1 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .contact-left span,
    .phone span {
        font-size: 0.8rem;
    }
    
    .mobile-nav {
        width: 90%;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize fonts */
body {
    font-display: swap;
    font-kerning: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* EMERGENCY MOBILE MENU FIXES */
.mobile-nav {
    right: -100% !important; /* Start off-screen */
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mobile-nav.active {
    right: 0 !important;
}

.mobile-nav-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s, visibility 0.3s !important;
}

.mobile-nav-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure toggle is clickable */
.mobile-menu-toggle {
    cursor: pointer !important;
    pointer-events: all !important;
    z-index: 1002 !important;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* English Content Template Styles */
.english-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    direction: ltr;
    text-align: left;
}

.english-content-article {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.english-content-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.english-content-featured-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.english-image {
    width: 100%;
    height: auto;
    display: block;
}

.english-content-meta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.english-content-meta i {
    margin-right: 5px;
}

.english-content-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.english-content-body p {
    margin-bottom: 1.5em;
}

.english-content-body h2 {
    font-size: 1.75rem;
    margin: 2em 0 1em;
    font-weight: 600;
}

.english-content-body h3 {
    font-size: 1.5rem;
    margin: 1.5em 0 0.75em;
    font-weight: 600;
}

.english-content-body ul,
.english-content-body ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.english-content-body li {
    margin-bottom: 0.5em;
}

.english-content-body blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1.5em;
    margin: 2em 0;
    font-style: italic;
    color: #4b5563;
    font-size: 1.125em;
    line-height: 1.6;
}

.english-page-links {
    margin: 2em 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.english-page-number {
    margin: 0 5px;
    padding: 5px 10px;
    background: #f3f4f6;
    border-radius: 4px;
}

.english-content-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.english-post-tags {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.english-post-tags i {
    margin-right: 5px;
}

.english-post-tags a {
    color: #2563eb;
    text-decoration: none;
    margin: 0 5px;
}

.english-post-tags a:hover {
    text-decoration: underline;
}

.english-comments-section {
    margin-top: 30px;
}

/* Responsive styles for English template */
@media (max-width: 768px) {
    .english-content-wrapper {
        padding: 20px 15px;
    }
    
    .english-content-article {
        padding: 25px;
    }
    
    .english-content-title {
        font-size: 2rem;
    }
    
    .english-content-body {
        font-size: 15px;
        line-height: 1.65;
    }
    
    .english-content-meta {
        flex-direction: column;
        gap: 10px;
    }
}


/* ===== TYPOGRAPHY IMPROVEMENTS ===== */
body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Content area typography */
.elt-content h1, 
.elt-content h2, 
.elt-content h3, 
.elt-content h4, 
.elt-content h5, 
.elt-content h6 {
    font-weight: 700;
    line-height: 1.4;
    margin: 1.5em 0 0.8em 0;
    color: #1a365d;
}

.elt-content h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid #4299e1;
    padding-bottom: 0.5rem;
}

.elt-content h2 {
    font-size: 2rem;
    border-right: 4px solid #4299e1;
    padding-right: 1rem;
}

.elt-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

.elt-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #2d3748;
    text-align: justify;
}

/* First paragraph special style */
.elt-content p:first-of-type {
    font-size: 1.15rem;
    line-height: 2;
    background: #f8fcff;
    padding: 1.2rem;
    border-radius: 0.5rem;
    border-right: 3px solid #90cdf4;
}

/* Lists */
.elt-content ul, 
.elt-content ol {
    margin: 1.5rem 0;
    padding-right: 2rem;
}

.elt-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Links */
.elt-content a {
    color: #3182ce;
    text-decoration: none;
    border-bottom: 2px dotted #90cdf4;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.elt-content a:hover {
    color: #2c5282;
    border-bottom: 2px solid #3182ce;
}

/* ===== ENGLISH TYPOGRAPHY ===== */
.elt-ltr .elt-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    direction: ltr;
    text-align: left;
    line-height: 1.7;
}

/* English headings */
.elt-ltr .elt-content h1,
.elt-ltr .elt-content h2,
.elt-ltr .elt-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    direction: ltr;
    text-align: left;
    border-right: none;
    border-left: 4px solid #4299e1;
    padding-right: 0;
    padding-left: 1rem;
}

/* English paragraphs */
.elt-ltr .elt-content p {
    font-family: 'Inter', sans-serif;
    direction: ltr;
    text-align: left;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* English first paragraph */
.elt-ltr .elt-content p:first-of-type {
    border-right: none;
    border-left: 3px solid #90cdf4;
    padding-left: 1.2rem;
    padding-right: 0;
    text-align: left;
}

/* English lists */
.elt-ltr .elt-content ul,
.elt-ltr .elt-content ol {
    padding-right: 0;
    padding-left: 2rem;
    direction: ltr;
    text-align: left;
}

/* English blockquotes */
.elt-ltr .elt-content blockquote {
    border-right: none;
    border-left: 4px solid #4299e1;
    padding: 1.5rem 2rem;
    text-align: left;
    direction: ltr;
}

/* Responsive */
@media (max-width: 768px) {
    .elt-content h1 { font-size: 2rem; }
    .elt-content h2 { font-size: 1.7rem; }
    .elt-content h3 { font-size: 1.3rem; }
    .elt-content p { font-size: 1.05rem; }
}