
.news_container {
    display: grid;
    gap: 20px;
}

.highlight img{
width: 100%;
border-radius: 12px;
}

.news_container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 0px;
    font-family: 'Roboto', sans-serif;
}

.items {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 16px;
    transition: all 0.3s ease-in-out;
}
	
.news-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	margin-top: 30px;
}

.news-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: auto;
    display: block;
}

.news-content {
    padding: 0px;
}

.news-title {
    font-weight: bold;
    font-size: 1.75rem;
    margin-bottom: 5px;
}

.news-meta {

    color: #777;
    margin-top: 4px;
}

.news-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #ddd, #aaa, #ddd);
    margin: 20px 0px 20px 0px;
}
.h2{
	margin-bottom: 0px;	
}