/**
 * Блок stomarus/custom-image: верхняя строка — картинка + заголовок; снизу — текст на всю ширину.
 */
.stomarus-custom-image {
	--stomarus-ci-circle: 56px;
	--stomarus-ci-title: #2b2b2b;
	--stomarus-ci-text: #605c5c;
	display: flex;
	flex-direction: column;
	gap: clamp(8px, 1.5vw, 12px);
	width: 100%;
	box-sizing: border-box;
	font-family: 'Roboto', 'Arial', sans-serif;
}

/* Верх: изображение и первая строка текста в одном ряду, по вертикали по центру */
.stomarus-custom-image__top {
	display: flex;
	align-items: center;
	gap: clamp(12px, 3vw, 16px);
	min-width: 0;
}

.stomarus-custom-image__media {
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	margin: 0;
	line-height: 0;
}

.stomarus-custom-image__media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: var(--stomarus-ci-circle);
	object-fit: contain;
}

.stomarus-custom-image__title {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	font-weight: 400;
	line-height: 1.35;
	color: var(--stomarus-ci-title);
}

.stomarus-custom-image__title strong,
.stomarus-custom-image__title b {
	font-weight: 400;
}

.stomarus-custom-image__title p {
	margin: 0;
}

/* Нижняя строка — на всю ширину под картинкой и заголовком */
.stomarus-custom-image__body {
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
	font-weight: 400;
	line-height: 1.55;
	color: var(--stomarus-ci-text);
}

.stomarus-custom-image__body p {
	margin: 0 0 0.65em;
}

.stomarus-custom-image__body p:last-child {
	margin-bottom: 0;
}

.stomarus-custom-image__body a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}
