/* Кнопки в шапке внутренних страниц: WhatsApp и заявка.
   Выводятся в баннере под подзаголовком (кроме главной и раздела «Публикации»). */

.page-title-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}

.page-title-actions__wa,
.page-title-actions__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 10px 22px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.page-title-actions__wa {
	color: #fff !important;
	background: #25d366;
	box-shadow: 0 4px 14px rgba(37, 211, 102, .28);
}

.page-title-actions__wa:hover,
.page-title-actions__wa:focus {
	color: #fff !important;
	background: #1eb455;
	box-shadow: 0 6px 18px rgba(37, 211, 102, .38);
	transform: translateY(-1px);
	text-decoration: none;
}

.page-title-actions__wa .fa {
	font-size: 21px;
	line-height: 1;
}

.page-title-actions__cta {
	color: #233a46 !important;
	background: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
}

.page-title-actions__cta:hover,
.page-title-actions__cta:focus {
	color: #233a46 !important;
	background: #f1f7f8;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
	transform: translateY(-1px);
	text-decoration: none;
}

@media (max-width: 600px) {
	.page-title-actions {
		gap: 10px;
		margin-top: 14px;
	}
	.page-title-actions__wa,
	.page-title-actions__cta {
		flex: 1 1 100%;
		min-height: 42px;
		padding: 10px 16px;
		font-size: 14px;
	}
}
