.psb-wrapper {
  margin: 0 0 2rem;
  font-family: inherit;
}

.psb-topline {
  background: #43242a;        /* fascia scura */
  color: #fff;
  text-align: center;
  padding: .6rem .8rem;
  font-size: .95rem;
}

.psb-inner {
  background: #d3a183;        /* beige/rosato come screenshot */
  padding: 2.2rem 1rem 2.6rem;
  text-align: center;
}

.psb-title {
	color: #fff;
	font-weight: lighter;
	margin: 0 0 1.6rem;
	line-height: 1.3;
	font-size: clamp(1.25rem, 2.5vw, 2rem);
	font-family: times;
}
.psb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

.psb-item {
  display: grid;
  gap: .5rem;
  justify-items: center;
  color: #2c1a1d;
  font-size: .98rem;
}

.psb-icon {
  font-size: 1.6rem; /* sostituisci con svg se preferisci */
  line-height: 1;
}

.psb-text {
  max-width: 16ch;
}

/* Responsivo */
@media (max-width: 992px) {
  .psb-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .psb-grid { grid-template-columns: 1fr 1fr; }
  .psb-text { max-width: 24ch; }
}