/* blog-en.css: Styles for English blog pages */
.blogpost {
    max-width: 700px;
    margin: 40px auto;
    background: #231942;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
    padding: 2.5rem 2rem 2rem 2rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.blogpost__meta {
    color: #b8b8d1;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}
.blogpost__img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.blogpost__content ul, .blogpost__content ol {
    margin-left: 1.5em;
    margin-bottom: 1.2em;
}
.blogpost__content li {
    margin-bottom: 0.5em;
}
.navbar__back {
    display: inline-block;
    margin: 1.5rem 0 0 2rem;
    color: #e63946;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.navbar__back:hover {
    color: #fff;
    text-decoration: underline;
}
