/*--------------------- OVERWRITES -----------------------*/
.wc-pao-legend {
	font-weight: bold;
    font-size: 18px;
    padding-top: 1rem;
}

/*--------------------- BODY -----------------------*/
/*------- Headings -------*/
h1, h1.twt-subtitle {
	font-size: 54px;
	font-weight: 600;
}

h2, h2.twt-subtitle {
	font-size: 42px;
	font-weight: 600;
}

h3, h3.twt-subtitle {
	font-size: 32px;
	font-weight: 500;
}

h4, h4.twt-subtitle {
	font-size: 24px;
	font-weight: 500;
}

/*--------------------- COMPONENTS -----------------------*/
/*------- TWT Button -------*/
.twt-btn-container {
	display: flex;
	justify-content: space-around;
	gap: 15px;
}

.twt-btn {
	font-size: 16px !important;
	padding: 5px 10px;
	background-color: #d90016;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	display: inline-block;
	border: 2px solid transparent;
	transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
	width: 200px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 600;
}

.twt-btn:hover {
	background-color: #fff;
	color: #d90016;
	border-color: #d90016;
}

@media (max-width: 680px) {
	.twt-btn-container {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem !important;
	}

	.twt-btn {
		width: 100%; /* Buttons will take up full width in column layout */
		margin-bottom: 10px; /* Space between buttons */
	}
}

/*------- Promotion Card Top -------*/
.promotion-card-top {
    border-left: 4px solid #d90016;
    padding: 26px 20px;
    background-color: #ffffff;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.2);
}

/*------- Slider -------*/
.slider-container {
	width: 100%;
	overflow: hidden;
	margin: auto;
	position: relative;
}

.slider-track {
	display: flex;
	width: calc(200px * 18); /* 9 items x 2 (duplicated for looping) */
	animation: scroll 50s linear infinite;
}

.slider-item {
	flex: 0 0 300px;
	height: auto;
	margin: 10px;
	padding: 20px;
	background: #f8f8f8;
	border-radius: 10px;
	display: flex;
	justify-content: space-evenly;
	flex-direction: column;
	border: 1px solid #d8d8d8;
}

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}


/*--------------------- MOBILE -----------------------*/
/*------- Text -------*/
@media (max-width: 680px) {
	.mobile-center-text {
		justify-content: center;
		text-align: center;	
	}	
}
