.post-visual {
    display: flex;
    width: 100%;
    height: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.post-visual--small {
    max-width: 12rem;
}

.post-visual--medium {
    max-width: 18rem;
}

.post-visual--large {
    max-width: 25rem;
}

.post-visual--full {
    max-width: none;
}

.post-visual--position-left {
    margin-right: auto;
    margin-left: 0;
    align-items: flex-start;
}

.post-visual--position-right {
    margin-right: 0;
    margin-left: auto;
    align-items: flex-end;
}

.post-visual--position-top {
    justify-content: flex-start;
}

.post-visual--position-bottom {
    justify-content: flex-end;
}

.post-visual__image,
.post-visual__video {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 20rem;
    object-fit: contain;
}

.post-visual__html {
    width: 100%;
}

.post-visual__embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.post-visual__embed iframe,
.post-visual__embed video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.post-visual__caption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
}

.post-visual__placeholder {
    display: block;
    width: 10rem;
    aspect-ratio: 1;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

/* Inline-SVG innerhalb der Startseiten-Visuals */

.post-visual__svg {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.post-visual__svg > svg {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    overflow: visible;
}
