/* Blog Post Section */
.blog-post-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Container Styling */
.blog-post-container {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.75;
}

/* Title and Date */
.blog-post-title {
    font-size: 44px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1.3;
}

.blog-post-date {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Content Styling */
.blog-post-content h2 {
    font-size: 34px;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 18px;
}

.blog-post-content p {
    font-size: 21px;
    color: #4f4f4f;
    line-height: 1.85;
    margin-bottom: 18px;
}

.blog-post-image {
    width: 100%;
    border-radius: 8px;
    margin: 25px 0;
}

/* List Styling */
.blog-post-content ul {
    padding-left: 20px;
    list-style-type: disc;
    color: #34495e;
}

.blog-post-content ul li {
    margin-bottom: 10px;
    font-size: 20px;
}

.blog-post-content .highlight {
    color: #e74c3c;
    font-weight: bold;
    text-decoration: none;
}

.blog-post-content .highlight:hover {
    text-decoration: underline;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #ececec;
}

.author-image-blob {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, #16a085, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.author-details {
    margin-left: 20px;
    color: #4f4f4f;
    font-size: 18px;
    line-height: 1.5;
}

/* CTA Button */
.cta-button {
    background-color:  #1abc9c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 18px;
}

.cta-button:hover {
    background-color: #1d9e84;
}

/* Related Articles */
.related-articles {
    margin-top: 50px;
    border-top: 1px solid #ececec;
    padding-top: 30px;
}

.related-articles h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
}

.related-articles ul {
    list-style-type: none;
    padding: 0;
}

.related-articles li {
    margin: 15px 0;
}

.related-articles li a {
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.related-articles li a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Blog Post Section */
    .blog-post-section {
        padding: 30px 15px;
    }

    .blog-post-container {
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* Title and Date */
    .blog-post-title {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .blog-post-date {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Content Styling */
    .blog-post-content h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .blog-post-content p {
        font-size: 18px;
        line-height: 1.75;
        margin-bottom: 15px;
    }

    .blog-post-image {
        margin: 15px 0;
        border-radius: 6px;
    }

    /* List Styling */
    .blog-post-content ul {
        padding-left: 15px;
    }

    .blog-post-content ul li {
        margin-bottom: 8px;
        font-size: 18px;
    }

    /* Author Info */
    .author-info {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        padding-top: 25px;
    }

    .author-image-blob {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .author-photo {
        width: 65px;
        height: 65px;
    }

    .author-details {
        text-align: center;
        margin: 0;
        font-size: 16px;
    }

    /* CTA Button */
    .cta-button {
        font-size: 16px;
        padding: 10px 18px;
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    /* Related Articles */
    .related-articles {
        padding-top: 25px;
        margin-top: 40px;
    }

    .related-articles h3 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .related-articles ul {
        padding: 0;
    }

    .related-articles li {
        margin: 12px 0;
        text-align: center;
    }

    .related-articles li a {
        font-size: 18px;
    }
}
