/**
 * NIYAPRESS: Exclusive Grid (3 horizontal articles)
 * Orange/Gold theme for حصري - matching the design image
 */

/* Section Container */
.np-exclusive-grid {
	background: linear-gradient(135deg, #f9a825 0%, #ff9800 100%);
	padding: 40px 0;
	margin: 30px 0;
}

/* Section Header with centered badge */
.np-exclusive-header {
	text-align: center;
	margin-bottom: 30px;
	direction: rtl;
}

.np-exclusive-title {
	margin: 0;
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	font-family: 'Tajawal', sans-serif;
	background: rgba(0,0,0,0.25);
	display: inline-block;
	padding: 10px 40px;
	border-radius: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Single Row - 3 Articles */
.np-exclusive-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.np-exclusive-card {
	background: transparent;
	border-radius: 0;
	overflow: visible;
	transition: transform 0.3s ease;
}

.np-exclusive-card:hover {
	transform: translateY(-5px);
}

.np-exclusive-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.np-exclusive-thumb {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #fff;
	border-radius: 0;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.np-exclusive-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.np-exclusive-card:hover .np-exclusive-img {
	transform: scale(1.08);
}

.np-exclusive-content {
	padding: 0;
	background: transparent;
	direction: rtl;
	text-align: center;
}

.np-exclusive-card-title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	font-family: 'Tajawal', sans-serif;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.np-exclusive-card:hover .np-exclusive-card-title {
	text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.np-exclusive-thumb {
		height: 180px;
	}
	
	.np-exclusive-card-title {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.np-exclusive-grid {
		padding: 30px 0;
	}
	
	.np-exclusive-title {
		font-size: 24px;
		padding: 8px 30px;
	}
	
	.np-exclusive-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.np-exclusive-thumb {
		height: 200px;
	}
	
	.np-exclusive-card-title {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.np-exclusive-grid {
		padding: 25px 0;
		margin: 20px 0;
	}
	
	.np-exclusive-thumb {
		height: 180px;
	}
	
	.np-exclusive-card-title {
		font-size: 15px;
	}
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.np-exclusive-card {
	animation: fadeInUp 0.6s ease-out;
}

.np-exclusive-card:nth-child(2) {
	animation-delay: 0.15s;
}

.np-exclusive-card:nth-child(3) {
	animation-delay: 0.3s;
}

