.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.news-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    transition: box-shadow 0.2s;
    min-height: 360px;
    text-align: center;
}
.news-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.news-thumb img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
    height: 160px;
    object-fit: cover;
}
.news-item h3 {
    margin: 10px 0;
    font-size: 1.1em;
    flex-grow: 1;
}
.news-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #1F3A93;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}
.news-button:hover {
    background-color: #163074;
}


.news-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 10px;
}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.excerpt {
    font-size: 0.95em;
    color: #555;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 5px 0 10px;
}
