.rmnf-container {
	padding: 1rem;
	font-family: 'Roboto', sans-serif;
}

.rmnf-news-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-height: 600px;
	overflow-y: auto;
	padding-right: 10px;
}

/* Scrollbar styling */
.rmnf-news-list::-webkit-scrollbar {
	width: 6px;
}
.rmnf-news-list::-webkit-scrollbar-track {
	background: #0f172a; 
}
.rmnf-news-list::-webkit-scrollbar-thumb {
	background: #334155; 
	border-radius: 3px;
}
.rmnf-news-list::-webkit-scrollbar-thumb:hover {
	background: #475569; 
}

.rmnf-news-item {
	display: flex;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.rmnf-news-thumbnail {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 6px;
	overflow: hidden;
}

.rmnf-news-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rmnf-placeholder-thumb {
	width: 100%;
	height: 100%;
	background: #1e293b;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rmnf-news-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.rmnf-news-content h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1rem;
	line-height: 1.3;
}

.rmnf-news-content h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.rmnf-excerpt {
	font-size: 0.85rem;
	color: #94a3b8;
	margin-bottom: 0.5rem;
}

.rmnf-read-more {
	font-size: 0.8rem;
	text-decoration: none;
	align-self: flex-start;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
}

.rmnf-read-more:hover {
	opacity: 0.8;
}

.rmnf-no-news {
    color: #94a3b8;
    text-align: center;
    padding: 2rem;
}
