.product-card {
    box-shadow: 2px 2px 15px -1px rgba(37, 37, 37, 0.2);
    border-radius: 20px;
    padding: 15px;
    height: 100%;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.product-img-container {
    text-align: center;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-title{
    color: var(--secondary-color);
    margin: 15px 0px;
}

.product-text {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-header-product-post-date {
    font-size: 12px;
}
