/* ===== PÁGINA DE DETALLE DE NOTICIA ===== */
.article-container {
	max-width: 860px;
}

.article-detail {
	background: #fff;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.article-badges .badge {
	font-size: 0.8rem;
	font-weight: 500;
	margin-right: 0.5rem;
}

.badge-topic {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
}

.article-title {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.25;
	margin: 0.6rem 0 0.8rem 0;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	color: #888;
	font-size: 0.85rem;
	margin-bottom: 1.2rem;
}

.article-meta .meta-item i {
	margin-right: 0.3rem;
	color: #2193b0;
}

.article-image {
	width: 100%;
	max-height: 460px;
	object-fit: cover;
	border-radius: 14px;
	margin-bottom: 1.4rem;
}

.article-body {
	font-size: 1.08rem;
	line-height: 1.8;
	color: #333;
}

.article-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.8rem;
	padding-top: 1.4rem;
	border-top: 1px solid #eee;
}

.btn-source {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #0d1b2a 0%, #2193b0 100%);
	color: #fff;
	padding: 0.7rem 1.4rem;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn-source:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(33,147,176,0.35);
}

.share-buttons {
	display: flex;
	gap: 0.6rem;
}

.btn-share-net {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	color: #fff;
	font-size: 1.1rem;
	text-decoration: none;
	transition: transform 0.2s, opacity 0.2s;
}

.btn-share-net:hover {
	transform: translateY(-2px);
	opacity: 0.9;
	color: #fff;
}

.btn-whatsapp { background: #25d366; }
.btn-x { background: #14171a; }
.btn-facebook { background: #1877f2; }
.btn-copy { background: #6c757d; }

/* ===== NOTICIAS RELACIONADAS ===== */
.related-section {
	margin-top: 2.5rem;
}

.related-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0,0,0,0.25);
	margin-bottom: 1.2rem;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.2rem;
}

.related-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 6px 24px rgba(0,0,0,0.12);
	transition: transform 0.2s, box-shadow 0.2s;
}

.related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.related-image {
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.related-content {
	padding: 0.9rem 1rem 1.1rem 1rem;
}

.related-meta {
	font-size: 0.75rem;
	color: #888;
	margin-bottom: 0.4rem;
}

.related-headline {
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.4;
	color: #1a1a2e;
}

@media (max-width: 576px) {
	.article-detail {
		padding: 1.2rem;
	}

	.article-title {
		font-size: 1.5rem;
	}

	.article-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-source {
		justify-content: center;
	}

	.share-buttons {
		justify-content: center;
	}
}
