.news {
    text-align: center;
    margin-bottom: 50px;
}

.new-content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 20px;
}

@media (max-width: 768px) {
    .new-content-wrapper {
        display: block !important;
    }

    .product-image{
        display: block;
    }
}





.right-images {


    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    justify-content: center;
}

.news-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.news-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card__image {

    height: 100%;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    transition: transform 0.3s ease;
    transform: translateY(100%);
}

.news-card:hover .card__overlay {
    transform: translateY(-10%);
}

.card__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
    text-decoration: none;
}

.card__meta {
    font-size: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.card__meta li {
    display: flex;
    align-items: center;
}

.card__meta li i {
    margin-right: 5px;
}