.news-card {
    display: flex;
    width: 100%;
    max-width: 100%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(34,67,88,0.10);
    border-radius: 14px;
    margin-bottom: 24px;
    min-height: 160px;
    height: 180px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.news-card:hover {
    box-shadow: 0 6px 20px rgba(34,67,88,0.18);
}

.news-card-image {
    width: 25%;
    min-width: 120px;
    background: #f1f1f1;
    display: block;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: top left;
}

.news-card-content {
    flex: 1;
    padding: 24px 20px 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-card-title {
    font-size: 1.3rem;
    color: var(--mv-blue-dark);
    margin: 0 0 7px 0;
    font-weight: bold;
}

.news-card-text {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

@media (max-width: 650px) {
    .news-card {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }
    .news-card-image {
        width: 100%;
        height: 160px;
    }
    .news-card-content {
        padding: 16px 12px;
    }
}
