/**
 * components/blog-post/blog-post.css
 * استایل صفحه تکی مقالات وبلاگ عینک صدف با اولویت سادگی و خوانایی بالا
 */

.blog-post-detail-container {
    padding: 40px 0 80px;
    background: #fafafa;
    min-height: 80vh;
}

.blog-post-article {
    background: #ffffff;
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.post-header {
    margin-bottom: 35px;
    text-align: center;
}

.post-title {
    font-size: 30px;
    font-weight: 800;
    color: #111;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: #888;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-featured-image-wrapper {
    margin-bottom: 35px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.post-featured-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 450px;
    object-fit: cover;
}

/* بدنه محتوای بلاگ - جهت خوانایی عالی */
.post-content-body {
    font-size: 16px;
    color: #333;
    line-height: 2.0;
    text-align: justify;
}

.post-content-body p {
    margin-bottom: 25px;
}

.post-content-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 40px 0 20px;
    position: relative;
    padding-right: 12px;
}

.post-content-body h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: #d4a300;
    border-radius: 2px;
}

.post-content-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #222;
    margin: 30px 0 15px;
}

.post-content-body ul, 
.post-content-body ol {
    margin-bottom: 25px;
    padding-right: 25px;
}

.post-content-body li {
    margin-bottom: 10px;
}

.post-content-body blockquote {
    background: #fff9eb;
    border-right: 4px solid #d4a300;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.post-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px auto;
    display: block;
}

/* فوتر پست */
.post-footer {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.btn-back-blog:hover {
    background: #d4a300;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .blog-post-article {
        padding: 25px 20px;
    }
    
    .post-title {
        font-size: 22px;
    }
    
    .post-content-body {
        font-size: 15px;
        line-height: 1.8;
    }
}
