.dst-comments-wrap{
  --dst-ink:#10284a;
  --dst-ink-soft:#51627d;
  --dst-line:#d9e2ef;
  --dst-card-top:#f4f7fb;
  --dst-card-bottom:#f1f4f9;
  --dst-accent:#f5b800;
  --dst-accent-2:#ffd45a;
  --dst-blue:#10284a;
  --dst-blue-soft:#eef4fb;
  --dst-red:#8f4a4a;
  --dst-red-soft:#f8eeee;
  --dst-shadow:0 10px 24px rgba(16,40,74,.05);
  color:var(--dst-ink);
  margin-top:40px;
}

.dst-comments-wrap .dst-comments-header{
  margin-bottom:18px;
}

.dst-comments-wrap .dst-comments-title{
  margin:0;
  color:var(--dst-ink);
  font-size:clamp(15px,2.5vw,35px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.02em;
}

.dst-comments-wrap .dst-comments-list{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:grid;
  gap:14px;
}

.dst-comments-wrap .dst-comments-list > .comment{
  margin:5px 0;
  padding:0;
}

.dst-comments-wrap .dst-comments-list .comment-body{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,var(--dst-card-top) 0%,var(--dst-card-bottom) 100%);
  border:1px solid var(--dst-line);
  border-radius:22px;
  box-shadow:var(--dst-shadow);
  padding:18px 20px 16px;
}

.dst-comments-wrap .dst-comments-list .comment-body::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  border-radius:22px 0 0 22px;
  opacity:.95;
}

.dst-comments-wrap .dst-comments-list .comment-meta{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:8px;
}

.dst-comments-wrap .dst-comments-list .comment-metadata{
  order:-1;
  display:block;
  margin:0;
  padding:0 0 10px;
  color:var(--dst-ink-soft);
  font-size:14px;
  line-height:1.4;
}

.dst-comments-wrap .dst-comments-list .comment-metadata a,
.dst-comments-wrap .dst-comments-list .comment-metadata time,
.dst-comments-wrap .dst-comments-list .comment-edit-link{
  display:inline-block;
  color:var(--dst-ink-soft);
  text-decoration:none;
  transition:color .2s ease;
  padding:5px 0;
}

.dst-comments-wrap .dst-comments-list .comment-metadata a:hover,
.dst-comments-wrap .dst-comments-list .comment-edit-link:hover{
  color:var(--dst-blue);
}

.dst-comments-wrap .dst-comments-list .edit-link{
  margin-inline-start:6px;
}

.dst-comments-wrap .dst-comments-list .comment-author{
  display:grid;
  grid-template-columns:48px minmax(0,1fr);
  column-gap:10px;
  row-gap:2px;
  align-items:center;
}

.dst-comments-wrap .dst-comments-list .comment-author .avatar{
  grid-row:1 / span 2;
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid var(--dst-line);
  background:#edf2f8;
}

.dst-comments-wrap .dst-comments-list .comment-author .fn,
.dst-comments-wrap .dst-comments-list .comment-author .fn a{
  display:inline-block;
  color:var(--dst-blue);
  text-decoration:none;
  font-size:16px;
  font-weight:800;
  line-height:1.15;
  padding:0 75px;
}

.dst-comments-wrap .dst-comments-list .comment-author .fn a:hover{
  color:#0d203c;
}

.dst-comments-wrap .dst-comments-list .comment-author .says{
  color:var(--dst-ink-soft);
  font-size:14px;
  font-weight:500;
  line-height:1.15;
  padding:0 75px;
}

.dst-comments-wrap .dst-comments-list .comment-content{
  position:relative;
  z-index:1;
  margin:0;
  padding-inline-start:58px;
}

.dst-comments-wrap .dst-comments-list .comment-content p{
  margin:0;
  color:var(--dst-ink);
  font-size:16px;
  line-height:1.55;
  word-break:break-word;
}

.dst-comments-wrap .dst-comments-list .dst-comment-feedback{
  position:relative;
  z-index:1;
  margin-top:10px;
  margin-inline-start:58px;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.dst-comments-wrap .dst-comment-feedback__head{
  margin:0 0 6px;
}

.dst-comments-wrap .dst-comment-feedback__label{
  display:inline-block;
  color:var(--dst-ink);
  font-size:13px;
  font-weight:800;
  line-height:1.25;
}

.dst-comments-wrap .dst-comment-feedback__actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

.dst-comments-wrap .dst-comment-feedback__button{
  appearance:none;
  width:auto;
  flex:0 0 auto;
  min-height:38px;
  padding:0 12px;
  border:1px solid #d7dfeb;
  border-radius:999px;
  background:#ffffff;
  color:var(--dst-blue);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  box-shadow:0 3px 10px rgba(16,40,74,.04);
  transition:transform .15s ease,border-color .2s ease,background .2s ease,color .2s ease;
}

.dst-comments-wrap .dst-comment-feedback__button:hover:not(:disabled){
  transform:translateY(-1px);
}

.dst-comments-wrap .dst-comment-feedback__button:disabled{
  cursor:default;
  opacity:1;
}

.dst-comments-wrap .dst-comment-feedback__button--like:hover:not(:disabled),
.dst-comments-wrap .dst-comment-feedback__button--like.is-selected{
  background:var(--dst-blue-soft);
  border-color:#c4d4f1;
  color:var(--dst-blue);
}

.dst-comments-wrap .dst-comment-feedback__button--unlike:hover:not(:disabled),
.dst-comments-wrap .dst-comment-feedback__button--unlike.is-selected{
  background:var(--dst-red-soft);
  border-color:#efcaca;
  color:var(--dst-red);
}

.dst-comments-wrap .dst-comment-feedback__badge{
  width:22px;
  height:22px;
  flex:0 0 22px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:900;
  color:#fff;
}

.dst-comments-wrap .dst-comment-feedback__button--like .dst-comment-feedback__badge{
  background:var(--dst-blue);
}

.dst-comments-wrap .dst-comment-feedback__button--unlike .dst-comment-feedback__badge{
  background:var(--dst-red);
}

.dst-comments-wrap .dst-comment-feedback__text{
  font-size:14px;
  font-weight:800;
}

.dst-comments-wrap .dst-comment-feedback__count{
  min-width:22px;
  height:22px;
  padding:0 6px;
  border-radius:999px;
  background:#eef2f7;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
  color:var(--dst-ink);
}

.dst-comments-wrap .dst-comment-feedback__status{
  margin-top:6px;
  color:#7a879b;
  font-size:12px;
  line-height:1.35;
}

.dst-comments-wrap #respond.comment-respond{
  margin-top:18px;
  padding:22px;
  background:linear-gradient(180deg,#f4f7fb 0%,#f0f3f8 100%);
  border:1px solid var(--dst-line);
  border-radius:24px;
  box-shadow:var(--dst-shadow);
}

.dst-comments-wrap .comment-reply-title{
  margin:0 0 12px;
  color:var(--dst-ink);
  font-size:clamp(26px,2.4vw,38px);
  line-height:1.1;
  font-weight:800;
  letter-spacing:-.02em;
}

.dst-comments-wrap .dst-comment-form .logged-in-as{
  margin:0 0 14px;
  color:var(--dst-ink-soft);
  font-size:14px;
  line-height:1.65;
}

.dst-comments-wrap .dst-comment-form .logged-in-as a{
  color:var(--dst-blue);
  font-weight:700;
  text-decoration:none;
}

.dst-comments-wrap .dst-comment-form .logged-in-as a:hover{
  color:#0d203c;
}

.dst-comments-wrap .dst-comment-form .required-field-message{
  color:var(--dst-ink);
}

.dst-comments-wrap .dst-comment-form .comment-form-comment{
  margin:0 0 16px;
}

.dst-comments-wrap .dst-comment-form .comment-form-comment label{
  display:block;
  margin-bottom:8px;
  color:var(--dst-ink);
  font-size:17px;
  font-weight:800;
}

.dst-comments-wrap .dst-comment-form textarea{
  width:100%;
  min-height:150px;
  resize:vertical;
  padding:14px 16px;
  border:1px solid #d9e2ef;
  border-radius:16px;
  background:#fdfefe;
  color:var(--dst-ink);
  font-size:16px;
  line-height:1.6;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease;
}

.dst-comments-wrap .dst-comment-form textarea:focus{
  border-color:#f1c648;
  box-shadow:0 0 0 4px rgba(245,184,0,.12);
}

.dst-comments-wrap .dst-comment-form .form-submit{
  margin:0;
}

.dst-comments-wrap .dst-comment-submit{
  appearance:none;
  min-height:46px;
  padding:0 20px;
  border:0;
  border-radius:999px;
  background:linear-gradient(180deg,#f7c108 0%,#efb300 100%);
  color:#10284a;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(239,179,0,.18);
  transition:transform .15s ease,box-shadow .2s ease;
}

.dst-comments-wrap .dst-comment-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 24px rgba(239,179,0,.24);
}

.dst-comments-wrap .reply,
.dst-comments-wrap #cancel-comment-reply-link{
  display:none;
}

.dst-comments-wrap .dst-comments-list .children{
  list-style:none;
  margin:12px 0 0;
  padding-inline-start:18px;
  display:grid;
  gap:12px;
}

@media (min-width:768px) and (max-width:1100px){
  .dst-comments-wrap .dst-comments-title{
    font-size:40px;
  }

  .dst-comments-wrap .dst-comments-list .comment-body{
    padding:18px 18px 16px;
  }

  .dst-comments-wrap .dst-comments-list .comment-content{
    padding-inline-start:56px;
  }

  .dst-comments-wrap .dst-comments-list .dst-comment-feedback{
    margin-inline-start:56px;
  }

  .dst-comments-wrap #respond.comment-respond{
    padding:20px;
  }
}

@media (max-width:767px){
  .dst-comments-wrap{
    margin-top:28px;
  }

  .dst-comments-wrap .dst-comments-header{
    margin-bottom:14px;
  }

  .dst-comments-wrap .dst-comments-title{
    font-size:22px;
  }

  .dst-comments-wrap .dst-comments-list{
    gap:10px;
    margin-bottom:18px;
  }

  .dst-comments-wrap .dst-comments-list .comment-body{
    padding:12px 12px 10px;
    border-radius:18px;
  }

  .dst-comments-wrap .dst-comments-list .comment-body::before{
    width:3px;
    border-radius:18px 0 0 18px;
  }

  .dst-comments-wrap .dst-comments-list .comment-meta{
    gap:6px;
    margin-bottom:6px;
  }

  .dst-comments-wrap .dst-comments-list .comment-metadata{
    padding:0 0 8px;
    font-size:12px;
    line-height:1.3;
  }

  .dst-comments-wrap .dst-comments-list .comment-metadata a,
  .dst-comments-wrap .dst-comments-list .comment-metadata time,
  .dst-comments-wrap .dst-comments-list .comment-edit-link{
    padding:0 10px;
  }

  .dst-comments-wrap .dst-comments-list .comment-author{
    grid-template-columns:40px minmax(0,1fr);
    column-gap:8px;
    row-gap:1px;
    padding:0 15px;
  }

  .dst-comments-wrap .dst-comments-list .comment-author .avatar{
    width:40px;
    height:40px;
  }

  .dst-comments-wrap .dst-comments-list .comment-author .fn,
  .dst-comments-wrap .dst-comments-list .comment-author .fn a{
    font-size:15px;
  }

  .dst-comments-wrap .dst-comments-list .comment-author .says{
    font-size:13px;
  }

  .dst-comments-wrap .dst-comments-list .comment-content{
    padding:0 25px;
  }

  .dst-comments-wrap .dst-comments-list .comment-content p{
    font-size:15px;
    line-height:1.45;
  }

  .dst-comments-wrap .dst-comments-list .dst-comment-feedback{
    margin-top:8px;
    margin-inline-start:0;
  }

  .dst-comments-wrap .dst-comment-feedback__head{
    margin:0 0 5px;
    padding:0 60px;
  }

  .dst-comments-wrap .dst-comment-feedback__label{
    font-size:12px;
  }

  .dst-comments-wrap .dst-comment-feedback__actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
    padding:0 25px;
  }

  .dst-comments-wrap .dst-comment-feedback__button{
    width:auto;
    flex:0 0 auto;
    min-height:34px;
    padding:0 10px;
    gap:6px;
    font-size:13px;
  }

  .dst-comments-wrap .dst-comment-feedback__badge{
    width:20px;
    height:20px;
    flex:0 0 20px;
    font-size:13px;
  }

  .dst-comments-wrap .dst-comment-feedback__text{
    font-size:13px;
  }

  .dst-comments-wrap .dst-comment-feedback__count{
    min-width:20px;
    height:20px;
    padding:0 5px;
    font-size:11px;
  }

  .dst-comments-wrap .dst-comment-feedback__status{
    margin-top:5px;
    font-size:11px;
    line-height:1.3;
    text-align:center;
    padding:0 30px;
  }

  .dst-comments-wrap #respond.comment-respond{
    margin-top:14px;
    padding:16px 14px;
    border-radius:18px;
  }

  .dst-comments-wrap .comment-reply-title{
    font-size:22px;
    margin-bottom:10px;
  }

  .dst-comments-wrap .dst-comment-form .logged-in-as{
    margin-bottom:12px;
    font-size:14px;
  }

  .dst-comments-wrap .dst-comment-form textarea{
    min-height:130px;
    padding:12px 14px;
    border-radius:14px;
    font-size:15px;
  }

  .dst-comments-wrap .dst-comment-submit{
    width:100%;
    min-height:44px;
  }

  .dst-comments-wrap .dst-comments-list .children{
    padding-inline-start:10px;
    gap:10px;
  }
}

@media (max-width:480px){
  .dst-comments-wrap .dst-comments-list .comment-body{
    padding:11px 11px 10px;
  }

  .dst-comments-wrap .dst-comments-list .comment-metadata{
    padding-bottom:7px;
    font-size:11.5px;
  }

  .dst-comments-wrap .dst-comments-list .comment-author{
    grid-template-columns:38px minmax(0,1fr);
  }

  .dst-comments-wrap .dst-comments-list .comment-author .avatar{
    width:38px;
    height:38px;
  }

  .dst-comments-wrap .dst-comments-list .comment-author .fn,
  .dst-comments-wrap .dst-comments-list .comment-author .fn a{
    font-size:14.5px;
  }

  .dst-comments-wrap .dst-comments-list .comment-content p{
    font-size:14.5px;
  }

  .dst-comments-wrap .dst-comment-feedback__button{
    min-height:34px;
    padding:0 9px;
  }

  .dst-comments-wrap .dst-comment-feedback__label{
    font-size:11.5px;
  }

  .dst-comments-wrap .dst-comment-feedback__status{
    font-size:10.5px;
  }

  .dst-comments-wrap .dst-comments-list .comment-author .says,
  .dst-comments-wrap .dst-comments-list .comment-author .fn,
  .dst-comments-wrap .dst-comments-list .comment-author .fn a{
    padding:0;
  }
}

@media (min-width:768px){
  .dst-comments-wrap .dst-comments-list .comment-author{
    display:grid;
    grid-template-columns:48px max-content max-content;
    column-gap:12px;
    row-gap:0;
    align-items:center;
  }

  .dst-comments-wrap .dst-comments-list .comment-author .avatar{
    grid-column:1;
    grid-row:1;
    width:48px;
    height:48px;
    margin:0;
    padding:0;
  }

  .dst-comments-wrap .dst-comments-list .comment-author .fn{
    grid-column:2;
    grid-row:1;
    display:block;
    margin:0;
    padding:0;
    line-height:1.15;
    white-space:nowrap;
  }

  .dst-comments-wrap .dst-comments-list .comment-author .fn a{
    display:block;
    margin:0;
    padding:0;
    line-height:1.15;
    white-space:nowrap;
  }

  .dst-comments-wrap .dst-comments-list .comment-author .says{
    grid-column:3;
    grid-row:1;
    display:block;
    margin:0;
    padding:0;
    line-height:1.15;
    white-space:nowrap;
  }
}
#comments.dst-comments-wrap{
  margin-top:0 !important;
}

.dst-comments-wrap .dst-comments-header{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:32px;
}

.dst-comments-wrap .dst-comments-header::before{
  content:"TRAVELER REVIEWS";
  display:inline-flex;
  align-items:center;
  gap:16px;
  color:#10284a;
  font-size:16px;
  font-weight:800;
  line-height:1;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.dst-comments-wrap .dst-comments-header::before{
  white-space:nowrap;
}

.dst-comments-wrap .dst-comments-header::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#FFC107;
  box-shadow:0 0 0 6px rgba(255,193,7,.16);
}

.dst-comments-wrap .dst-comments-header{
  padding-top:2px;
}

.dst-comments-wrap .dst-comments-header::before{
  padding-left:26px;
}

.dst-comments-wrap .dst-comments-title{
  position:relative;
  display:inline-block;
  padding-left:22px;
  color:#10284a;
}

.dst-comments-wrap .dst-comments-title::before{
  content:"";
  position:absolute;
  left:0;
  top:.14em;
  bottom:.14em;
  width:5px;
  border-radius:999px;
  background:#FFC107;
}

@media (max-width:1024px){
  .dst-comments-wrap .dst-comments-header{
    gap:28px;
  }

  .dst-comments-wrap .dst-comments-header::before{
    font-size:14px;
    letter-spacing:.14em;
    padding-left:24px;
  }
}

@media (max-width:767px){
  .dst-comments-wrap .dst-comments-header{
    gap:24px;
  }

  .dst-comments-wrap .dst-comments-header::before{
    font-size:12px;
    letter-spacing:.12em;
    padding-left:22px;
  }

  .dst-comments-wrap .dst-comments-header::after{
    width:8px;
    height:8px;
    box-shadow:0 0 0 5px rgba(255,193,7,.16);
  }

  .dst-comments-wrap .dst-comments-title{
    padding-left:16px;
  }

  .dst-comments-wrap .dst-comments-title::before{
    width:4px;
  }
}