.project-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product-item {
    /* border: 1px solid black; */
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;

}

.product-item h3 {
    font-weight: bold;
    font-size: 15px;
    color: black;
    /* make sure the text gets cut off after 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.product-item h4 {
    color: #b8272d;
    font-weight: bold;
}

.related-project {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 5px 0;
    margin-bottom: 35px;
    gap: 5px;
}

.product-item img {
    height: 125px;
    width: 100%;
    object-fit: cover;
}

.related-project .img-holder img {
    width: 100px;
    height: 65px;
    object-fit: cover;
}

.add-to-cart-btn {
    padding: 5px 10px;
    background-color: #ffa437;
    /* font-weight: bold; */
    /* this a should be 100% wide */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    color: white;
    line-height: 15px;
    border-radius: 3px;
}

.add-to-cart-btn:hover {
    background-color: #ff981c;
    color: white;
}

.add-to-cart-btn:focus {
    color: white;
}

/* transition effect slow */
.add-to-cart-btn {
    transition: background-color 0.3s ease;
}