.page-node-type-page {
  article {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;

    > div {
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: space-between;
      gap: 2rem 1rem;
    }

    /* Top (Parte Sopra) */
    #group-top {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;

      .field-name-field-immagine-top img {
        width: 100%;
        height: auto;
        max-width: 700px;
        max-height: 500px;
      }
    }

    /* Body (Parte centrale) */
    #group-body {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 0.5rem 1rem;
      width: 100%;

			/* Right (Parte destra) */
			#group-right {
				flex: 0 0 300px;
			}
    }
  }
}

/* Solo Mobile */
body.is-mobile.page-node-type-page {
  article {
    /* Body (Parte centrale) */
    #group-body {
      flex-direction: column;
    }
  }
}
