

.card-locandina img{ 
  aspect-ratio: 3/4; 
  object-fit: cover; 
}
.card-info{ 
  border-radius: var(--radius); 
  background: var(--white); 
}
.badge{ 
  font-weight: 600; 
  letter-spacing:.2px 
}



/* Anello voto utenti*/
.voto-cerchio{
  width: 86px; height: 86px;
  border-radius: 999px;
  border: 5px solid rgba(0,154,237,.25);
  outline: 4px solid var(--brand);
  display: grid; place-items: center;
  margin-top: 10px;
  background: #fff;
  margin-bottom: 1rem;
}
.voto-cerchio strong{ 
  font-size: 1.6rem; 
  color: var(--brand); 
}


@media (max-width: 767.98px) {
  .voto-wrap {
    margin-bottom: 2rem;
  }
}


/* Galleria immagini */
.galleria .thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galleria .thumb img {
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galleria .thumb:hover img {
  transform: scale(1.08);
  filter: brightness(0.9); 
}



/* Recensione*/
.review {
    margin-top: 9%;
  }
@media (max-width: 767.98px) {
  .review {
    margin-top: 3rem;
  }
}
.text-justify {
  text-align: justify !important;
}



/* Citazione */
.quote-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 48px) clamp(22px, 4vw, 60px);
  box-shadow:  2px 2px 30px -1px #009AED;
  max-width: 860px;
  width: 550px;
  margin-bottom: 5rem;   
  display: inline-block; 
}

@media (max-width: 767.98px){
  .quote-card{
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 4rem;   
  }
}
.lead span {
  color: var(--brand);
}



/* Commenti */
.avatar{ 
  width: 36px; 
  height: 36px; 
  object-fit: cover; 
}

.comment-card{
  background:#fff;
  border:1px solid rgba(35,19,204,.08);
  border-radius: var(--radius);
  width:100%;
}

.comment-card .card-body{ padding: 16px 18px; }

.comment-card .card-body > .d-flex{
  flex-wrap: wrap;             
  row-gap: 6px;
}
.comment-card .card-body > .d-flex .fw-semibold{ order: 1; }
.comment-card .card-body > .d-flex .avatar{ order: 0; }
.comment-card .card-body > .d-flex small{
  order: 2; width: 100%;        
  margin-left: 0 !important;
}

/* like/reply */
#comments .bi-hand-thumbs-up{ 
  font-size: 1rem; 
}
.comment-card p{ 
  margin-bottom: .9rem; 
  line-height: 1.55; 
}
.comment-card .btn.btn-primary{ 
  background: var(--brand); 
  border-color: var(--brand); 
}
.comment-card .btn.btn-primary:hover{ 
  filter: brightness(.92); 
}

#toggleMoreComments{ margin-top: .25rem;}

#commenti-extra{ width:100%; }
#commenti-extra .comment-card{ width:100%; }



/* freccia */
.arrow-wrapper4 {
  position: relative;
  top: 10px;   
  margin-bottom: 1rem;
  z-index: 2;
  display: flex;
  justify-content: center; 
}
.arrow-wrapper4 .arrow-decor4 {
  max-width: 300px;
  width: 100%;
  height: auto;
  transform: rotate(140deg); 
}

@media (max-width: 767.98px) {
  .arrow-wrapper4 {
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 50px;
  }
}