.news-item,
.news-image-link,
.news-image,
.news-text {
  position: static !important;
}

.whats-new {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}


.news-list {
list-style: none;
padding: 0;
}


.news-item {
display: flex;
gap: 15px;
border-bottom: 1px solid #ddd;
padding: 15px 0;
}


.news-item:not(.has-image) {
flex-direction: column;
}


.news-image {
width: 100%;
height: auto;
border-radius: 8px;
object-fit: cover;
}


.news-text time {
font-size: 0.9rem;
color: #666;
margin-right: 10px;
}


.category {
font-size: 0.8rem;
padding: 2px 8px;
border-radius: 4px;
}


.category.info { background: #e3f2fd; color: #1565c0; }
.category.update { background: #e8f5e9; color: #2e7d32; }
.category.plan { background: #ffb5b5; color: #b70000; }
.category.event { background: #ffff88; color: #a4a400; }


.title {
margin: 6px 0;
font-weight: bold;
}


.body {
font-size: 0.9rem;
color: #555;
}


@media (max-width: 600px) {
.news-item {
flex-direction: column;
}


.news-image {
width: 100%;
}
}