body{
  margin:0;
  font-family:system-ui, Arial;
  background:#f3f5f9;
  color:#111;
}
a{text-decoration:none;color:inherit}

/* =========================
   CONTAINER
========================= */
.container{
  max-width:1000px;
  margin:auto;
  padding:30px 16px;
}

.page-title{
  font-size:36px;
  font-weight:800;
  margin-bottom:20px;
}

/* =========================
   LIST STYLE (NEW)
========================= */
.review-list{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

/* CARD */
.review-item{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:5px;
  overflow:hidden;
  transition:0.2s;
}

.review-item:hover{

  box-shadow:0 10px 25px rgba(0,0,0,0.09);
}

/* IMAGE LEFT */
.review-thumb{
  width:100%;
  height:270px;
}

.review-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* RIGHT CONTENT */
.review-content{
  padding:12px 14px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.review-content{
  padding:12px;
}
/* TITLE */
.review-title{
  font-size:22px;
  font-weight:800;
  margin-bottom:6px;
}

/* META */
.review-meta{
  font-size:12px;
  color:#888;
  margin-bottom:8px;
}

/* TEXT */
.review-text{
  font-size:13px;
  color:#555;
  line-height:1.5;
}

/* =========================
   PAGINATION (NEW STYLE)
========================= */
.pagination{
  display:flex;
  justify-content:center;
  gap:6px;
  margin:40px 0;
  flex-wrap:wrap;
}

.page-btn{
  padding:8px 12px;
  border:1px solid #ddd;
  background:#fff;
  border-radius:6px;
  font-size:13px;
}

.page-btn:hover{
  background:#111;
  color:#fff;
}

.page-btn.active{
  background:#111;
  color:#fff;
}

.page-btn.disabled{
  opacity:.3;
  pointer-events:none;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

  .review-item{
    flex-direction:column;
  }

  .review-thumb{
    width:100%;
    height:180px;
  }
}
@media(max-width:900px){
  .review-list{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:500px){
  .review-list{
    grid-template-columns:1fr;
  }
}