/* Телефонные ссылки — фирменным бордовым цветом во всех состояниях
   (в т.ч. :active, иначе браузер красит клик своим красным). */
.Refunds-page a[href^="tel:"],
.Refunds-page a[href^="tel:"]:link,
.Refunds-page a[href^="tel:"]:visited,
.Refunds-page a[href^="tel:"]:hover,
.Refunds-page a[href^="tel:"]:active {
	color: #b2284f;
	font-weight: 600;
}

.Refunds-page a[href^="tel:"]:hover {
	text-decoration: underline;
}

/* Ссылки в тексте — фирменным бордовым (карточку «Информация для пассажиров»
   и кнопки не трогаем, у них своё оформление). */
.Refunds-page .Article-content-text a,
.Refunds-page .Article-text-section-text a,
.Refunds-page .Refunds-steps__text a {
	color: #b2284f;
}

.Refunds-page .Article-content-text a:hover,
.Refunds-page .Article-text-section-text a:hover,
.Refunds-page .Refunds-steps__text a:hover {
	text-decoration: underline;
}

/* Декоративная иконка во вступительном блоке страницы «Возврат билетов».
   Поднимаем её выше, т.к. секция короткая (глобальный .Article-content-icons-2
   рассчитан на длинный контент и уводит иконку вниз). */
.Article-content-icons.Article-content-icons-refunds {
	top: 40px;
	right: 40px;
}

/* Убираем нижний отступ текстового блока (глобально задан margin-bottom: 50px). */
.Article-content-refunds .Article-content-text {
	margin-bottom: 0;
}

/* На десктопе резервируем место справа, чтобы текст не заходил под иконку. */
@media (min-width: 1025px) {
	.Article-content-refunds .Article-content-text {
		padding-right: 220px;
	}
}

/* На средних и узких экранах контейнер сужается и текст налезал бы
   на иконку — прячем декоративную иконку. */
@media (max-width: 1180px) {
	.Article-content-icons.Article-content-icons-refunds {
		display: none;
	}
}

/* Фоновый блоб во вступительном блоке — поднимаем вслед за иконкой.
   Двойной класс перебивает глобальные правила .Article-content-blind-3. */
.Blind.Article-content-blind-refunds {
	top: -140px;
}

@media (max-width: 1024px) {
	.Blind.Article-content-blind-refunds {
		top: -80px;
	}
}

/* Убираем большой пустой отступ под коротким вступлением. */
.Article-content.Article-content-refunds {
	padding-bottom: 40px;
}

@media (max-width: 767px) {
	.Article-content.Article-content-refunds {
		padding-bottom: 24px;
	}
}

/* Пошаговая инструкция «Как оформить возврат». */
.Refunds-steps {
	margin: 30px 0 0;
	padding: 0 0 0 22px;
}

.Refunds-steps__item {
	margin-bottom: 48px;
}

.Refunds-steps__item:last-child {
	margin-bottom: 0;
}

.Refunds-steps__text {
	margin-bottom: 24px;
}

.Refunds-steps__img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-top: 8px;
	border-radius: 12px;
}

@media (max-width: 767px) {
	.Refunds-steps__item {
		margin-bottom: 36px;
	}

	.Refunds-steps__text {
		margin-bottom: 18px;
	}
}

/* Блок «Информация для пассажиров» — карточка. */
.Refunds-info__card {
	position: relative;
	overflow: hidden;
	padding: 48px 56px;
	border: 1px solid #f0dce4;
	border-radius: 24px;
	background: linear-gradient(135deg, #fdf4f7 0%, #f6e9ef 100%);
}

.Refunds-info__body {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.Refunds-info__title {
	margin: 0 0 28px;
}

.Refunds-info__deco {
	position: absolute;
	right: 40px;
	bottom: -30px;
	width: 200px;
	height: 200px;
	opacity: .12;
	z-index: 0;
}

.Refunds-info__deco use {
	fill: #b2284f;
}

.Refunds-info__links {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.Refunds-info__links p {
	margin: 0;
}

.Refunds-info__links a {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: none;
	transition: color .2s ease;
}

.Refunds-info__links a::before {
	content: "";
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #b2284f url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l6 6-6 6'/%3E%3C/svg%3E") center / 8px no-repeat;
	transition: transform .2s ease;
}

.Refunds-info__links a:hover {
	color: #b2284f;
}

.Refunds-info__links a:hover::before {
	transform: translateX(3px);
}

@media (max-width: 767px) {
	.Refunds-info__card {
		padding: 28px 20px;
		border-radius: 18px;
	}

	.Refunds-info__deco {
		width: 140px;
		height: 140px;
		right: 10px;
	}
}

