.page_container.two_columns {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  align-items: flex-start;
}

.column {
  height: 100vh; /* ⬅️ Aggiunto */
  padding-top: 12px;
  box-sizing: border-box;
  overflow: auto; /* Per scrollare se serve */
}

.column.left {
  width: 55vw;
    padding-left: 20px;
  background: #fff;
}

.column.right {
  width: 45vw;
    padding-left: 12px;
    padding-right:70px;
  background: #fff;
}

.header {
    display: inline-flex;
	white-space: nowrap; 
    align-items: baseline;
    gap: 0.7rem;
}
.right-boxes {
  display: flex;
  justify-content: space-between; /* distribuisce equamente */
  align-items: flex-start; /* allineati in alto */
  gap: 100px; /* spazio tra i box */
  width: 100%;
    margin-bottom: 70px;
}

.box {
  flex: 1; /* larghezza uguale per tutti */
  padding: 0rem;
  box-sizing: border-box;
  text-align: left;
}

.section-row {
  margin-bottom: 2rem;
}

.indented {
  text-indent: 2em;
    text-align: left;
  margin: 0;
  font-family: "Diatype Variable Heavy", sans-serif;
  font-size: 10pt;
  line-height: 1.2;
  font-weight: 800;
  color: #000;
}

.title-wrapper {
  display: inline-block;
  position: relative;
  font-family: "Diatype Variable Ultra", sans-serif;
  font-size: 10pt;
  font-weight: 1000;
  line-height: 1.2;
  margin-right: 0em;
  cursor: pointer;
  text-indent: 0; /* annulla indentazione sul titolo */
}

.line {
  position: absolute;
  left: 0;
  bottom: 0.09em;
  height: 1.2px;
  width: 100%;
  background-color: #05ad06;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.4s ease;
}

.title-wrapper:hover .line {
  transform: scaleX(0);
}


.section-row p {
  margin: 0;
    padding-bottom: 10px;
    text-align: left;
  font-weight: 800; /* Rientro solo prima riga */
}


body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Diatype Variable Heavy", sans-serif;
  font-size: 10pt;
  line-height: 1.1;
  font-weight: 800; /* Heavy */
  background-color: transparent;
  color: #000;
}

h1 {
  font-family: "Diatype Variable", Icons;
  font-size: 10.5pt;
  line-height: 1.1;
  font-weight: 1000; /* Ultra */
  margin: 0 0 1rem 0;
	font-style: normal;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
}

h2 {
  font-family: "Diatype Variable Heavy", sans-serif;
  font-size: 10pt;
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
  position: relative;
  display: inline-block;
}

.underline {
  display: block;
  height: 1.2px;
  width: 100%;
  background-color: #e1769b;
    margin-bottom: 3px;
  transform-origin: left; /* ← parte da sinistra */
  transform: scaleX(1);
  transition: transform 0.4s ease;
  margin-top: 0.0em;
}

h2:hover .underline {
  transform: scaleX(0); /* ← si contrae verso destra */
}

a {
  text-decoration: none;
  color: inherit;
}


p {
  font-size: 10pt;
  line-height: 1.1;
  margin: 0 0 1rem 0;
}

body {
  opacity: 0;
  animation: fadeInBody 1.2s ease forwards;
}

@keyframes fadeInBody {
  to { opacity: 1; }
}
