/*
Theme Name: Astra Child
Template: astra
*/

.site-related-posts {
    display: flex;
    border: 1px dashed #9b1717;
    border-radius: 5px;
    position: relative;
    padding: 12px;
    margin-top: 20px;
    margin-bottom: 12px;
    background-color: #fffdf9;
}
.site-related-posts:before {
    content: "Also read";
    position: absolute;
    top: -12px;
    font-size: 14px;
    color: #cb0000;
    left: 10px;
    background: #fff;
    padding: 0 4px;
    font-weight: 500;
    border-radius: 50px;
}
.site-related-post {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.site-related-postimage {
    flex-shrink: 0;
}
.site-rp-image {
    width: 100px !important;
    height: auto !important;
    border-radius: 4px !important;
    box-shadow: 0px 1px 8px #70707096 !important;
}
.site-rp-link {
    color: black;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    word-break: break-word;
    flex: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .site-related-posts {
        padding: 8px;
    }
    .site-rp-link {
        font-size: 14px;
    }
    .site-rp-image {
        width: 100px !important;
    }
}