/* Public testimonials and comment form */
.comments-blog{
  margin-top:72px;
  padding:78px 0 88px;
  border-top:1px solid #eceff2;
  background:#fff;
}

.testimonials-heading{
  max-width:860px;
  margin:0 auto 46px;
  text-align:center;
}

.testimonials-heading .section-line,
.comment-form-intro .section-line{
  display:block;
  width:78px;
  height:5px;
  margin:0 auto 25px;
  background:#cfa249;
}

.testimonials-heading h2{
  margin:0 0 12px;
  color:#102039;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px,3.2vw,48px);
  line-height:1.16;
  letter-spacing:.01em;
}

.testimonials-heading p{
  max-width:700px;
  margin:0 auto;
  color:#68717b;
  font-size:16px;
  line-height:1.65;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  width:100%;
  margin:0 auto 72px;
}

.testimonial-card{
  position:relative;
  min-height:340px;
  padding:32px 34px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  overflow:hidden;
  border:1px solid #eef0f2;
  border-radius:12px;
  background:#f4f5f6;
  text-align:center;
  box-shadow:0 14px 30px rgba(21,35,52,.055);
  transition:transform .2s ease,box-shadow .2s ease;
}

.testimonial-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 42px rgba(21,35,52,.11);
}

.testimonial-avatar{
  width:86px;
  height:86px;
  margin:0 auto 24px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border:5px solid #fff;
  border-radius:50%;
  background:linear-gradient(145deg,#d8af58,#b98c35);
  color:#fff;
  font-family:Georgia,"Times New Roman",serif;
  font-size:29px;
  font-weight:700;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}

.testimonial-quote{
  position:absolute;
  top:18px;
  right:26px;
  color:rgba(207,162,73,.23);
  font-family:Georgia,"Times New Roman",serif;
  font-size:66px;
  line-height:1;
  pointer-events:none;
}

.testimonial-text{
  width:100%;
  margin:0 auto 26px;
  color:#4f5660;
  font-size:16px;
  line-height:1.68;
}

.testimonial-person{
  margin-top:auto;
}

.testimonial-person strong{
  display:block;
  margin-bottom:7px;
  color:#14233a;
  font-family:Georgia,"Times New Roman",serif;
  font-size:18px;
}

.testimonial-person span{
  display:block;
  color:#c99a3d;
  font-size:13px;
  line-height:1.45;
}

.testimonial-empty{
  max-width:840px;
  margin:0 auto 60px;
  padding:42px 24px;
  border:1px dashed #d4d9df;
  border-radius:12px;
  background:#f7f8f9;
  color:#737c86;
  text-align:center;
}

.comment-form-shell{
  max-width:1040px;
  margin:0 auto;
  padding:38px 42px;
  border:1px solid #e6e8eb;
  border-radius:12px;
  background:#f7f8f9;
  box-shadow:0 12px 28px rgba(20,33,49,.05);
}

.comment-form-intro{
  margin-bottom:26px;
  text-align:center;
}

.comment-form-intro .section-line{
  width:62px;
  height:4px;
  margin-bottom:18px;
}

.comment-form-intro h3{
  margin:0 0 9px;
  color:#14233a;
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
}

.comment-form-intro p{
  max-width:720px;
  margin:0 auto;
  color:#68717b;
  line-height:1.6;
}

.visual-comment-form{
  width:100%;
  padding:0;
  background:transparent;
}

.comment-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.comment-field{
  margin-bottom:18px;
}

.comment-field label{
  display:block;
  margin-bottom:7px;
  color:#27374a;
  font-weight:700;
  font-size:14px;
}

.comment-field input,
.comment-field textarea{
  width:100%;
  box-sizing:border-box;
  padding:12px 14px;
  border:1px solid #cfd5dc;
  border-radius:5px;
  outline:none;
  background:#fff;
  color:#172437;
  font:inherit;
  transition:border-color .18s ease,box-shadow .18s ease;
}

.comment-field input:focus,
.comment-field textarea:focus{
  border-color:#cfa249;
  box-shadow:0 0 0 3px rgba(207,162,73,.13);
}

.comment-field textarea{
  min-height:135px;
  resize:vertical;
}

.comment-field small{
  display:block;
  margin-top:6px;
  color:#7b838c;
  font-size:11px;
}

.comment-submit-row{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.comment-submit{
  min-width:190px;
  min-height:42px;
  border-radius:22px;
}

.comment-moderation-note{
  flex:1 1 320px;
  margin:0;
  color:#7a838d;
  font-size:12px;
  line-height:1.5;
}

.comment-honeypot{
  position:absolute!important;
  left:-99999px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
}

@media(max-width:980px){
  .testimonials-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media(max-width:680px){
  .comments-blog{padding:60px 0 68px;}
  .testimonials-grid{grid-template-columns:1fr;gap:20px;margin-bottom:50px;}
  .testimonial-card{min-height:0;padding:30px 24px;}
  .comment-form-shell{padding:28px 20px;}
  .comment-form-grid{grid-template-columns:1fr;gap:0;}
}
