.search-container {
    display: flex;
    margin-bottom: 30px;
    margin-top: 30px;
}
#searchInput {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #111;
    border-radius: 4px;
    margin-right: 10px;
}
#searchButton, #clearButton {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#searchButton {
    background-color: #bd850d;
    color: white;
    margin-right: 10px;
}
#clearButton {
    background-color: #0f9c89;
    color: white;
}
.news-item {
    background-color: white;
    border: 1px solid #111;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
}
.news-image {
    width: 294px;
    height: 240px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
}
.news-content-wrapper {
    flex-grow: 1;
}
.news-date {
    color: #111;
    font-size: 0.9em;
    margin-bottom: 10px;
}
.news-title {
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}
.news-content {
    color: #111;
}
.hidden {
    display: none;
}
@media (max-width: 600px) {
    .news-item {
        flex-direction: column;
    }
    .news-image {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 10px;
    }
}