.contTesto {
  word-break: break-word;
}

.contTesto a:not([class]),
.contTesto a:not([class]):focus,
.contTesto a:not([class]):visited,
.contTesto a:not([class]):hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contTesto a:not([class]):hover {
  color: var(--color-terziario);
}

.contTesto > * {
  font-size: clamp(18px, 1.5vw, 18px);
  line-height: 1.5;
  font-weight: 450;
  letter-spacing: normal;
}

.contTesto > h1,
.contTesto > h2 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1;
  letter-spacing: normal;
  font-weight: 600;
}

.contTesto > h3 {
  font-size: clamp(24px, 2.1vw, 27px);
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 600;
}

.box-accordion .contTesto h3 {
  font-size: clamp(16px, 1vw, 16px);
  text-transform: uppercase;
}

.contTesto > h4,
.contTesto > h5,
.contTesto > h6 {
  font-size: clamp(18px, 1.85vw, 21px);
  line-height: 1;
  letter-spacing: normal;
  font-weight: 600;
}

.contTesto > hr {
  border-top: 1px solid;
}

.contTesto > ul {
  list-style-type: none;
  padding: 0;
}
.contTesto > ul > li {
  position: relative;
  padding-left: 20px;
}
.contTesto > ul > li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 8px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="8" viewBox="0 0 10 8" fill="none"><rect x="8.4834" y="3.1814" width="1.06042" height="8.48331" transform="rotate(90 8.4834 3.1814)" fill="black"/><rect width="1.06042" height="5.30208" transform="matrix(-0.707105 0.707108 -0.707105 -0.707108 9.62012 3.74902)" fill="black"/><rect width="1.06042" height="5.30208" transform="matrix(-0.707105 -0.707108 -0.707105 0.707108 9.62012 3.75073)" fill="black"/></svg>');
}
.contTesto > ol {
  list-style-type: decimal;
  padding-left: 20px;
}
.contTesto b, 
.contTesto strong {
    font-weight: 600;
}

/* _____________________________________ */
/* SPACING */
.contTesto > * + * {
  margin-top: 20px;
}
.contTesto > h1 + *,
.contTesto > h2 + *,
.contTesto > h3 + *,
.contTesto > h4 + *,
.contTesto > h5 + *,
.contTesto > h6 + * {
  margin-top: 20px;
}
.contTesto > h1 strong,
.contTesto > h2 strong,
.contTesto > h3 strong,
.contTesto > h4 strong,
.contTesto > h5 strong,
.contTesto > h6 strong {
  font-weight: 600;
}
.contTesto > * + h1,
.contTesto > * + h2,
.contTesto > * + h3,
.contTesto > * + h4,
.contTesto > * + h5,
.contTesto > * + h6 {
  margin-top: 40px;
}
.contTesto > hr + *,
.contTesto > * + hr,
.contTesto > .hb-blocks-immagine + *,
.contTesto > * + .hb-blocks-immagine,
.contTesto > .hb-blocks-galleria + *,
.contTesto > * + .hb-blocks-galleria,
.contTesto > .hb-blocks-accordion + *,
.contTesto > * + .hb-blocks-accordion,
.contTesto > .hb-blocks-immagine-testo + *,
.contTesto > * + .hb-blocks-immagine-testo {
  margin-top: 40px;
}
.contTesto > .hb-blocks-accordion > * + * {
  margin-top: 70px;
}
.contTesto > ul li + li,
.contTesto > ol li + li {
  margin-top: 15px;
}

/* IFRAME */
.contTesto iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* WP TABLE */
.wp-block-table thead {
  background: #466beb;
  border-bottom: 1px solid black;
}
.wp-block-table th {
  font-family: mono45-headline, monospace;
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  text-align: start;
  padding: 12px 16px;
  border: 1px solid black;
  vertical-align: top;
}
.wp-block-table td {
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 400;
  color: black;
  text-align: start;
  padding: 12px 16px;
  border: 1px solid black;
  background: rgba(0, 0, 0, 0.05);
  vertical-align: top;
}
.wp-block-table tr:nth-child(odd) td {
  background: white;
}

.wp-block-table table {
  display: block;
  overflow: auto;
}
.wp-block-table tr > * {
  min-width: 150px;
}
@media (min-width: 1024px) {
  .wp-block-table tr > * {
    min-width: auto;
  }
}