.related-posts-container {
    margin-bottom: 10px;
    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: -18px;
    font-size: 14px;
    color: #cb0000;
    left: 10px;
    background: #fff;
    padding: 0 4px;
    font-weight: 500;
}

.thumb-box {
    border-radius: 5px;
    width: 140px;
    height: 70px;
    overflow: hidden;
    margin: auto;
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    transform: scale(1);
}

.related-post h3 {
    font-size: 18px;
    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;
    }
    .title-box {
        width: calc(100% - 115px);
    }
	.related-post h3 {
		font-size: 16px;
        font-weight: 600;
        line-height: 22px;
	}
}