<?php get_header(); ?>
<div style="max-width:900px;margin:auto;padding:40px 20px;">
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<!-- تصویر شاخص -->
<div style="border-radius:20px;overflow:hidden;margin-bottom:25px;">
<?php the_post_thumbnail('large', ['style'=>'width:100%;height:auto;']); ?>
</div>
<!-- عنوان -->
<h1 style="font-size:32px;color:#0D5C46;line-height:1.6;margin-bottom:10px;">
<?php the_title(); ?>
</h1>
<!-- اطلاعات -->
<div style="color:#888;margin-bottom:25px;font-size:14px;">
📅 <?php echo get_the_date(); ?> | ✍️ <?php the_author(); ?>
</div>
<!-- محتوا -->
<div style="font-size:17px;line-height:2;color:#333;">
<?php the_content(); ?>
</div>
<!-- دکمه برگشت -->
<div style="margin-top:40px;text-align:center;">
<a href="/blog" style="
display:inline-block;
background:linear-gradient(135deg,#22C55E,#0D5C46);
color:#fff;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
">
بازگشت به مقالات
</a>
</div>
<?php endwhile; endif; ?>
</div>
<?php get_footer(); ?>