.wrapper {
    width: 100%;
    margin-bottom: 10%;
}

.wrapper:first-child {
    padding-top: 15%;
}

.blog_post {
    position: relative;
    padding: 6rem 3rem 6rem 6rem;
    background: #fff;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 1px 1px 0.5rem #0033a02d;
}

.img_pod {
    height: 110px;
    width: 110px;
    z-index: -1;
    box-shadow: 1px 1px 0.5rem rgba(0, 0, 0, 0.3);
    /* border: 0.5px solid #0032A0; */
    border-radius: 100%;
    position: absolute;
    left: -50px;
    top: 10px;
    transform: translateY(-50%);
    background: white;
    /* box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3); */
}

img.blog-card-img {
    width: 70px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h3 {
    margin: 0 0 0.5rem 0;
    color: #999;
    font-size: 1.25rem;
}

h1 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    color: #333;
}

p {
    color: #333;
}

.btn-wrapper__read-more {
    width: 100%;
    display: flex;
    justify-content: end;
}

.read-more {
    border: none;
    outline: none;
    color: rgb(90, 90, 90);
    /* font-size: 1.2rem; */
    text-decoration: none;
    padding-left: 0;
}

.read-more:after {
    background: none repeat scroll 0 0 transparent;
    content: "";
    display: block;
    height: 2px;
    /* left: 50%; */
    position: absolute;
    background: #0032A0;
    transition: width 0.5s ease 0s, left 0.5s ease 0s;
    width: 0;
}

.read-more:hover:after {
    width: 15%;
}

.read-more:hover {
    color: rgb(51, 51, 51);
}