.sh-home .sh-journey .sh-section__head {
	margin-bottom: 22px;
}

.sh-home .sh-journey__tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 auto 30px;
	padding: 0;
}

.sh-home .sh-journey__tab {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	min-height: 42px;
	margin: 0;
	padding: 0 24px;
	border: 1px solid rgba(28, 122, 190, 0.08);
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 8px 24px rgba(18, 74, 126, 0.08);
	color: #5f7d96;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-transform: none;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sh-home .sh-journey__tab.is-active,
.sh-home .sh-journey__tab:hover {
	background: var(--sh-primary);
	color: #fff;
	transform: translateY(-1px);
}

.sh-home .sh-journey__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, calc((100% - 48px) / 3)));
	justify-content: center;
	gap: 24px;
}

.sh-home .sh-journey__grid:not(.is-ready) .sh-journey-card:nth-child(n + 4) {
	display: none;
}

.sh-home .sh-journey-card {
	overflow: hidden;
	border: 8px solid #fff;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 0 0 1px rgba(28, 122, 190, 0.08), 0 8px 24px rgba(18, 74, 126, 0.08);
	transition: opacity 0.2s ease, transform 0.24s ease;
}

.sh-home .sh-journey-card.is-hidden {
	display: none;
}

.sh-home .sh-journey-card__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.sh-home .sh-journey-card__media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 100%;
	gap: 6px;
}

.sh-home .sh-journey-card__group {
	display: grid;
	gap: 6px;
}

.sh-home .sh-journey-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 11px;
}

.sh-home .sh-journey-card__image--top {
	aspect-ratio: 4 / 5;
}

.sh-home .sh-journey-card__image--bottom {
	aspect-ratio: 16 / 7;
}

@media (min-width: 768px) {
	.sh-home .sh-journey-card__image--top {
		aspect-ratio: auto;
		height: clamp(300px, 26vw, 360px);
	}

	.sh-home .sh-journey-card__image--bottom {
		aspect-ratio: auto;
		height: clamp(105px, 9vw, 125px);
	}
}

.sh-home .sh-journey-card__title {
	margin: 16px 0 8px;
	color: var(--sh-primary);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.08;
	text-align: center;
}

.sh-home .sh-journey-card__services {
	margin: -2px 0 10px;
	padding: 0 12px;
	color: #5f7d96;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.sh-home .sh-journey-card__more,
.sh-home .sh-journey__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(0, 151, 220, 0.22);
	background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
	box-shadow: 0 6px 0 rgba(0, 151, 220, 0.24), 0 10px 20px rgba(0, 151, 220, 0.1);
	color: var(--sh-primary);
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.sh-home .sh-journey-card__more {
	width: min(100%, 176px);
	min-width: 176px;
	min-height: 36px;
	margin: 0 auto 10px;
	padding: 7px 24px;
	font-size: 15px;
}

.sh-home .sh-journey__more {
	display: flex;
	width: max-content;
	min-width: 0;
	min-height: 42px;
	margin: 28px auto 0;
	padding: 0 22px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(90deg, #0b78ce, #0097dc);
	box-shadow: 0 10px 22px rgba(0, 151, 220, 0.2);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-transform: none;
	cursor: pointer;
}

.sh-home .sh-journey__more[hidden] {
	display: none;
}

@media (max-width: 1024px) {
	.sh-home .sh-journey__grid {
		grid-template-columns: repeat(auto-fit, minmax(0, calc((100% - 32px) / 3)));
		gap: 16px;
	}

	.sh-home .sh-journey-card__title {
		font-size: 18px;
	}

	.sh-home .sh-journey-card__image--top {
		height: clamp(250px, 24vw, 300px);
	}

	.sh-home .sh-journey-card__image--bottom {
		height: clamp(90px, 9vw, 105px);
	}
}

@media (max-width: 767px) {
	.sh-home .sh-journey .sh-section__head {
		margin-bottom: 18px;
	}

	.sh-home .sh-journey__tabs {
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 6px;
		margin-bottom: 22px;
		padding: 0;
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.sh-home .sh-journey__tabs::-webkit-scrollbar {
		display: none;
	}

	.sh-home .sh-journey__tab {
		flex: 0 0 auto;
		min-width: 70px;
		min-height: 36px;
		padding: 0 14px;
		font-size: 12px;
		white-space: nowrap;
	}

	.sh-home .sh-journey__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px 12px;
	}

	.sh-home .sh-journey-card {
		border-width: 8px;
		border-radius: 14px;
	}

	.sh-home .sh-journey-card__media {
		gap: 5px;
	}

	.sh-home .sh-journey-card__image {
		border-radius: 8px;
	}

	.sh-home .sh-journey-card__title {
		margin: 10px 0 5px;
		font-size: 15px;
	}

	.sh-home .sh-journey-card__services {
		margin: 0 0 7px;
		padding: 0 8px;
		font-size: 12px;
	}

	.sh-home .sh-journey-card__more {
		width: min(100%, 128px);
		min-width: 128px;
		min-height: 26px;
		margin-bottom: 4px;
		padding: 5px 14px;
		box-shadow: 0 4px 0 rgba(0, 151, 220, 0.2), 0 8px 14px rgba(0, 151, 220, 0.08);
		font-size: 11px;
	}

	.sh-home .sh-journey__more {
		width: max-content;
		min-width: 0;
		min-height: 38px;
		margin-top: 18px;
		padding: 0 18px;
		font-size: 13px;
	}
}
