/* Hide only the top title on single posts */
.single-post .page-title h1,
.single-post .page-title .entry-title {
    display: none !important;
}

/* Single post main title */
.single-post .single-post-title,
.single-post .entry-title {
    font-size: 32px;   /* adjust as needed */
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Reorder single post layout */
.single-post article.single-postlike {
    display: flex;
    flex-direction: column;
}

.single-post .page-title-head {
    display: none !important;
}

.single-post .page-title {
    display: none !important;
}

/* 1. Title (inside entry-content first) */
.single-post .single-post-title {
    order: 1;
}

/* 2. Featured image */
.single-post .post-thumbnail {
    order: 2;
}

/* 3. Content */
.single-post .entry-content {
    order: 3;
}

/* 4. Meta */
.single-post .post-meta {
    order: 4;
}

/* 5. Share box */
.single-post .single-share-box {
    order: 5;
}