/* simple01.css — Blog style: Simple Article */
/* Pamoja Resource Center — iesCMS-node */

.blog-simple01 {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: hsl(192, 35%, 20%);
}

/* Banner image */
.blog-simple01 .blog-banner {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
    height: 320px;
}
.blog-simple01 .blog-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category badge */
.blog-simple01 .blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: hsl(192, 40%, 35%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Title */
.blog-simple01 .blog-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

/* Excerpt */
.blog-simple01 .blog-excerpt {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

/* Meta row */
.blog-simple01 .blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
    opacity: 0.6;
    border-top: 1px solid hsl(192, 20%, 88%);
    border-bottom: 1px solid hsl(192, 20%, 88%);
    padding: 1rem 0;
    margin-bottom: 2.5rem;
}
.blog-simple01 .blog-meta .meta-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: hsl(192, 40%, 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: hsl(192, 40%, 35%);
    flex-shrink: 0;
}

/* Body text */
.blog-simple01 .blog-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.85;
    opacity: 0.85;
}

.blog-simple01 .blog-body h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-simple01 .blog-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-simple01 .blog-body blockquote {
    border-left: 4px solid hsl(42, 70%, 55%);
    background: hsl(42, 70%, 55%, 0.07);
    margin: 2.5rem 0;
    padding: 1rem 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}
.blog-simple01 .blog-body blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 1;
    margin: 0;
}

.blog-simple01 .blog-body ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}
.blog-simple01 .blog-body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.85;
}
.blog-simple01 .blog-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: hsl(42, 70%, 55%);
}

/* Author bio box */
.blog-simple01 .blog-author-bio {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 2rem;
    background: hsl(192, 20%, 97%);
    border: 1px solid hsl(192, 20%, 88%);
    border-radius: 0.75rem;
    margin-top: 3rem;
}
.blog-simple01 .bio-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: hsl(192, 40%, 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: hsl(192, 40%, 35%);
    flex-shrink: 0;
}
.blog-simple01 .bio-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.blog-simple01 .bio-role {
    font-size: 0.85rem;
    opacity: 0.55;
    margin-bottom: 0.5rem;
}
.blog-simple01 .bio-text {
    font-size: 0.9rem;
    line-height: 1.65;
    opacity: 0.7;
}
