/* ==========================================================================
   Блок «Внимание» — карточка-ссылка на другой пост/услугу
   ========================================================================== */

.attention-card {
	display: flex;
	align-items: stretch;
	gap: 0;
	border: 2px solid #01989D;
	border-radius: 0 35px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 24px rgba(0, 135, 141, 0.08);
}

/* ── Изображение ──────────────────────────────────────────────── */

.attention-card__img {
	flex: 0 0 280px;
	max-width: 280px;
	display: block;
	overflow: hidden;
	position: relative;
	border-bottom: 0;
}

.attention-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── Тело карточки ────────────────────────────────────────────── */

.attention-card__body {
	flex: 1;
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	min-width: 0;
}

.attention-card__text {
	font-size: clamp(17px, calc(17px + (24 - 17) * (100vw - 375px) / (1600 - 375)), 24px);
	line-height: 120%;
	color: #333;
}

.attention-card__text p {
	margin: 0;
}

.attention-card__text p + p {
	margin-top: 0.8em;
}

/* ── Кнопка ───────────────────────────────────────────────────── */

.attention-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	background: #01989D;
	border-radius: 30px;
	text-decoration: none;
	transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
	white-space: nowrap;
}

.attention-card__btn:hover,
.attention-card__btn:focus {
	background: #017a7f;
	box-shadow: 0 6px 20px rgba(1, 152, 157, 0.35);
	transform: translateY(-1px);
	color: #fff;
	text-decoration: none;
}

.attention-card__btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(1, 152, 157, 0.3);
}

.attention-card__btn svg {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.attention-card__btn:hover svg {
	transform: translateX(3px);
}

/* ==========================================================================
   Адаптив
   ========================================================================== */

/* ── Планшеты (≤991px) ────────────────────────────────────────── */

@media (max-width: 991px) {
	.attention-card__img {
		flex: 0 0 220px;
		max-width: 220px;
	}

	.attention-card__body {
		padding: 22px 24px;
		gap: 16px;
	}

	.attention-card__text {
		font-size: 15px;
		line-height: 1.6;
	}

	.attention-card__btn {
		padding: 10px 22px;
		font-size: 14px;
	}
}

/* ── Телефоны (≤767px) ────────────────────────────────────────── */

@media (max-width: 767px) {
	.attention-card {
		display: block;
		border-radius: 0 15px;
	}

	.attention-card__img {
		float: left;
		flex: none;
        width: 120px;
        margin-top: 20px;
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 0px;
		border-radius: 8px;
		overflow: hidden;
	}

	.attention-card__img img {
		width: 100%;
		height: auto;
		object-fit: unset;
		display: block;
	}

	.attention-card__body {
		padding: 16px;
		gap: 10px;
		display: block;
	}

	.attention-card__text {
		font-size: 16px;
	}

	.attention-card__btn {
		display: inline-flex;
		width: auto;
		margin-top: 12px;
		padding: 10px 20px;
		font-size: 14px;
	}
}

/* ── Очень маленькие (≤480px) ─────────────────────────────────── */

@media (max-width: 480px) {
	.attention-card__img {
		width: 100px;
		margin-top: 14px;
        margin-left: 10px;
		margin-right: 10px;
		margin-bottom: 6px;
	}

	.attention-card__body {
		padding: 12px;
	}

	.attention-card__text {
		font-size: 16px;
	}
}
