/* ============================================================
   Alyusra — Custom CSS (on top of Tailwind)
   ============================================================ */

/* Arabic text */
.arabic-text {
    font-family: 'Amiri', serif;
    direction: rtl;
    text-align: right;
    line-height: 2;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Audio player custom styling */
audio {
    width: 100%;
    border-radius: 9999px;
    accent-color: #C9A84C;
}

/* Rich text content (post body) */
.prose-content h2 { font-size: 1.5rem; font-weight: 700; margin: 1.5rem 0 0.75rem; color: #1B4332; }
.prose-content h3 { font-size: 1.25rem; font-weight: 600; margin: 1.25rem 0 0.5rem; color: #1B4332; }
.prose-content p  { margin-bottom: 1rem; line-height: 1.75; }
.prose-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-content ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-content li { margin-bottom: 0.25rem; }
.prose-content a  { color: #1B4332; text-decoration: underline; }
.prose-content blockquote {
    border-left: 4px solid #C9A84C;
    padding-left: 1rem;
    color: #6B7280;
    font-style: italic;
    margin: 1rem 0;
}

/* Page hero gradient */
.hero-gradient {
    background: linear-gradient(135deg, #112A21 0%, #1B4332 50%, #2D6A4F 100%);
}

/* Card hover lift */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Gold underline on section headings */
.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #C9A84C;
    margin-top: 0.5rem;
}
.section-heading.centered::after {
    margin-left: auto;
    margin-right: auto;
}

/* Badge types */
.badge-article { background: #DCFCE7; color: #166534; }
.badge-audio   { background: #FEF9C3; color: #854D0E; }
.badge-video   { background: #FEE2E2; color: #991B1B; }
