/* =====================================================
   NEWS INDEX PAGE — news-index.css
   Kultofpop IPTV — kultofpop.com
   ===================================================== */

/* ── Hero Section ──────────────────────────────────── */
.news-hero {
	background: linear-gradient(135deg, rgba(27,49,128,0.9) 0%, rgba(32,37,109,0.95) 60%, rgba(20,28,90,1) 100%);
	padding: 80px 40px 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(253,172,8,0.2);
}

.news-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 20% 50%, rgba(253,172,8,0.08) 0%, transparent 70%),
		radial-gradient(ellipse 60% 50% at 80% 50%, rgba(80,110,255,0.1) 0%, transparent 70%);
	pointer-events: none;
}

.news-hero::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, rgb(253,172,8), transparent);
}

.news-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
}

.news-hero-eyebrow {
	font-family: 'Exo', sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgb(253,172,8);
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.news-hero-title {
	font-family: 'Exo', sans-serif;
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 18px;
	line-height: 1.1;
}

.news-hero-sub {
	font-family: 'Roboto', sans-serif;
	font-size: 1.05rem;
	color: rgb(162,166,196);
	line-height: 1.75;
	margin: 0 0 28px;
}

.news-hero-sub strong {
	color: rgb(253,172,8);
}

.news-hero-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Exo', sans-serif;
	font-size: 0.85rem;
	color: rgb(162,166,196);
}

.news-hero-breadcrumb a {
	color: rgb(162,166,196);
	text-decoration: none;
	transition: color 0.2s ease;
}

.news-hero-breadcrumb a:hover {
	color: rgb(253,172,8);
}

.news-hero-breadcrumb .current {
	color: rgb(253,172,8);
	font-weight: 600;
}

/* ── Category Filter Bar ───────────────────────────── */
.news-filter-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 28px 40px;
	flex-wrap: wrap;
}

.filter-btn {
	font-family: 'Exo', sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding: 9px 22px;
	border-radius: 50px;
	border: 2px solid rgba(162,166,196,0.3);
	background: transparent;
	color: rgb(162,166,196);
	cursor: pointer;
	transition: all 0.25s ease;
}

.filter-btn:hover {
	border-color: rgb(253,172,8);
	color: rgb(253,172,8);
}

.filter-btn.active {
	background: rgb(253,172,8);
	border-color: rgb(253,172,8);
	color: rgb(20,28,90);
}

/* ── Main Content Container ────────────────────────── */
.news-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 20px 40px 60px;
}

.section-label {
	font-family: 'Exo', sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgb(253,172,8);
	margin: 0 0 22px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.section-label::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(253,172,8,0.2);
}

/* ── Featured Article Card ─────────────────────────── */
.featured-article-section {
	margin-bottom: 56px;
	transition: opacity 0.3s ease;
}

.featured-article-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 0;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(253,172,8,0.18);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.featured-article-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 50px rgba(0,0,0,0.4);
	border-color: rgba(253,172,8,0.5);
}

.featured-article-img-wrap {
	position: relative;
	overflow: hidden;
	min-height: 340px;
}

.featured-article-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.featured-article-card:hover .featured-article-img-wrap img {
	transform: scale(1.04);
}

.featured-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	background: rgb(253,172,8);
	color: rgb(20,28,90);
	font-family: 'Exo', sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 50px;
}

.featured-article-content {
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 18px;
}

.featured-article-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.featured-article-title {
	font-family: 'Exo', sans-serif;
	font-size: clamp(1.2rem, 2.4vw, 1.75rem);
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	line-height: 1.25;
}

.featured-article-excerpt {
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	color: rgb(162,166,196);
	line-height: 1.75;
	margin: 0;
}

.featured-article-excerpt strong {
	color: rgb(253,172,8);
}

.featured-article-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.read-more-link {
	font-family: 'Exo', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	color: rgb(253,172,8);
	letter-spacing: 0.04em;
	transition: gap 0.2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.featured-article-card:hover .read-more-link i,
.article-card:hover .read-more-link i {
	transform: translateX(4px);
}

.read-more-link i {
	transition: transform 0.2s ease;
}

.read-time {
	font-family: 'Roboto', sans-serif;
	font-size: 0.82rem;
	color: rgb(120,126,160);
	display: flex;
	align-items: center;
	gap: 5px;
}

/* ── Articles Grid ─────────────────────────────────── */
.articles-grid-section {
	transition: opacity 0.3s ease;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* ── Article Card ──────────────────────────────────── */
.article-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(162,166,196,0.12);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 40px rgba(0,0,0,0.35);
	border-color: rgba(253,172,8,0.4);
}

.article-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.article-card-img-wrap {
	position: relative;
	overflow: hidden;
	height: 200px;
	flex-shrink: 0;
}

.article-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.article-card:hover .article-card-img-wrap img {
	transform: scale(1.06);
}

.article-card-category {
	position: absolute;
	bottom: 12px;
	left: 14px;
	background: rgb(253,172,8);
	color: rgb(20,28,90);
	font-family: 'Exo', sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 50px;
}

.article-card-category.sports-cat {
	background: rgb(40,170,100);
	color: #ffffff;
}

.article-card-body {
	padding: 24px 22px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.article-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.article-date {
	font-family: 'Roboto', sans-serif;
	font-size: 0.8rem;
	color: rgb(120,126,160);
	display: flex;
	align-items: center;
	gap: 5px;
}

.article-card-title {
	font-family: 'Exo', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.article-card:hover .article-card-title {
	color: rgb(253,172,8);
}

.article-card-excerpt {
	font-family: 'Roboto', sans-serif;
	font-size: 0.88rem;
	color: rgb(162,166,196);
	line-height: 1.7;
	margin: 0;
	flex: 1;
	/* Clamp to 3 lines */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ── No Results ────────────────────────────────────── */
.no-results {
	padding: 60px 20px;
	text-align: center;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	color: rgb(162,166,196);
	font-family: 'Roboto', sans-serif;
}

.no-results i {
	font-size: 2.5rem;
	opacity: 0.4;
}

/* ── CTA Banner ────────────────────────────────────── */
.news-cta-banner {
	background: linear-gradient(135deg, rgba(253,172,8,0.12) 0%, rgba(253,172,8,0.04) 100%);
	border-top: 1px solid rgba(253,172,8,0.2);
	border-bottom: 1px solid rgba(253,172,8,0.2);
	padding: 64px 40px;
	text-align: center;
}

.news-cta-inner {
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.news-cta-text h2 {
	font-family: 'Exo', sans-serif;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 10px;
}

.news-cta-text p {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	color: rgb(162,166,196);
	margin: 0;
	line-height: 1.7;
}

.news-cta-text p strong {
	color: rgb(253,172,8);
}

.news-cta-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

/* ── Article meta shared (category badge) ──────────── */
.article-category {
	background: rgba(253,172,8,0.15);
	color: rgb(253,172,8);
	font-family: 'Exo', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 50px;
	border: 1px solid rgba(253,172,8,0.3);
}

.article-date {
	font-family: 'Roboto', sans-serif;
	font-size: 0.82rem;
	color: rgb(120,126,160);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
	.articles-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.news-hero {
		padding: 60px 24px 48px;
	}

	.news-container {
		padding: 20px 24px 48px;
	}

	.featured-article-card {
		grid-template-columns: 1fr;
	}

	.featured-article-img-wrap {
		min-height: 260px;
	}

	.featured-article-content {
		padding: 28px 26px;
	}

	.news-filter-bar {
		padding: 22px 24px;
	}
}

@media (max-width: 640px) {
	.articles-grid {
		grid-template-columns: 1fr;
	}

	.featured-article-content {
		padding: 22px 20px;
		gap: 14px;
	}

	.news-cta-banner {
		padding: 48px 20px;
	}

	.filter-btn {
		font-size: 0.82rem;
		padding: 8px 16px;
	}
}
