/* --- Styles for the Blog Post Page --- */

/* --- Post Container & Header --- */
.blog-post {
    max-width: 800px;
    background: #fff;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 40px 50px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.post-header {
    text-align: center;
    margin-bottom: 30px;
}

.post-category {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.post-title-main {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.post-meta-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #777;
    font-size: 0.9rem;
}

.post-meta-details .author-name a {
    color: var(--dark-color);
    font-weight: 700;
}

/* --- Featured Image --- */
.post-featured-image {
    margin-bottom: 30px;
}

.post-featured-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

/* --- Post Content Body --- */
.post-content-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content-body p.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5em;
    font-family: var(--font-family-headings);
    font-style: italic;
}

.post-content-body h2, .post-content-body h3 {
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3;
}

.post-content-body h2 {
    font-size: 2rem;
}

.post-content-body h3 {
    font-size: 1.6rem;
}

.post-content-body ul, .post-content-body ol {
    margin-bottom: 1.5em;
    padding-left: 25px;
}

.post-content-body li {
    margin-bottom: 0.5em;
}

.post-content-body a {
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
}

.post-content-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
}

/* --- Post Footer --- */
.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.post-tags a {
    margin-left: 5px;
    background: #f2f2f2;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.post-tags a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* --- Author Box --- */
.author-box-section {
    max-width: 800px;
}

.author-box {
    background: #f9fafb;
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box-name {
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.author-social a {
    font-weight: 700;
}

/* --- Responsive Design for Post --- */
@media (max-width: 768px) {
    .blog-post {
        padding: 25px;
    }

    .post-title-main {
        font-size: 2.2rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
  
  
}
