/**
 * No-Pin Thumbnail Styles
 * Verhindert dass Pinterest diese Bilder als pinnbar erkennt
 */

.no-pin-thumb {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

/* YARPP Thumbnails innerhalb des Artikels */
.yarpp-thumbnails-horizontal .no-pin-thumb.yarpp-thumb {
    width: 150px;
    height: 150px;
    border-radius: 4px;
}

/* Related Posts am Ende des Artikels */
.related-posts .no-pin-thumb.related-thumb {
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    border-radius: 4px;
}

/* Author Box Avatar (Style A) - muss die gleichen Styles wie .author-box .image img haben */
.author-box .image .no-pin-thumb.author-thumb {
    width: 110px;
    height: 110px;
    display: inline-block;
    margin-top: -77px;
    border-radius: 50%;
    border: 22px solid var(--c-body);
}

/* Author Box Avatar (Style B) - muss die gleichen Styles wie .author-box-b .image img haben */
.author-box-b .image .no-pin-thumb.author-thumb-b {
    width: 96px;
    height: 96px;
    display: block;
    margin-top: 6px;
    margin-left: 3px;
    margin-right: 22px;
    border-radius: 50%;
}
