/* News Section Styles with 'novedad_' prefix */
			#novedades {
				padding: 60px 0;
				background-color: #f9f9f9;
			}
			.novedad_container {
				max-width: 1200px;
				margin: 0 auto;
				padding: 0 15px;
			}
			.novedad_title_section {
				text-align: center;
				margin-bottom: 40px;
			}
			.novedad_title_section h2 {
				font-size: 32px;
				font-weight: bold;
				text-transform: uppercase;
				margin-bottom: 20px;
				padding-bottom: 20px;
				position: relative;
				color: #111;
			}
			.novedad_title_section h2::before {
				content: '';
				position: absolute;
				display: block;
				width: 120px;
				height: 1px;
				background: #ddd;
				bottom: 1px;
				left: calc(50% - 60px);
			}
			.novedad_title_section h2::after {
				content: '';
				position: absolute;
				display: block;
				width: 40px;
				height: 3px;
				background: #8d9700;
				bottom: 0;
				left: calc(50% - 20px);
			}
			.novedad_list {
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
				gap: 25px;
			}
			.novedad_card {
				flex: 1 1 300px;
				max-width: 300px;
				background: #fff;
				border-radius: 8px;
				overflow: hidden;
				box-shadow: 0 4px 15px rgba(0,0,0,0.1);
				transition: transform 0.3s ease, box-shadow 0.3s ease;
				position: relative;
				cursor: pointer;
				text-decoration: none;
				display: block;
			}
			.novedad_card:hover {
				transform: translateY(-5px);
				box-shadow: 0 8px 25px rgba(0,0,0,0.2);
			}
			.novedad_img_container {
				position: relative;
				width: 100%;
				line-height: 0;
			}
			.novedad_img {
				width: 100%;
				height: auto;
				display: block;
			}
			.novedad_overlay {
				position: absolute;
				bottom: 0;
				left: 0;
				right: 0;
				background: linear-gradient(transparent, rgba(0,0,0,0.8));
				padding: 20px 15px 15px;
				transition: background 0.3s ease;
			}
			.novedad_card:hover .novedad_overlay {
				background: linear-gradient(transparent, rgba(141, 151, 0, 0.9));
			}
			.novedad_text {
				color: #fff;
				font-size: 18px;
				font-weight: 600;
				margin: 0;
				text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
			}
			@media (max-width: 600px) {
				.novedad_card {
					max-width: 100%;
				}
			}