/* News Section Styles */
.news-container {
    margin-top: 2em;
}

.news-item {
    padding: 1em;
    margin: 0;
    background-color: #e8e8e8 !important; /* grey */
}

.news-item.news-item-alt {
    background-color: white !important;
}

.news-content {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.news-date {
    font-weight: bold;
    margin-right: 0.5em;
    flex-shrink: 0;
}

.news-text {
    flex: 1;
}

.news-text img {
    float: right;
    margin-left: 1em;
    max-width: 200px;
    height: auto;
}

.news-text p {
    margin: 0;
}

.news-text p:not(:last-child) {
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    .news-content {
        flex-direction: column;
    }
    
    .news-date {
        margin-bottom: 0.5em;
    }
    
    .news-text img {
        float: none;
        display: block;
        margin: 1em 0;
        max-width: 100%;
    }
}