.blogs{
    display: flex;
    flex-direction: column;
    gap:4rem;
    align-items: start;
    width: 100%;
}

.blogs-post{
    display: flex;
    flex-direction: column;
    gap:1rem;
    align-items: start;
}

.blogs-post-subtile{
    font-size: 1rem;
    color: #5D5D5D;
    text-align: start;
}

.blogs-section{
    display: flex;
    width: 100%;
    gap:2rem;
}

.blogs-section-image{
    flex: 1;
}

.blogs-section-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap:1.3rem;
    align-items: start;
}

.blogs-section-content-title{
    font-size: 2rem;
    font-weight: 700;
    text-align: start;
    color: #0D0D0D;
}

.blogs-section-content-subtitle{
    font-size: 1rem;
    font-weight: 400;
    text-align: start;
    color: #5D5D5D;
}

@media (max-width: 900px) {
    .blogs-section {
        flex-direction: column;
    }

}