.blog-section {
    width: 740px;
    display: grid;
    gap: 20px;
}

.blog {
    /* background-color: lightcyan; */
    background-color: white;
    width: 700px;
    padding: 10px;
    display: flex;

    border: 1px solid rgba(198, 195, 195, 0.5);
}

.blog-left {
    /* background-color: lightcoral; */
    width: 150px;
    display: flex;
}

.blog-left img { 
    width: 50px;
    height: 50px;
    border-radius: 25px;
    object-fit: cover;
    object-position: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
}

.blog-right {
   margin-left: 10px;
}

.blog-header {
    display: flex;
    align-items: baseline;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.blog-header a {
    color: #408cef;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.125s, text-decoration 0.125s;
}

.blog-header a:hover {
    color:#1e72df;
    text-decoration: underline;
}

.blog-header p {
    margin: 0;
    font-size: 13px;
    color: rgb(137, 134, 134);
}

.blog-body {
    margin-top: 5px;
}

.blog-title {
    color: rgb(38, 37, 37);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.blog-subtitle {
    font-size: 16px;
    margin-top: 5px;
}

.blog-description {
    font-size: 14px;
    margin-top: 10px;
    line-height: 150%;
}