#news {
    padding-top: 240px;
}
.news-title {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 70px;
}
.news-container {
    max-width: 1200px;
    margin: 0 auto;
}
.news-product-card {
    margin-bottom: 50px;
}
.news-product-card {
    display: flex;
}
.news-left-column {
    margin-left: 50px;
}
.news-product-img {
    width: 500px;
    border-radius: 10px;
}
.news-product-title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 10px;
}
.news-product-description {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.news-product-price {
    font-size: 26px;
    margin-bottom: 20px;
}
.news-product-in-stock {
    font-size: 26px;
    margin-bottom: 20px;
}
.news-product-btn {
    /* margin-top: 30px; */
    height: 50px;
    width: 190px;
    font-weight: 400;
    font-size: 26px;
    font-family: "Jost", Sans-serif;
    background-color: #FFB646;
    color: #ffffff;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    #news {
        padding-top: 180px;
    }
    .news-product-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .news-left-column {
        margin-left: 20px;
        width: 90%;
    }
    .news-right-column {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    .news-product-img {
        width: 90%;
        border-radius: 10px;
        margin-bottom: 30px;
    }
}