/* Global Reset & Base */
body {
    background-color: #F1FAEE !important;
    color: #1a202c;
    overflow-x: hidden;
}

/* Animations */
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #005760, #E83C91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F1FAEE; 
}
::-webkit-scrollbar-thumb {
    background: #C1785A; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #005760; 
}

/* Single Page Content Styling */
.entry-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}
.entry-content h2, .entry-content h3 {
    font-family: 'Noto Serif Bengali', serif;
    color: #005760; /* brand-teal */
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.entry-content blockquote {
    border-left: 4px solid #E83C91; /* brand-pink */
    padding-left: 1rem;
    font-style: italic;
    color: #718096;
    margin: 1.5rem 0;
}

/* Post First Letter Styling (For non-Poem posts) */
.entry-content .first-letter-style:first-letter {
    font-size: 4.5rem; /* প্রায় 72px */
    font-family: 'Noto Serif Bengali', serif;
    font-weight: 700;
    color: #E83C91; /* brand-pink */
    float: left;
    margin-right: 0.75rem; /* Tailwind mr-3 */
    line-height: 1; /* অক্ষরটিকে উপরে উঠিয়ে লেখার সাথে ভালোভাবে মেশানোর জন্য */
}