
.vnews-container {
	width: 100%;
	height: 824px;
	background-color: #ffffff;
	border-radius: 8px;
	/* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e0e0e0;
}

/* --- HEADER --- */
.vnews-header {
	background-color: #fff;
	padding: 12px 20px;
	border-bottom: 2px solid #f0f0f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	z-index: 10;
}

.vnews-header h3 {
	margin: 0;
	font-size: 16px;
	color: #222;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}


/* --- AREA SCORREVOLE --- */
.vnews-scroll-area {
	flex-grow: 1;
	overflow-y: auto;
	background-color: #fff;
}

/* Personalizzazione Scrollbar (Chrome, Edge, Safari) */
.vnews-scroll-area::-webkit-scrollbar {
	width: 8px;
}

.vnews-scroll-area::-webkit-scrollbar-track {
	background: #f9f9f9;
}

.vnews-scroll-area::-webkit-scrollbar-thumb {
	background: #cbd5e0;
	border-radius: 4px;
}

.vnews-scroll-area::-webkit-scrollbar-thumb:hover {
	background: #a0aec0;
}


.vnews-item {
	display: flex;
	align-items: flex-start;
	padding: 15px;
	border-bottom: 1px solid #eee;
	transition: background-color 0.2s ease;
	text-decoration: none;
	color: inherit;
}

.vnews-item:last-child {
	border-bottom: none;
}

.vnews-item:hover {
	background-color: #fcfcfc;
}

/* --- IMMAGINE A SINISTRA --- */
.vnews-img-container {
	width: 100px;     /* Larghezza fissa per l'immagine */
	height: 70px;     /* Altezza fissa */
	flex-shrink: 0;   /* Impedisce all'immagine di schiacciarsi */
	margin-right: 15px;
	border-radius: 6px;
	overflow: hidden;
	background-color: #ddd;
}

.vnews-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Taglia l'immagine per riempire il box senza deformarsi */
	transition: transform 0.3s ease;
}

.vnews-item:hover .vnews-img-container img {
	transform: scale(1.05); /* Leggero zoom all'hover */
}

/* --- TESTO A DESTRA --- */
.vnews-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.vnews-date {
	font-size: 11px;
	color: #999;
	margin-bottom: 4px;
	font-weight: 600;
}

.vnews-title {
	font-size: 15px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 5px 0;
	line-height: 1.3;
	transition: color 0.2s;
}

.vnews-item:hover .vnews-title {
	color: #d32f2f; /* Titolo diventa rosso all'hover */
}

.vnews-excerpt {
	font-size: 13px;
	color: #666;
	margin: 0;
	line-height: 1.4;
	/* Tronca il testo dopo 2 righe (effetto moderno) */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}