/* ============ Comune, toate template-urile ============ */
.fna-news-grid {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.fna-empty {
	color: #888;
	font-style: italic;
	font-size: 2rem;
}

.fna-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 20px;
	padding-top: 20px;
	flex-wrap: wrap;
}

.fna-pagination-link {
	display: inline-block;
	padding: 10px 18px;
	background: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	transition: background 0.2s ease;
}

.fna-pagination-link:hover {
	background: #333;
	color: #fff;
}

.fna-pagination-disabled {
	background: #ddd;
	color: #999;
	cursor: default;
}

.fna-pagination-status {
	font-size: 0.95rem;
	color: #666;
}

@media (max-width: 500px) {
	.fna-pagination {
		justify-content: center;
		text-align: center;
	}
	.fna-pagination-status {
		order: 3;
		width: 100%;
	}
}

/* ============ TEMPLATE: SPORT (verde, fonturi mari, bold) ============ */
.fna-template-sport {
	gap: 50px;
}

.fna-template-sport .fna-news-item {
	width: 100%;
	border-bottom: 3px solid #1a7a3c;
	padding-bottom: 50px;
}

.fna-template-sport .fna-news-title {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 20px;
	color: #111;
}

.fna-template-sport .fna-news-date {
	font-size: 1.9rem;
	font-weight: 700;
	color: #1a7a3c;
	margin-bottom: 28px;
	display: block;
}

.fna-template-sport .fna-news-thumb {
	width: 100%;
	margin-bottom: 28px;
}

.fna-template-sport .fna-news-thumb img {
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	display: block;
	border-radius: 6px;
	border: 3px solid #1a7a3c;
}

.fna-template-sport .fna-news-excerpt {
	font-size: 2.3rem;
	color: #333;
	line-height: 1.65;
	margin: 0 0 28px;
}

.fna-template-sport .fna-news-more {
	display: inline-block;
	padding: 16px 32px;
	background: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 2rem;
	font-weight: 700;
	transition: background 0.2s ease;
}

.fna-template-sport .fna-news-more:hover {
	background: #222;
	color: #fff;
}

/* SPORT pe mobil: fonturile mari (gandite pentru desktop) devin ilizibile pe ecran ingust - le reducem */
@media (max-width: 600px) {
	.fna-template-sport .fna-news-title {
		font-size: 1.8rem;
	}
	.fna-template-sport .fna-news-date {
		font-size: 1rem;
	}
	.fna-template-sport .fna-news-excerpt {
		font-size: 1.05rem;
	}
	.fna-template-sport .fna-news-more {
		font-size: 1rem;
		padding: 12px 24px;
	}
}

/* ============ TEMPLATE: NEWS (clasic ziar, compact, imagine mica langa text) ============ */
.fna-template-news {
	gap: 28px;
}

.fna-template-news .fna-news-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
	border-bottom: 1px solid #ddd;
	padding-bottom: 28px;
}

.fna-template-news .fna-news-thumb {
	flex: 0 0 220px;
	max-width: 220px;
}

.fna-template-news .fna-news-thumb img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	display: block;
	border-radius: 3px;
}

.fna-template-news .fna-news-body {
	flex: 1;
	min-width: 0;
}

.fna-template-news .fna-news-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 6px;
	color: #1a1a1a;
}

.fna-template-news .fna-news-date {
	font-size: 0.8rem;
	color: #999;
	margin-bottom: 8px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.fna-template-news .fna-news-excerpt {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.95rem;
	color: #444;
	line-height: 1.55;
	margin: 0 0 10px;
}

.fna-template-news .fna-news-more {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	color: #000;
	text-decoration: underline;
}

.fna-template-news .fna-news-more:hover {
	color: #333;
}

@media (max-width: 600px) {
	.fna-template-news .fna-news-item {
		flex-direction: column;
	}
	.fna-template-news .fna-news-thumb {
		max-width: 100%;
		flex: none;
	}
}

/* ============ TEMPLATE: MUSIC (poster/revista, imagine mare cu titlu suprapus) ============ */
.fna-template-music {
	gap: 45px;
}

.fna-template-music .fna-news-item {
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	background: #111;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.fna-template-music .fna-news-thumb {
	position: relative;
	width: 100%;
}

.fna-template-music .fna-news-thumb img {
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
	display: block;
}

.fna-template-music .fna-news-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px 28px 22px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 100%);
}

.fna-template-music .fna-news-overlay .fna-news-title {
	font-size: 2.1rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 10px;
	color: #fff;
}

.fna-template-music .fna-news-overlay .fna-news-date {
	font-size: 1rem;
	font-weight: 600;
	color: #e879f9;
	margin: 0;
	display: block;
}

.fna-template-music .fna-news-title-noimg {
	font-size: 2.1rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 24px 28px 10px;
	color: #fff;
}

.fna-template-music .fna-news-title-noimg + .fna-news-date {
	margin: 0 28px 10px;
	color: #e879f9;
	font-size: 1rem;
	font-weight: 600;
	display: block;
}

.fna-template-music .fna-news-body {
	padding: 24px 28px 28px;
}

.fna-template-music .fna-news-excerpt {
	font-size: 1.1rem;
	color: #e5e5e5;
	line-height: 1.65;
	margin: 0 0 20px;
}

.fna-template-music .fna-news-more {
	display: inline-block;
	padding: 12px 28px;
	background: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 700;
	transition: opacity 0.2s ease;
}

.fna-template-music .fna-news-more:hover {
	opacity: 0.8;
	color: #fff;
}
