body {
    overflow: visible;
}

.posts-loop .row:nth-child(2) {
    flex-wrap: nowrap;
}

.author-profile-box .profile-image {
    max-width: 250px;
}

.author-profile-box .profile-image img {
    height: 250px;
    border-radius: 50%;
    width: 250px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0px 1px 3px 1px #626262;
}

.author-social-links ul {
    padding-left: 0;
    margin-left: 0;
    column-gap: 18px;
    justify-content: center;
    margin-top: 30px;
}

.author-social-links ul li {
    list-style: none;
}

.author-social-links ul li a {
    font-size: 17px;
    background-color: #ca0822;
    color: #fff;
    border-radius: 50%;
    height: 30px;
    display: block;
    width: 30px;
    padding-left: 7px;
    line-height: 31px;
}

.posts-loop .card-content .card-link a:hover {
    color: #ca0822;
}

.posts-loop .card {
    width: 100%;
    border-bottom: 2px solid #ca0822 !important;
    border-radius: 0;
    margin-bottom: 20px;
}

.posts-loop h1.page-heading{
	padding : 40px 0 0;
}

.posts-loop h1.page-heading + h3{
	padding : 0 0 40px;
	margin-bottom : 0;
}

.author-profile-box .author-bio {
    color: #ca0822;
    margin-top: 40px;
}

@media only screen and (max-width : 767px) {
    .posts-loop .row:nth-child(2) {
        flex-wrap: wrap;
    }

    .posts-loop .post-cards-box .card {
        width: 100%;
    }
}