/**
 * Popular transfer routes — matches ISP pl-main-box card layout (Hagia brand colors).
 * Prefix: wts-pr-
 */
:root {
	--wts-pr-brand: var(--wts-brand, #007bff);
	--wts-pr-brand-hover: var(--wts-brand-hover, #0056b3);
	--wts-pr-dark: #111111;
	--wts-pr-gray: #888888;
	--wts-pr-card-bg: #f8f9fa;
	--wts-pr-card-border: #eceef1;
	--wts-pr-card-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.wts-pr-section {
	background: #ffffff;
	padding: 64px 20px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	box-sizing: border-box;
}

.wts-pr-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.wts-pr-header {
	text-align: center;
	margin-bottom: 40px;
}

.wts-pr-heading {
	font-size: 42px;
	font-weight: 800;
	color: var(--wts-pr-dark);
	margin: 0 0 16px;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.wts-pr-subtitle {
	font-size: 15px;
	color: var(--wts-pr-gray);
	line-height: 1.75;
	max-width: 680px;
	margin: 0 auto;
}

.wts-pr-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
}

.wts-pr-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wts-pr-item {
	margin: 0;
}

/* pl-main-box equivalent */
.wts-pr-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 18px 22px;
	background: var(--wts-pr-card-bg);
	border: 1px solid var(--wts-pr-card-border);
	border-radius: 8px;
	box-shadow: var(--wts-pr-card-shadow);
	text-decoration: none;
	color: inherit;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.wts-pr-section a.wts-pr-row:hover,
.wts-pr-section a.wts-pr-row:focus-visible {
	background-color: var(--wts-pr-brand);
	border-color: var(--wts-pr-brand);
	box-shadow: 0 4px 14px rgba(0, 123, 255, 0.22);
	color: #ffffff;
}

/* pl-inner route block */
.wts-pr-route {
	display: flex;
	align-items: flex-start;
	flex: 1;
	min-width: 0;
}

/* pl-head */
.wts-pr-head {
	font-size: 15px;
	font-weight: 600;
	color: var(--wts-pr-dark);
	line-height: 1.35;
	transition: color 0.2s ease;
}

.wts-pr-origin {
	flex-shrink: 0;
	white-space: nowrap;
}

.wts-pr-destination {
	min-width: 0;
}

/* pl-right-arrow */
.wts-pr-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin: 1px 10px 0;
	color: #333333;
	transition: color 0.2s ease;
}

.wts-pr-arrow-icon {
	display: block;
}

/* pl-price-main-box + pl-right-icon */
.wts-pr-meta {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 14px;
}

.wts-pr-price-wrap {
	text-align: right;
}

.wts-pr-price {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: var(--wts-pr-dark);
	line-height: 1.15;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.wts-pr-price-num,
.wts-pr-price-cur {
	display: inline;
}

.wts-pr-price-label {
	display: block;
	font-size: 12px;
	color: #9a9a9a;
	text-align: right;
	margin-top: 3px;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.wts-pr-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--wts-pr-brand);
	transition: color 0.2s ease;
}

.wts-pr-chevron-icon {
	display: block;
}

.wts-pr-section a.wts-pr-row:hover .wts-pr-head,
.wts-pr-section a.wts-pr-row:hover .wts-pr-arrow,
.wts-pr-section a.wts-pr-row:hover .wts-pr-price,
.wts-pr-section a.wts-pr-row:hover .wts-pr-chevron,
.wts-pr-section a.wts-pr-row:focus-visible .wts-pr-head,
.wts-pr-section a.wts-pr-row:focus-visible .wts-pr-arrow,
.wts-pr-section a.wts-pr-row:focus-visible .wts-pr-price,
.wts-pr-section a.wts-pr-row:focus-visible .wts-pr-chevron {
	color: #ffffff;
}

.wts-pr-section a.wts-pr-row:hover .wts-pr-price-label,
.wts-pr-section a.wts-pr-row:focus-visible .wts-pr-price-label {
	color: rgba(255, 255, 255, 0.82);
}

.wts-pr-footer-link {
	text-align: center;
	margin: 28px 0 0;
}

.wts-pr-footer-link a {
	color: var(--wts-pr-brand);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.wts-pr-footer-link a:hover {
	color: var(--wts-pr-brand-hover);
	text-decoration: underline;
}

@media (max-width: 767px) {
	.wts-pr-item--mobile-hidden {
		display: none;
	}

	.wts-pr-section {
		padding: 40px 16px;
	}

	.wts-pr-heading {
		font-size: 26px;
		text-align: left;
	}

	.wts-pr-subtitle {
		text-align: left;
		font-size: 14px;
	}

	.wts-pr-header {
		text-align: left;
	}

	.wts-pr-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.wts-pr-route {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}

	.wts-pr-arrow {
		display: none;
	}

	.wts-pr-origin {
		white-space: normal;
	}

	.wts-pr-row {
		padding: 14px 16px;
	}

	.wts-pr-price {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.wts-pr-heading {
		font-size: 22px;
	}
}
