/* Pridecarts - Lineup Carousel widget styles.
   Colors/spacing/typography are mostly driven live from the Elementor Style tab
   via selectors; these are just safe fallbacks. */

.pc-lineup-wrap {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
}
.pc-lineup-wrap * {
	box-sizing: border-box;
}

.pc-lineup-eyebrow {
	color: #E2452B;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.pc-lineup-heading {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 18px;
}
.pc-lineup-black {
	color: #111111;
	display: block;
}
.pc-lineup-red {
	color: #E2452B;
	display: block;
}

.pc-lineup-desc {
	max-width: 640px;
	color: #6b6b6b;
	font-size: 17px;
	line-height: 1.6;
	margin: 0 0 40px;
}

.pc-lineup-carousel-wrap {
	position: relative;
	overflow: hidden;
}

.pc-lineup-track {
	display: flex;
	gap: 20px;
	transition: transform 0.5s ease;
	will-change: transform;
}

.pc-lineup-card {
	position: relative;
	flex: 0 0 calc((100% - (var(--pc-lu-cols, 3) - 1) * var(--pc-lu-gap, 20px)) / var(--pc-lu-cols, 3));
	aspect-ratio: 4 / 5;
	border-radius: 10px;
	overflow: hidden;
	background: #222;
}
.pc-lineup-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pc-lineup-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0) 68%);
}
.pc-lineup-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px;
}
.pc-lineup-badge {
	display: inline-block;
	background: #E2452B;
	color: #ffffff;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 3px;
	margin-bottom: 12px;
}
.pc-lineup-title {
	color: #ffffff;
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 10px;
	line-height: 1.25;
}
.pc-lineup-text {
	color: rgba(255, 255, 255, 0.85);
	font-size: 13.5px;
	line-height: 1.55;
	margin: 0 0 14px;
	max-width: 36ch;
}
.pc-lineup-explore {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #E2452B;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
}
.pc-lineup-explore svg {
	width: 14px;
	height: 14px;
}
.pc-lineup-explore:hover {
	text-decoration: underline;
}

.pc-lineup-nav {
	all: unset;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border-style: solid;
	border-width: 0;
	border-color: transparent;
	background: rgba(20, 20, 20, 0.55);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pc-lineup-nav:hover {
	background: rgba(20, 20, 20, 0.8);
}
.pc-lineup-prev {
	left: 14px;
}
.pc-lineup-next {
	right: 14px;
}
.pc-lineup-nav i,
.pc-lineup-nav svg {
	width: 18px;
	height: 18px;
	font-size: 18px;
	line-height: 1;
}

.pc-lineup-note {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: 40px;
}
.pc-lineup-note svg {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	color: #E2452B;
	margin-top: 2px;
}
.pc-lineup-note p {
	margin: 0;
	color: #6b6b6b;
	font-size: 14px;
	line-height: 1.6;
}

@media (max-width: 600px) {
	.pc-lineup-nav {
		width: 38px;
		height: 38px;
	}
}
