/*
Theme Name: ICHD Center Theme
Theme URI: https://ichd-center.com
Author: ICHD Dev Team
Author URI: https://ichd-center.com
Description: ثيم خاص للمركز الدولي للتنمية البشرية، مصمم ليعمل كغلاف لتطبيق React مع دعم صفحات الووردبريس التقليدية.
Version: 1.2
License: GPLv2 or later
Text Domain: ichd-theme
*/

/* Reset & Basics */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    background-color: var(--wp--preset--color--light, #f8fafc);
    color: var(--wp--preset--color--dark, #0f172a);
}

/* WordPress Alignment Classes */
.alignwide {
    max-width: var(--wp--style--global--wide-size);
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Typography Helpers */
a {
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.wp-block-button__link {
    text-decoration: none !important;
}

/* 
   🌟 FIX: Article & Content Formatting (Entry Content)
   This restores default WordPress formatting that Tailwind resets.
*/
.entry-content {
    font-size: 1.125rem; /* 18px */
    line-height: 1.8;
    color: #334155;
}

/* 1. Restore Paragraph Spacing */
.entry-content p {
    margin-bottom: 1.5em; /* Add space between paragraphs */
}

/* 2. Restore Lists (Bullets & Numbers) */
.entry-content ul {
    list-style-type: disc !important;
    margin-bottom: 1.5em;
    padding-right: 2em; /* Indent for RTL */
}

.entry-content ol {
    list-style-type: decimal !important;
    margin-bottom: 1.5em;
    padding-right: 2em; /* Indent for RTL */
}

.entry-content li {
    margin-bottom: 0.5em;
}

/* 3. Restore Headings inside content */
.entry-content h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    color: #1e3a8a; /* Primary Blue */
}

.entry-content h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    color: #1e293b;
}

/* 4. Blockquotes */
.entry-content blockquote {
    border-right: 4px solid #fbbf24; /* Yellow border */
    padding: 1em;
    background: #f8fafc;
    font-style: italic;
    margin-bottom: 1.5em;
}

/* Dark Mode Overrides for Content */
.dark .entry-content {
    color: #e2e8f0;
}
.dark .entry-content h2, 
.dark .entry-content h3 {
    color: #f8fafc;
}
.dark .entry-content blockquote {
    background: #1e293b;
    color: #cbd5e1;
}