/* mediOne Blog Styles */
.blog-article {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 24px;
}
.back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: #2E8B57;
    text-decoration: none;
    font-size: 14px;
}
.back-link:hover { text-decoration: underline; }
.blog-article h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #2D3436;
}
.article-meta {
    color: #636E72;
    font-size: 14px;
    margin-bottom: 32px;
}
.blog-hero-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 32px;
}
.key-takeaways {
    background: #F0F7F4;
    border-left: 4px solid #2E8B57;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 32px;
}
.key-takeaways h2 { font-size: 1.1rem; margin-bottom: 12px; color: #2E8B57; }
.key-takeaways ul { list-style: none; padding: 0; margin: 0; }
.key-takeaways li { padding: 6px 0 6px 24px; position: relative; }
.key-takeaways li::before { content: '\2713'; position: absolute; left: 0; color: #2E8B57; font-weight: 700; }
.toc {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 40px;
}
.toc h2 { font-size: 1rem; margin-bottom: 12px; }
.toc ol { padding-left: 20px; margin: 0; }
.toc li { padding: 4px 0; }
.toc a { color: #2E8B57; text-decoration: none; }
.toc a:hover { text-decoration: underline; }
.article-content h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #2D3436;
}
.article-content h3 {
    font-size: 1.15rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2D3436;
}
.article-content p {
    line-height: 1.75;
    color: #2D3436;
    margin-bottom: 16px;
}
.faq-section { margin-top: 48px; }
.faq-item {
    border-bottom: 1px solid #e0e6ed;
    padding: 20px 0;
}
.faq-question {
    font-size: 1.05rem;
    color: #2D3436;
    margin-bottom: 8px;
}
.faq-answer { color: #636E72; line-height: 1.7; }
.conclusion { margin-top: 48px; }
.cta-box {
    background: linear-gradient(135deg, #2E8B57, #20B2AA);
    color: white;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 32px;
}
.cta-box h3 { color: white; margin-bottom: 8px; }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.cta-box .btn-primary {
    background: white;
    color: #2E8B57;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.cta-box .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.related-articles { margin-top: 60px; }
.related-articles h2 { font-size: 1.3rem; margin-bottom: 24px; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.related-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 24px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.related-card h3 { font-size: 0.95rem; color: #2D3436; margin-bottom: 8px; }
.related-card p { font-size: 0.85rem; color: #636E72; margin-bottom: 12px; }
.related-card .read-more { font-size: 0.85rem; color: #2E8B57; font-weight: 600; }
@media (max-width: 768px) {
    .blog-article { margin-top: 80px; }
    .blog-article h1 { font-size: 1.6rem; }
    .related-grid { grid-template-columns: 1fr; }
}
