/* Single Blog Post Styles */
.single-post-hero {
    text-align: center;
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.post-cat-pill {
    display: inline-block;
    padding: 8px 16px;
    background-color: #eef2f6;
    /* Soft blue-gray */
    color: #3b82f6;
    /* Blue accent */
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.single-post-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.post-meta-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.post-meta-item i {
    margin-right: 8px;
    color: #999;
}

/* Featured Image */
.single-post-image-container {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.single-post-image-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Content */
.single-post-content-wrap {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d3748;
    font-family: 'Georgia', serif;
    /* Or system serif for reading */
}

.single-post-content-wrap p {
    margin-bottom: 25px;
}

.single-post-content-wrap h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    font-family: var(--font-headings, sans-serif);
    color: #000;
}