/**
 * NIYAPRESS: Sports Grid (1 featured + 4 small)
 * Blue theme for رياضة - matching the design image
 */

/* Section Container */
.np-sports-grid {
	background: #fff;
	padding: 30px 0;
	margin: 30px 0;
}

/* Section Header with Blue Bar */
.np-sports-header {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	padding: 15px 0;
	margin-bottom: 25px;
	text-align: center;
	border-radius: 0;
}

.np-sports-title {
	margin: 0;
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	font-family: 'Tajawal', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Main Layout: Small Grid (Left) + Featured (Right) */
.np-sports-layout {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 20px;
	direction: rtl;
}

/* Small Articles Grid (2x2) - Left Side */
.np-sports-small-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.np-sports-small-card {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.np-sports-small-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.np-sports-small-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.np-sports-small-thumb {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: #000;
}

.np-sports-small-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.np-sports-small-card:hover .np-sports-small-img {
	transform: scale(1.1);
}

.np-sports-small-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
	padding: 15px 12px;
	direction: rtl;
	text-align: right;
}

.np-sports-small-date {
	display: block;
	font-size: 11px;
	color: #fff;
	margin-bottom: 5px;
	opacity: 0.9;
}

.np-sports-small-title {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
	font-family: 'Tajawal', sans-serif;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Featured Article - Right Side */
.np-sports-featured {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.np-sports-featured:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.np-sports-featured-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.np-sports-featured-thumb {
	position: relative;
	width: 100%;
	height: 385px;
	overflow: hidden;
	background: #000;
}

.np-sports-featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.np-sports-featured:hover .np-sports-featured-img {
	transform: scale(1.08);
}

.np-sports-featured-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
	padding: 30px 25px;
	direction: rtl;
	text-align: right;
}

.np-sports-featured-date {
	display: block;
	font-size: 13px;
	color: #fff;
	margin-bottom: 10px;
	opacity: 0.9;
}

.np-sports-featured-title {
	margin: 0;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.4;
	color: #fff;
	font-family: 'Tajawal', sans-serif;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.np-sports-featured-thumb {
		height: 350px;
	}
	
	.np-sports-small-thumb {
		height: 160px;
	}
	
	.np-sports-featured-title {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.np-sports-header {
		padding: 12px 0;
		margin-bottom: 20px;
	}
	
	.np-sports-title {
		font-size: 24px;
	}
	
	.np-sports-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.np-sports-small-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.np-sports-featured-thumb {
		height: 300px;
	}
	
	.np-sports-small-thumb {
		height: 150px;
	}
	
	.np-sports-featured-title {
		font-size: 20px;
	}
	
	.np-sports-small-title {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.np-sports-grid {
		padding: 20px 0;
		margin: 20px 0;
	}
	
	.np-sports-small-grid {
		grid-template-columns: 1fr;
	}
	
	.np-sports-featured-thumb {
		height: 250px;
	}
	
	.np-sports-small-thumb {
		height: 180px;
	}
	
	.np-sports-featured-title {
		font-size: 18px;
	}
	
	.np-sports-small-title {
		font-size: 14px;
	}
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.np-sports-small-card,
.np-sports-featured {
	animation: fadeInUp 0.6s ease-out;
}

.np-sports-small-card:nth-child(2) {
	animation-delay: 0.1s;
}

.np-sports-small-card:nth-child(3) {
	animation-delay: 0.2s;
}

.np-sports-small-card:nth-child(4) {
	animation-delay: 0.3s;
}
