.jt-review-board{
  margin:48px 0 24px;
  padding:24px 20px;
  border:1px solid #dbe4ef;
  border-radius:18px;
  background:#f8fbff;
  box-shadow:0 10px 24px rgba(22,45,77,.06);
}

.jt-review-board__title{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.4;
}

.jt-review-board__lead{
  margin:0 0 18px;
  color:#526173;
  font-size:14px;
  line-height:1.9;
}

.jt-review-board__notice{
  margin:0 0 16px;
  padding:12px 14px;
  border-radius:10px;
  font-size:14px;
}

.jt-review-board__notice--success{
  background:#edf9f0;
  color:#1d5d2b;
}

.jt-review-board__notice--error{
  background:#fff0f0;
  color:#8d2f2f;
}

.jt-review-form{
  display:grid;
  gap:14px;
  margin-bottom:26px;
}

.jt-review-form__row label,
.jt-review-form__label{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  font-weight:700;
  color:#2c3d4f;
}

.jt-review-form input[type="text"],
.jt-review-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #cfd9e5;
  border-radius:12px;
  background:#fff;
  font-size:14px;
  line-height:1.6;
  box-sizing:border-box;
}

.jt-review-form textarea{
  resize:vertical;
  min-height:150px;
}

.jt-review-form__checks{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
}

.jt-review-form__checks label{
  margin:0;
  font-weight:400;
  font-size:14px;
  color:#334455;
}

.jt-review-form__help{
  margin:6px 0 0;
  font-size:12px;
  color:#66788a;
}

.jt-review-form__honeypot{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}

.jt-review-form__submit{
  appearance:none;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg, #1e5b8f 0%, #2d7fbe 100%);
  color:#fff;
  font-size:14px;
  font-weight:700;
  padding:12px 18px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(31,95,151,.16);
}

.jt-review-list{
  display:grid;
  gap:14px;
}

.jt-review-card{
  background:#fff;
  border:1px solid #dce5ef;
  border-radius:14px;
  padding:16px 15px;
}

.jt-review-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 10px;
  margin-bottom:8px;
  align-items:center;
}

.jt-review-card__category{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  background:#e8f0fb;
  color:#27598b;
  font-size:12px;
  font-weight:700;
}

.jt-review-card__tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px 8px;
  margin-bottom:8px;
}

.jt-review-card__tag{
  display:inline-block;
  font-size:12px;
  color:#47627f;
  background:#f1f5f9;
  padding:3px 8px;
  border-radius:999px;
}

.jt-review-card__submeta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 10px;
  margin-bottom:10px;
}

.jt-review-card__name,
.jt-review-card__date{
  font-size:12px;
  color:#6b7a8a;
}

.jt-review-card__body{
  font-size:14px;
  line-height:1.95;
  color:#243444;
}

.jt-review-card__body p{
  margin:0 0 10px;
}

.jt-review-card__body p:last-child{
  margin-bottom:0;
}

.jt-review-card__footer{
  margin-top:10px;
}

.jt-review-card__report{
  appearance:none;
  border:none;
  background:none;
  color:#6b7a8a;
  font-size:12px;
  text-decoration:underline;
  cursor:pointer;
  padding:0;
}

.jt-review-list__empty{
  margin:0;
  color:#66788a;
  font-size:14px;
}

@media (max-width:768px){
  .jt-review-board{
    margin:36px 0 20px;
    padding:18px 14px;
    border-radius:14px;
  }

  .jt-review-board__title{
    font-size:19px;
  }

  .jt-review-form__checks{
    gap:8px 12px;
  }
}