.sa-related-posts {
    position: relative;
}
.sa-related-posts .view-all-lnk {
    color: #223C6A;
    transition: all 0.3s;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: absolute;
    right: 0;
    top: -100px;
}
.sa-related-posts .view-all-lnk:hover svg {
    transform: translateX(3px);
}
.sa-related-posts .view-all-lnk svg {
    margin: 0 0 0 5px;
    transition: all 0.3s;
}
.related-posts-grid {
    position: relative;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    min-height: 300px;
}

.blog-post-item {
    padding: 16px;
    border-radius: 16px;
    transition: transform 0.3s ease;
    border: 1px solid #E9E9E9;
    max-width: 412px;
}
.blog-post-item-top {
    display: flex;
    align-items: center;
}
.blog-post-item-top .read-time {
    color: #636363;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 0 10px;
}
.blog-post-item .post-thumbnail {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 0 20px;
}
.blog-post-item .post-thumbnail img{
    display: block;
    min-height: 280px;
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    transition: all 0.5s;
}
.blog-post-item:hover .post-thumbnail img {
    transform: scale(1.04);
}
.blog-post-item h3 a,
.blog-post-item h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    line-height: 140%;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
.blog-post-item h3 {
    margin: 15px 0;
}
.blog-post-item .post-excerpt {
    margin: 10px 0 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: #636363;
}
.blog-post-item .post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-post-item .post-meta .post-date {
    color: #636363;
    font-size: 16px;
}
.blog-post-item  .post-tag {
    background: #EFF7FF;
    border-radius: 24px;
    padding: 6px 15px;
    min-height: 33px;
    display: inline-flex;
    align-items: center;
    color: #223C6A;
    font-size: 14px;
    font-weight: 600;
}
.blog-post-item .post-meta .author-avatar {
    display: flex;
    align-items: center;
}
.blog-post-item .post-meta .author-avatar img {
    border-radius: 24px;
    margin: 0 10px 0 0;
}
.blog-post-item .post-meta .author-avatar .author-name {
    color: #636363;
    font-size: 16px;
}