.sport-card {
	position: relative;
	border-radius: 8px;
	padding: 0.1rem 0.1rem 0.15rem;
	border: 1px solid rgba(255, 255, 255, 0.40);
	background: rgba(255, 255, 255, 0.20);
	box-shadow: 1px 0px 1px 0px rgba(255, 255, 255, 0.22) inset;
	justify-content: normal !important; 
	overflow: hidden;
}

.sport-content {
	display: flex;
	gap: 0.05rem;
	margin-top: 0.1rem;
	-webkit-line-clamp: 3;       /* Limit to 3 lines */
	-webkit-box-orient: vertical;
	height: 100%;
	justify-content: space-between;
}

.sport-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
    width: 100%;
}

.sport-title {
    font-weight: 600;
    overflow: hidden;
	text-overflow: ellipsis;
    white-space: nowrap;
}

.sport-card-b {
	z-index: 2;
	width: 100%;
}

.sport-team {
	display: flex;
	flex-direction: column;
	width: 30%;
	align-items: center;
	text-align: center;
	font-weight: bold;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	word-break: break-word;
}

.sport-time {
	border: 1px solid #DEDDFF;
	border-radius: 4px;
}

.sport-details {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
	align-items: center;
}

.sport-score {
	font-family: 'Antonio', sans-serif;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}

.sport-background {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	inset: 0;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

@media only screen and (min-width: 800px) {
	.sport-card {
		padding: 0.04rem 0.04rem 0.08rem;
	}

	.sport-score {
		font-size: 0.15rem;
	}

	.sport-background {
		filter: blur(15px);
		gap: 1rem;
		padding: 0.13rem 0rem;
	}

	.sport-title {
		font-size: 0.08rem;
	}
	
	.sport-team {
		font-size: 0.06rem;
		margin-top: 0.1rem;
	}
	.sport-team img {
		height: 0.25rem;	
		margin-bottom: 0.05rem;
	}
	
	.sport-time {
		padding: 3px;
		font-size: 0.06rem;
	}
}

@media only screen and (max-width: 799px) {
	.sport-carousel {
		gap: 0.2rem !important;
	}
	
	.sport-background {
		filter: blur(15px);
		gap: 1.1rem;
		padding: 0.5rem 0rem;
	}

	.sport-card-b {
		position: relative;
	}

	.sport-content {
		height: 80%;
	}

	.sport-card {
		padding: 0.2rem 0.2rem 0.35rem;
		width: 3.5rem !important;
	}

	.sport-title {
		font-size: 0.25rem;
		font-weight: 500;
	}
	
	.sport-team {
		font-size: 0.2rem;
		margin-top: 0.2rem;
	}
	.sport-team img {
		height: 0.6rem;	
		margin-bottom: 0.05rem;
	}
	
	.sport-time {
		padding: 0.05rem;
		font-size: 0.16rem;
		white-space: nowrap;
	}
}
