.news-section-card{
flex-direction: columns;
align-items: unset;
justify-content: center;
gap: 50px;
margin: 0 50px;
}

.news-card{
flex: 0 0 0%;
width: 275px;
min-width: 275px;
height: 375px;
padding: 0;
border-radius: 20px;
border: 1px solid green;
box-shadow: 0 0 5px #70ad47;
transition: 0.3s;
}

.news-card:hover{
box-shadow: 0 0 15px #70ad47;
}

.news-card a{
color: white;
text-decoration: none;
}

.news-img{
height: 150px;
width: 100%;
display: flex;
justify-content: center
}


.news-img img{
border-radius: 20px 20px 0 0;
height: 100%;
}

.news-text-container{
padding: 10px;
}

.news-title{
text-align: center;
font-size: 25px;
color: #61c61ddb;
}

.news-text{
margin-top: 5px;
text-align: center;
}