/* Блок «Онкологический центр в Москве» на главной.
   Раньше: текст сплошной колонкой + большая фотография справа.
   Стало: цитата руководителя и три смысловых карточки на всю ширину. */

.about-modern {
	padding: 50px 0 55px;
	background: #fff;
}

.about-modern .section-title {
	margin-bottom: 26px;
	text-align: center;
}

/* Цитата генерального директора */
.about-quote {
	position: relative;
	max-width: 980px;
	margin: 0 auto 30px;
	padding: 24px 28px 24px 30px;
	background: #f1f7f8;
	border: 1px solid #dce9eb;
	border-left: 4px solid #08798a;
	border-radius: 0 8px 8px 0;
}

.about-modern .about-quote__text {
	margin: 0 0 12px;
	color: #24444c;
	font-size: 17px;
	font-style: italic;
	line-height: 1.6;
	text-align: left;
}

.about-quote__author {
	display: block;
	color: #08798a;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.about-quote__author span {
	display: block;
	color: #4a6b73;
	font-size: 14px;
	font-weight: 400;
}

/* Три смысловые карточки */
.about-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 0 0 30px;
}

.about-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 26px 24px 28px;
	background: #fff;
	border: 1px solid #dce9eb;
	border-radius: 10px;
	box-shadow: 0 2px 12px rgba(8, 121, 138, .07);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.about-card:hover {
	border-color: #08798a;
	box-shadow: 0 8px 22px rgba(8, 121, 138, .14);
	transform: translateY(-3px);
}

.about-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	background: #e9f5f6;
	border-radius: 50%;
	color: #08798a;
	font-size: 22px;
	line-height: 1;
}

.about-modern .about-card__title {
	margin: 0 0 12px;
	color: #08798a;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: none;
}

.about-modern .about-card__text {
	margin: 0;
	color: #4a6b73;
	font-size: 15px;
	line-height: 1.6;
	text-align: left;
}

/* Кнопка «Подробнее» */
.about-modern__more {
	text-align: center;
}

.about-modern__more a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 46px;
	padding: 12px 30px;
	background: #08798a;
	border-radius: 4px;
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.about-modern__more a:hover,
.about-modern__more a:focus {
	background: #055c69;
	box-shadow: 0 6px 18px rgba(8, 121, 138, .28);
	transform: translateY(-1px);
	text-decoration: none;
}

.about-modern__more a h4 {
	margin: 0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.about-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.about-modern {
		padding: 34px 0 38px;
	}
	.about-cards {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.about-quote {
		padding: 20px 18px 20px 20px;
	}
	.about-modern .about-quote__text {
		font-size: 16px;
	}
	.about-card {
		padding: 22px 18px 24px;
	}
}
