/* ========================================
   REVIEW PAGE
======================================== */

.review-page{

    max-width:1400px;

    margin:auto;

    padding:30px 20px 60px;
}

/* ========================================
   HEADER
======================================== */

.review-header{

    text-align:center;

    margin-bottom:60px;
}

.review-header h1{

    font-size:52px;

    color:#ef3d7a;

    margin-bottom:10px;
}

.review-header p{

    color:#777;

    font-size:18px;
}

/* ========================================
   GRID
======================================== */

.review-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(420px,1fr));

    gap:30px;
}

/* ========================================
   CARD
======================================== */

.review-product-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #f2f2f2;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    display:flex;
    flex-direction:column;
    height:100%;

}

.review-product-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);
}

.review-product-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    background:#fff;
    padding:15px;

    transition:.4s;
}

.review-product-card:hover img{
    transform:scale(1.05);
}

.review-content{

    padding:25px 25px 30px;

    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.review-content h2{

    font-size:28px;
    min-height:70px;

    margin-bottom:12px;

    color:#333;
}

.review-content p{

    color:#666;

    line-height:1.7;

    min-height:80px;

    margin-bottom:20px;
}

.review-content a{

    margin-top:auto;

    display:inline-block;

    padding:12px 24px;

    border-radius:999px;

    background:#ef3d7a;

    color:#fff;

    text-decoration:none;

    font-weight:600;
}

.review-content a:hover{

    opacity:.9;
}

/* ========================================
   MOBILE
======================================== */

@media(max-width:768px){

    .review-page{

        padding:40px 15px;
    }

    .review-header h1{

        font-size:36px;
    }

    .review-header p{

        font-size:15px;
    }

    .review-grid{

        grid-template-columns:1fr;
    }

    .review-product-card img{

        height:220px;
    }

    .review-content h2{

        font-size:22px;
    }
}
