/* Blog Post Page Custom Styles */

.blog-post-detail .container {
    max-width: 800px;
    margin: 3.5rem auto 0 auto;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #888;
}
.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}
.breadcrumb .separator {
    margin: 0 0.5em;
    color: #bbb;
}
.breadcrumb .current {
    color: #222;
    font-weight: 500;
}

.blog-post-meta-block {
    margin-bottom: 2rem;
    text-align: center;
}
.post-meta {
    font-size: 0.98rem;
    color: #5a7ca7;
    margin-bottom: 0.5rem;
}
.post-meta span {
    margin-right: 1.2em;
}
.post-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2a3b4c;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}
.post-excerpt {
    color: #4a5a6a;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.post-featured-image {
    margin: 2rem 0 2rem 0;
    text-align: center;
}
.post-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    object-fit: cover;
    max-height: 400px;
}

.post-content {
    font-size: 1.13rem;
    color: #222;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.post-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: #f5f7fa;
    color: #222;
    border-radius: 0.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
}
.post-tags .tag {
    background: #e3f3fc;
    color: #007bff;
    padding: 0.3em 0.9em;
    border-radius: 20px;
    font-size: 0.98rem;
    font-weight: 500;
    margin-right: 0.5em;
}
.post-share {
    font-size: 0.98rem;
}
.post-share .share-link {
    margin-left: 0.7em;
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}
.post-share .share-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.related-posts {
    margin-top: 3rem;
}
.related-posts h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #2a3b4c;
}
.related-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.related-post {
    background: #f8fafc;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 260px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.related-post .post-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.7rem;
}
.related-post .post-content {
    text-align: center;
}
.related-post h3 {
    font-size: 1.1rem;
    margin: 0.5em 0 0.3em 0;
    color: #2a3b4c;
}
.related-post .read-more {
    color: #007bff;
    font-size: 0.98rem;
    text-decoration: none;
    margin-top: 0.5em;
    display: inline-block;
}
.related-post .read-more:hover {
    text-decoration: underline;
}

.back-to-blog {
    margin: 2.5rem 0 0 0;
    text-align: left;
}
.back-to-blog .btn {
    background: #e3f3fc;
    color: #007bff;
    border: none;
    padding: 0.7em 1.5em;
    border-radius: 20px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}
.back-to-blog .btn:hover {
    background: #d0e7f7;
    color: #0056b3;
}