/* Blog post page consistency with main theme */
.blog-post-content {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.blog-post-content h1 {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-post-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.blogpost-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.author-info div {
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.author-info b {
    color: var(--heading);
}

.post-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Related articles section */
.home-articles h2 {
    color: var(--heading);
    margin-bottom: 1.5rem;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.more-post {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.more-post:hover {
    background: var(--bg-hover);
    transform: translateY(-2px);
}

.center {
    text-align: center;
}