.yeraz-tour-content {
	--yeraz-accent: #01099c;
	--yeraz-text: #3d3d3d;
	--yeraz-muted: #7a7a7a;
	--yeraz-border: #e8e9f2;
	max-width: 1140px;
	margin: 0 auto;
	padding: 10px 10px 64px;
	font-family: Rubik, sans-serif;
	color: var(--yeraz-text);
}

.yeraz-tour-content * {
	box-sizing: border-box;
}

.yeraz-tour-content h2,
.yeraz-tour-content h3 {
	margin-top: 0;
	font-family: Rubik, sans-serif;
	color: #1b1c1e;
}

.yeraz-tour-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	align-items: stretch;
	margin: 0 0 52px;
	padding: 26px 32px;
	background: #fff;
	border: 1px solid var(--yeraz-border);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(17, 25, 90, 0.07);
}

.yeraz-tour-info__item {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.yeraz-tour-info__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 14px;
	background: rgba(1, 9, 156, 0.08);
	color: var(--yeraz-accent);
	font-size: 23px;
}

.yeraz-tour-info__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.yeraz-tour-info__value {
	display: block;
	color: #1b1c1e;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
}

.yeraz-tour-info__label {
	display: block;
	margin-top: 5px;
	color: var(--yeraz-muted);
	font-size: 13px;
	line-height: 1.4;
}

.yeraz-tour-overview {
	margin: 0 0 58px;
}

.yeraz-tour-overview__inner {
	max-width: 850px;
}

.yeraz-tour-content .yeraz-section-title {
	margin-bottom: 22px;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.25;
}

.yeraz-tour-overview__description p {
	margin: 0 0 18px;
	color: var(--yeraz-text);
	font-size: 16px;
	line-height: 1.72;
}

.yeraz-tour-overview__description p:last-child,
.yeraz-day__description p:last-child {
	margin-bottom: 0;
}

.yeraz-itinerary {
	position: relative;
}

.yeraz-itinerary__heading {
	margin-bottom: 32px;
}

.yeraz-timeline {
	position: relative;
	padding-left: 76px;
}

.yeraz-timeline::before {
	position: absolute;
	top: 27px;
	bottom: 27px;
	left: 27px;
	width: 2px;
	background: linear-gradient(180deg, var(--yeraz-accent), rgba(1, 9, 156, 0.16));
	content: "";
}

.yeraz-day {
	position: relative;
	margin: 0 0 28px;
}

.yeraz-day:last-child {
	margin-bottom: 0;
}

.yeraz-day__number {
	position: absolute;
	z-index: 2;
	top: 20px;
	left: -76px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 5px solid #fff;
	border-radius: 50%;
	background: var(--yeraz-accent);
	box-shadow: 0 5px 15px rgba(1, 9, 156, 0.2);
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	line-height: 1;
}

.yeraz-day__card {
	display: grid;
	grid-template-columns: minmax(0, 68fr) minmax(260px, 32fr);
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--yeraz-border);
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(17, 25, 90, 0.06);
}

.yeraz-day__text {
	padding: 28px 30px;
}

.yeraz-day__eyebrow {
	margin: 0 0 8px;
	color: var(--yeraz-accent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.yeraz-tour-content .yeraz-day__title {
	margin: 0 0 15px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.35;
}

.yeraz-day__description p {
	margin: 0 0 14px;
	color: var(--yeraz-text);
	font-size: 15px;
	line-height: 1.7;
}

.yeraz-day__media {
	display: flex;
	min-width: 0;
	margin: 0;
	background: #f5f5f8;
}

.yeraz-day__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 210px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.yeraz-tour-content {
		padding-right: 20px;
		padding-left: 20px;
	}

	.yeraz-day__card {
		grid-template-columns: 1fr;
	}

	.yeraz-day__text {
		padding: 26px;
	}

	.yeraz-day__media img {
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 767px) {
	.yeraz-tour-content {
		padding: 4px 16px 46px;
	}

	.yeraz-tour-info {
		grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
		gap: 16px;
		margin-bottom: 42px;
		padding: 20px;
	}

	.yeraz-tour-info__item {
		gap: 12px;
	}

	.yeraz-tour-info__icon {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
		border-radius: 12px;
		font-size: 20px;
	}

	.yeraz-tour-info__value {
		font-size: 18px;
	}

	.yeraz-tour-info__label {
		font-size: 11px;
	}

	.yeraz-tour-content .yeraz-section-title {
		margin-bottom: 18px;
		font-size: 28px;
	}

	.yeraz-tour-overview {
		margin-bottom: 48px;
	}

	.yeraz-tour-overview__description p {
		font-size: 15px;
	}

	.yeraz-timeline {
		padding-left: 52px;
	}

	.yeraz-timeline::before {
		top: 22px;
		bottom: 22px;
		left: 19px;
	}

	.yeraz-day {
		margin-bottom: 22px;
	}

	.yeraz-day__number {
		top: 18px;
		left: -52px;
		width: 40px;
		height: 40px;
		border-width: 4px;
		font-size: 14px;
	}

	.yeraz-day__text {
		padding: 22px 20px;
	}

	.yeraz-tour-content .yeraz-day__title {
		font-size: 19px;
	}

	.yeraz-day__description p {
		font-size: 14px;
		line-height: 1.65;
	}
}
