/* Sonstiges */
.img-placeholder {
    display          : flex;
    align-items      : center;
    justify-content  : center;
    background-color : #eeeeee;
    color            : #666666;
    height           : 400px;
    border-radius    : var(--border-radius);
    user-select      : none;
    pointer-events   : none;
    border           : 1px solid #e8e8e8;
    
    &::after {
        content   : "Platzhalter Bild";
        font-size : 24px;
        padding   : 1rem;
    }
}
