/* Block Style "rund" auf core/image
 *
 * Standardfarbe für den Ring: accent-3 (Türkis).
 * Im Editor unter „Rahmen → Farbe" kann sie pro Bild überschrieben werden —
 * WordPress schreibt die gewählte Farbe dann als Inline-Style auf das <img>.
 */
.wp-block-image.is-style-rund img {
	border-radius: 50%;
	aspect-ratio: 1;
	object-fit: cover;
	border: none;
	outline: 3px solid var(--wp--preset--color--accent-3);
	outline-offset: 5px;
}
