.news-widget-container {
	margin-left:1.5rem;
	margin-top:16px;
    display: flex;
    flex-direction: column;
}

/* Grid layout when in 'columns' mode */
.news-widget-container.columns-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 1em; /* Adjust spacing between items */
	margin-left: 0px;
}

.news-wrapper {
	display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 1em;
	margin-bottom: 1.5em;
}

/* When in column mode, remove the bottom margin to keep them aligned */
.news-wrapper-columns {
    margin-bottom: 0;
}

.news-widget-heading {
	display: flex;
	flex-direction:row;
	align-items: center;
	gap: 10px; 
	justify-content: flex-start;
	padding-bottom: 10px;
}
.news-widget-heading i {
	font-size: 22px; 
}
.news-widget-heading h3 {
	margin: 0;
}

.news-widget-item {
	padding-top: 8px;
    padding-bottom: 6px;
}

.news-wrapper .news-widget-item:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}

.news-widget-content-row {
	
}

.news-widget-title {
	text-decoration: none;
    color: black !important;
	font-weight: 600;
}

.news-widget-meta-row {
	margin-top: 8px;
}

.news-widget-teams {
	font-size: 12px;
    color: #6e6e6e;
}

.widget-news-lang {
	
}

.widget-news-flag-img {
	
}

.widget-news-card-site {
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5em;
}

.widget-news-outlet-link {
	display: flex;
    align-items: center;
    text-decoration: none;
    color: black !important;
    margin-right: 0.5em;
	font-size: 12px !important;
}

.widget-news-card-date {
	margin-left: auto;
    font-size: 10px !important;
    font-weight: 300;
}


@media (max-width: 768px) { 
	.news-widget-container {
		margin-left:0px;
	}
	.news-widget-container.columns-layout {
        display: flex;
        flex-direction: column;
    }
}