/* blog-box */
.blog-box {
    display: flex;
    width: 100%;
    max-width: 1170px;
    gap: 30px;
}
.blog-box .post {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}
.blog-box .post .thumb {
    display: block;
    width: 100%;
    height: 200px;
    border: solid 1px #f3f3f3;
    border-radius: 8px;
    overflow: hidden;
}
.blog-box .post .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-box .post h2.title,
.blog-box .post p.excerpt {
    padding: 0 15px;
}
.blog-box .post h2.title {
    color: #337AB7;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.8px;
}
.blog-box .post p.excerpt {
    color: #7A7A7A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.blog-box .post div.read-more {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #004B87;
}
.blog-box .post div.read-more img {
    width: 11px;
    height: auto;
}