﻿/* Add here all your CSS customizations */


.news-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.news-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    margin-left: 10px;
}

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 🔥 مهم: نکشیده */
    }

.news-content {
    flex: 1;
}

.news-date {
    font-size: 12px;
    color: #888;
}

.news-title {
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.4;
}

    .news-title a {
        color: #333;
        text-decoration: none;
    }

        .news-title a:hover {
            color: #007bff;
        }

.news-summary {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
