.vertical-image-box {
  width: 70vw;
  height: auto;      
  overflow: hidden;       /* taglia parti in eccesso */
  border-radius: 20px;    /* angoli smussati */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* ombra leggera */
  display: flex;
  justify-content: center;
  align-items: center;
}

.vertical-image {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* mantiene proporzioni e riempie la box */
  display: block;
}

.row-maia {
  display: flex;
  flex-direction: row;
  gap: 5vw;  
  align-items: flex-start;   
}

.column-maia {
  display: flex;
  flex-direction: column; 
}

.margin-top-60 {
  margin-top: 60px;
}

.ph-maia {
    margin: 0;
    font-family: var(--tt-alter-font);
    font-size: 3vw;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 1vw;
}

