#product_highlight_container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#product_highlight {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1000px;
    color: var(--color-primary);
    font-size: 2vh;
    margin: 20px;
    height: 35vh;
}

#product_highlight_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 20px;
}

button {
    border: 1px solid var(--color-primary);
    padding: 10px;
    border-radius: 5px;
    background-color: var(--color-dark);
    margin-right: 20px;
    margin-top: 20px;
}

button:hover {
    background-color: var(--color-primary);
    color: var(--color-light)
}

#product_highlight_title {
    font-weight: bolder;
    margin-bottom: 50px;
}

#product_highlight_descr {
    font-size: 1.5vh;
}

#product_highlight_img {
    text-align: center;
}

#product_highlight_img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.5));
}

#product_highlight_links {
    text-align: center;
}

#news {
    margin: 0;
    height: 20vh;
    background-color: var(--color-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#news h2{
}

#news_cards_container {
    height: 15vh;
    width: 40vw;
    justify-content: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-card {
    width: 20vw;
    height: 80%;
    margin: 10px;
    text-align: center;
    position: relative;
    background-color: var(--color-dark);
    /* box-shadow: 3px 3px 10px var(--color-charcoal); */
    border: 1px solid var(--color-charcoal);
    border-radius: 5px;
}

.news-card:hover {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);

}

.news-card-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    text-align: center;
}

.news-card-text {
    font-size: large;

    color: var(--color-primary);
    background-color: var(--color-dark);
    /* border-top: 1px solid var(--color-primary); */
    /* padding: 20px; */
    box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.2);
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    padding: 5px;
    border-radius: 0px 0px 5px 5px;

}

#cotw{
    margin-top: 20px;
    width: 100%;
    height: 18vh;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

#cotw_img{
    height: 100%;
    margin-right: 50px;
}

#cotw_img img{
    height: 100%;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.5));
}

#cotw_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

#cotw_text h3{
    margin-bottom: 50px;
}

#cotw_text{
    color: var(--color-primary)
}

@media (max-width: 800px) {
    #product_highlight_descr {
        display: none;
    }

    #news_cards_container>*:not(:first-child) {
        display: none;
    }

    .news-card {
        width: 50vw;
    }


}