.product-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-18);
    overflow: hidden;
    box-shadow: 0px 5px 9px 0px #00000040;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.12);
}

.product-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    background-color: #E9E9E9;
    border-radius: var(--border-radius-18);
}

.product-content {
    padding: 35px;
    flex: 1;
}

.product-title {
    font-family: var(--prompt-font);
    font-size: var(--font-24);
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 100%;
    max-width: 60%;
    line-height: 1.2em;
}

.page-id-299 .product-title,
.postid-154 .product-title,
.postid-155 .product-title{
    max-width: 100%;
    /* font-size: var(--font-24); */
}

.learn-more-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.learn-more-btn span{
    color: var(--primary-color);
        font-weight: 400;
}

.learn-more-btn img {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.product-card:hover .learn-more-btn img {
    transform: translateX(4px);
}

.before-description,
.after-description{
    max-width: 750px;
    margin: 0 auto;
    color: var(--light-black-color);
}

.before-description .custom-buttons-wrapper,
.after-description .custom-buttons-wrapper{
    justify-content: center;
}

.product-content .description-text{
    line-height: 133%;
    color: var(--light-black-color);
}

@media screen and (max-width: 768px){
    .product-title,
    .page-id-299 .product-title,
    .postid-154 .product-title,
    .postid-155 .product-title{
        max-width: 100%;
    }

    /* .page-id-299 .product-title,
    .postid-154 .product-title,
    .postid-155 .product-title{
        font-size: 20px;
    } */
    .product-content{
        padding: 25px;
    }
}