/* Web/static/styles/blog_post.css */

.blog-post {
    max-width: 800px; /*  Slightly narrower than the blog list */
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-header h1 {
    font-size: 2.8em; /* Larger heading for the post */
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.blog-post-header .post-date {
    font-size: 1em;
    color: #888;
}

.blog-post-content {
    font-size: 1.1em;
    color: #444; /* Slightly darker text for better readability */
    line-height: 1.7; /* More line height for readability */
}

.blog-post-content h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.blog-post-content p {
    margin-bottom: 1.2em; /* Space between paragraphs */
}

.blog-post-content ul {
    list-style: disc; /*  Standard bullet points */
    margin-left: 20px; /*  Indent the list */
    padding-left: 0;
    margin-bottom: 1.2em;
}

.blog-post-content li {
    margin-bottom: 0.5em; /* Space between list items */
}
.back-to-blog {
    margin-top: 40px; /* Add space above the "Back to Blog" link */
    text-align: left; /* Align the link to the left */

}

.back-link {
    color: #007aff; /* Apple blue link color */
    text-decoration: none;
    font-weight: 500;
    display: inline-flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center the arrow */
    transition: color 0.3s ease;
}

.back-link:hover {
     color: #0056b3; /* Darker blue on hover */
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
    .blog-post {
        padding: 20px;
    }

    .blog-post-header h1 {
        font-size: 2.2em;
    }
     /* Make menu items stack vertically on smaller screens */
      .ac-ln-menu-items {
        flex-direction: column;
        align-items: flex-start; /* Align items to the start */
    }
      .ac-ln-menu-item {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 10px; /* Add bottom margin for spacing */
    }
    /* Adjust padding and alignment for actions */
    .ac-ln-content {
        flex-direction: column; /* Stack title and menu vertically */
        align-items: flex-start; /* Align items to the start */
    }
    .ac-ln-actions {
        margin-left: 0; /* Remove left margin */
        margin-top: 10px; /* Add top margin for spacing */
    }
}