.place-must-see {
  display: grid;
  gap: 16px;
  margin: 22px 0;
  padding: 20px;
  border: 1px solid rgba(174, 113, 76, .22);
  border-radius: 20px;
  background: linear-gradient(135deg, #fffaf1, #f8ecdc);
  box-shadow: 0 12px 28px rgba(90, 65, 34, .08);
}

.place-must-see-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.place-must-see-head h3 {
  margin: 3px 0 5px;
  color: #2b2233;
  font: 900 clamp(1.35rem, 3vw, 1.8rem)/1.05 Georgia, serif;
}

.place-must-see-head p:last-child {
  max-width: 58ch;
  margin: 0;
  color: #746658;
  font-size: .86rem;
  line-height: 1.5;
}

.place-must-see-mark {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: #2b2233;
  color: #ffd66f;
  font-size: 18px;
}

.place-must-see-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.place-must-see-item {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  gap: 10px;
  min-height: 72px;
  padding: 11px;
  border: 1px solid #ead9bb;
  border-radius: 13px;
  background: rgba(255, 255, 255, .82);
  color: #43372d;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.place-must-see-item:hover,
.place-must-see-item:focus-visible {
  border-color: #c27824;
  background: #fff;
  box-shadow: 0 7px 16px rgba(90, 65, 34, .12);
  transform: translateY(-1px);
  outline: none;
}

.place-must-see-item:focus-visible {
  outline: 3px solid rgba(194, 120, 36, .28);
  outline-offset: 2px;
}

.place-must-see-number {
  display: grid;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: #f4dfab;
  color: #9a7422;
  font: 900 10px/1 system-ui, sans-serif;
}

.place-must-see-copy {
  display: grid;
  min-width: 0;
  gap: 6px;
  flex: 1;
}

.place-must-see-copy strong {
  color: #43372d;
  font: 850 .8rem/1.35 system-ui, sans-serif;
  overflow-wrap: anywhere;
}

.place-must-see-copy small {
  color: #a15f43;
  font: 800 .68rem/1.25 system-ui, sans-serif;
}

.place-must-see-item > b {
  flex: 0 0 auto;
  color: #b8654d;
  font-size: 16px;
}

.place-must-see-item.is-official > b,
.place-must-see-item.is-official .place-must-see-copy small {
  color: #28724e;
}

@media (max-width: 760px) {
  .place-must-see-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .place-must-see { padding: 16px 13px; border-radius: 17px; }
  .place-must-see-head h3 { font-size: 1.35rem; }
  .place-must-see-item { min-height: 68px; }
}

/* I titoli delle tappe non devono mai essere ridotti a ellissi. */
.video-visit-highlight-name,
.video-visit-highlight-name strong,
.video-visit-highlight-name small {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  overflow-wrap: anywhere;
}
