.news-detail {
	margin-bottom: 50px;
}

.full-width-image {
	width: 100%;
	height: auto;
	max-height: 440px;
	object-fit: cover;
	border-radius: 2px;
	margin-bottom: 20px;

}

.noticias-container {
	position: inherit !important;
}

/* News Detail */
.news-detail {
	text-align: left;
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
}

.news-detail .date {
	margin-bottom: 0;
}

/* Title and Date Styles */
.news-detail h1 {
	font-size: 2.5rem;
	margin: 10px 0 10px 0;
	font-weight: bold;
}

.news-detail h2 {
	font-size: 1.5rem;

}

.news-detail h5 {
	font-size: 1.2rem;

}

.text-news {
	white-space: pre-line;
	font-weight: normal;
}


/* Responsive Styles */
@media (max-width: 768px) {


	.news-detail h1 {
		font-size: 2rem;
		/* Smaller title */
	}

	.news-detail h2 {
		font-size: 1.2rem;
		/* Smaller date */
	}

	.news-detail h5 {
		font-size: 1rem;
		/* Smaller text */
	}

	.news-row {
		flex-direction: column;
	}
}