.blog-container {
    padding-top: 100px;
    padding-bottom: 100px;

    display: flex;
    gap: 40px;
}

.author-sidebar {
    flex: 0 0 250px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    padding-right: 40px;
}

.author-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.blog-content {
    flex: 1;
}

.feature-img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.wrap-container {
    overflow: hidden;
    margin-top: 30px;
}

.wrap-img {
    float: left;
    width: 45%;
    margin-right: 25px;
    margin-bottom: 15px;
    border-radius: 4px;
}

@media (max-width: 850px) {
    .blog-container {
        flex-direction: column;
        padding: 20px;
    }

    .author-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .author-sidebar {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 0 0 30px 0;
        flex: none;
    }

    .wrap-img {
        float: none;
        width: 100%;
        margin-right: 0;
    }
}
