/* ===== Base ===== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f9f9fb;
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ===== Blog Page ===== */
.blog-page {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

.blog-content {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    max-width: 100%;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

/* ----- Titles ----- */
.blog-content h1 {
    font-size: 1.35rem; /* smaller and more balanced */
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #2e3192;
    padding-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.blog-content h2 {
    font-size: 1.35rem;
    color: #2e3192;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px dashed #d0d0d0; /* subtle section divider */
    padding-bottom: 0.3rem;
}

.blog-content h2.callout {
    font-size: 1.25rem;
    color: #2e3192;
    background: #eef0fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* ----- Dosing Box ----- */
.callout-box {
    background: #eef0fa;
    border-left: 6px solid #2e3192;  /* stronger visual cue */
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.callout-box h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #2e3192;
}

/* ----- Paragraphs ----- */
.blog-content p {
    margin-bottom: 1.25rem;
    font-size: 1.02rem; /* slightly bigger for readability */
    color: #2c2c2c;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* ----- Lists ----- */
.blog-content ul {
    padding-left: 1.5rem; /* space for bullets */
    margin-bottom: 1.25rem;
    list-style: disc;     /* default bullets */
}

.blog-content ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    padding-left: 0;      /* remove extra padding */
    position: relative;   /* no custom bullets needed */
}

.blog-content ul li::marker {
    color: #2e3192;
    font-weight: bold;
}

/* ----- Blockquotes ----- */
.blog-content blockquote {
    border-left: 4px solid #2e3192;
    padding-left: 1rem;
    color: #333;
    font-style: italic;
    margin: 1.25rem 0;
    background: #f4f5f7;
    border-radius: 6px;
}

/* ----- Buttons ----- */
.btn-read-more {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #2e3192, #1a1a9b);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    border: none;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #1a1a9b, #121166);
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
}

/* ----- Links in content ----- */
.blog-content a {
    color: #2e3192;
    text-decoration: underline;
}

.blog-content a:hover {
    color: #1a1a9b;
}

/* ----- Images inside blog ----- */
.blog-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .blog-content h1 { font-size: 1.5rem; }
    .blog-content h2 { font-size: 1.25rem; }
}

@media (max-width: 768px) {
    .blog-content { padding: 2rem 1rem; }
    .blog-content h1 { font-size: 1.4rem; }
    .blog-content h2 { font-size: 1.2rem; }
    .blog-content p,
    .blog-content ul li { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .blog-content { padding: 1.5rem 0.75rem; }
    .blog-content h1 { font-size: 1.25rem; }
    .blog-content h2 { font-size: 1.1rem; }
    .blog-content p,
    .blog-content ul li { font-size: 0.9rem; }
    .btn-read-more { width: 100%; text-align: center; padding: 0.7rem 1rem; }
}


/* ===== Related Blogs (Styled like main blog content) ===== */
.related-blogs {
    margin-top: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.related-blogs h2 {
    font-size: 1.35rem;
    color: #2e3192;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px dashed #d0d0d0;
    padding-bottom: 0.3rem;
}

.related-blogs p {
    font-size: 1.02rem;
    color: #2c2c2c;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.related-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.related-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.related-list li a {
    text-decoration: none;
    color: #2e3192;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-list li a:hover {
    text-decoration: underline;
    color: #1a1a9b;
}


.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.related-card {
    display: block;
    padding: 1rem 1.2rem;
    background: #eef0fa;
    border-radius: 12px;
    font-weight: 500;
    color: #2e3192;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.related-card:hover {
    background: #dce0f7;
    color: #1a1a9b;
    transform: translateY(-2px) scale(1.02);
}
