/* تایپوگرافی فارسی */
body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* نقل قول‌ها */
blockquote {
    background: linear-gradient(135deg, var(--background-light), #e0f2fe);
    border-right: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    font-style: italic;
}

blockquote p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

blockquote cite {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* لیست‌ها */
ul, ol {
    margin-right: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* لینک‌ها */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}