/* =============================================
   03_WIDGETS / w-tradeshed
   Секция «Расписание торгов» (слайдер).
   ============================================= */

.tradeshed__actual {
	background-color: var(--whiteColor);
	border-radius: 20px;
	display: inline-block;
	padding: 10px 20px;
	font-weight: 300;
}
.tradeshed__slider.swiper {
	overflow: visible;
}
.tradeshed__wrapper:not(:last-child) {
	margin-bottom: 20px;
}
.tradeshed__navigation {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}
.tradeshed__pagination {
	font-size: 16px;
	line-height: 125%;
	display: flex;
}

/* ── Responsive ── */

@media (max-width: 74.99875em) {
	.tradeshed__actual {
		font-size: 12px;
		line-height: 125%;
	}
	.tradeshed__actual:not(:last-child) {
		margin-bottom: 10px;
	}
}
@media (max-width: 63.99875em) {
	.tradeshed {
		padding: 40px 0;
	}
	.tradeshed__title:not(:last-child) {
		margin-bottom: 20px;
	}
	.tradeshed__wrapper .tradeshed-item {
		width: 300px;
	}
}
@media (min-width: 63.99875em) {
	.tradeshed {
		padding: 50px 0;
	}
	.tradeshed__title:not(:last-child) {
		margin-bottom: 32px;
	}
	.tradeshed__wrapper .tradeshed-item {
		transition: opacity 0.8s;
		opacity: 0;
	}
	.tradeshed__wrapper .tradeshed-item.swiper-slide-visible {
		opacity: 1;
	}
}
@media (min-width: 74.99875em) {
	.tradeshed {
		padding: 60px 0 40px 0;
	}
	.tradeshed__actual {
		font-size: 14px;
		line-height: 128.571429%;
	}
	.tradeshed__actual:not(:last-child) {
		margin-bottom: 20px;
	}
	.tradeshed__title:not(:last-child) {
		margin-bottom: 40px;
	}
}
@media (min-width: 89.99875em) {
	.tradeshed {
		padding: 60px 0 20px 0;
	}
}
