.related-posts-container {
    margin:20px 0px 10px 0px;
    max-width: 100%;
}

.related-post {
	width: 100%;
    display: flex;
    position: relative;
    border: 1px dashed #707070;
    padding: 7px;
    border-radius: 5px;

}

.related-post:before {
    content: 'Also Read';
    position: absolute;
    top: -20px;
    font-size: 14px;
    color: #cb0000;
    left: 10px;
    background: #fff;
    padding: 0 4px;
    font-weight: 500;
}

.thumb-box {
    border-radius: 3px;
    width: 140px;
    height: 80px;
    overflow: hidden;
    margin: auto;
	/* border:1px solid #9e9e9e66; */
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    transform: scale(1);
}
.img-inline-related-post{
    margin: 0 !important;
}
.related-post-title {
    font-size: 18px;
	font-weight: 600;
    padding-left: 10px;
    margin: 0;
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.title-box {
    width: calc(100% - 140px);
}

.title-box a {
    text-decoration: none;
    color: black;
}

.title-box a:hover {
    color: #0073e6;
}

@media (max-width: 480px) {
    .related-post {
        width: 100%;
    }
    .thumb-box {
        width: 115px !important;
        margin: auto;
		height:64px;
    }
    .title-box {
        width: calc(100% - 115px);
    }
	.related-post-title  {
		font-size: 16px;
        font-weight: 600;
        line-height: 22px;
	}
}