.sahar-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sahar-news-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}

.sahar-news-item:hover {
    transform: translateY(-5px);
}

.sahar-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.sahar-content {
    padding: 15px;
}

.sahar-category {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.sahar-title {
    font-size: 18px;
    margin: 0 0 10px;
}

.sahar-title a {
    text-decoration: none;
    color: #111;
}

.sahar-date {
    font-size: 12px;
    color: #777;
}

.sahar-hero-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sahar-hero {
    position: relative;
    overflow: hidden;
}

.sahar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sahar-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.sahar-bottom-item {
    display: flex;
    gap: 15px;
}

.sahar-bottom-item.overlay {
    position: relative;
}

.sahar-thumb img {
    width: 100%;
    display: block;
}

.sahar-price {
    display: block;
    font-weight: bold;
    margin-top: 5px;
}

.sahar-cart-btn {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
}