:root {
  --blue-top: #006ee6;
  --white: #fff;
  --text: #0a1f44;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: transparent;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

/* Layout */
.content {
  grid-area: content;
}
.tooltip-card-container {
  display: flex;
  gap: 8px;
}

.sidebar {
  padding-left: 20px;
  align-self: start;
  position: fixed;
  top: 1px;
  grid-area: side;
}

.sidebar ul {
  list-style: none;
  margin: 0;
}

.sidebar li {
  margin-bottom: 8px;
}

.sidebar a {
  text-decoration: none;
  color: #0070f3;
  margin-bottom: 0px;
  margin-top: 5px;
}

.nav-list {
  list-style: none;
  padding-left: 15px;
  margin: 0;
  position: relative;
}

.nav-list li {
  position: relative;
  padding-left: 20px;
}

.nav-list::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: #ddd;
}

.nav-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: rgba(0, 110, 230, 1);
  border-radius: 50%;
  position: absolute;
  left: -6.5px;
  top: 6px;
}

.nav-list a {
  color: #0070f3;
  text-decoration: none;
  transition: font-weight 0.2s, color 0.2s;
}

.nav-list a.active {
  font-weight: 600;
  color: #0070f3;
}

.category-row {
  display: flex;
}

/* Links e bottoni */
.category-link {
  margin-left: 3px;
}

.info-icon {
  margin-left: 3px;
}

.btn-approfondimento {
  display: inline-flex;
  align-items: center;
  background-color: #F7F7F7;
  border-radius: 1000px;
  height: 32px;
  padding: 4px; 
  gap: 4px;
}

.btn-approfondimento-img {
  flex-shrink: 0; 
  width: 24px;  
  height: 24px;
}

.btn-opinione {
  font-size: 18px;
  min-width: 160px;
  height: 40px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-top) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 8px 12px 8px 12px;
  border: 1px solid var(--blue-top);
}

.opinion-row {
  border-top: 1px solid rgba(217, 217, 217, 1);
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 16px;
}
@media (max-width: 425px) {
  .opinion-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .sidebar {
    display: none;

}
}
.title-text-container {
  max-width: 784px;
}
/* Card */
.card-no-border {
  overflow: hidden;
  gap: 16px;
}
.opinione-link {
  width: 100%;
}
.card-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card-table-header .col {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.card-no-border-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mobile-header-wrapper {
  display: none;
}

.card-icon {
  width: 25px;
  height: 25px;
}
.card-row-multiple-row {
  display: block; 
  margin-top: 8px;
}
/* Tipografia */
.h1 {
  font-family: 'Nunito';
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 2.875rem;
  letter-spacing: .0625rem;
  color: #202124;
}

.h2 {
  font-family: 'Nunito';
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.625rem;
  letter-spacing: .0625rem;
  color: #202124;
}

.h3 {
  font-family: 'Nunito';
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 2.25rem;
  letter-spacing: .0625rem;
  color: #202124;
}
.h4 {
    font-family: 'Nunito';
    font-weight: 600;
    font-style: SemiBold;
    font-size: 1.625rem;
    line-height: 2.125rem;
    letter-spacing: .0625rem;
    color: #202124;
}

.h5 {
    font-family: 'Nunito';
    font-weight: 600;
    font-style: SemiBold;
    font-size: 1.375rem;
    line-height: 1.75rem;
    letter-spacing: .0625rem;
    color: #202124;
}

.h6 {
    font-family: 'Nunito';
    font-weight: 600;
    font-style: SemiBold;
    font-size: 1.25rem;
    line-height: 1.625rem;
    letter-spacing: .0625rem;
    color: #202124;
}
.t-body {
  font-family: 'Nunito';
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: .0625rem;
  color: #202124;
}

.t-body-bold {
  font-family: 'Nunito';
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: .0625rem;
  color: #202124;
}

.t-small {
  font-family: 'Nunito';
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: .0625rem;
  color: #202124;
}

/* Utility spacing */
.margin-t-40 {
  margin-top: 40px;
}

.margin-t-24 {
  margin-top: 24px;
}

.margin-t-16 {
  margin-top: 16px;
}

.margin-t-8 {
  margin-top: 8px;
}
.margin-t-4 {
  margin-top: 4px;
}
.margin-r-4 {
  margin-right: 4px;
}
.margin-b-0 {
  margin-bottom: 0px;
}

.margin-b-16 {
  margin-bottom: 16px;
}
.margin-b-24{
   margin-bottom: 24px;
}

.text-box-img{
  width: 100%;
  margin-top: 24px;
  object-fit: contain;
}


.image-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .image-grid-row {
    grid-template-columns: 1fr;
  }
  .mobile-header-wrapper {
    display: flex;
    align-items: center;
    gap: 8px; 
  }
  
  .mobile-header-wrapper p {
    margin-top: 0px;
  } 
  .card-table-header {
    display: none;
  }
  .card-no-border {
    padding: 0;
    margin-top: 16px !important;
  }
    .card-no-border-row {
    display: flex;
    flex-direction: column; 
    gap: 16px;
    margin-top: 0px;
  }
  
  .card-no-border-row p {
    margin-top: 8px;
  }
}
.image-container {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
}
.image-grid-row .col{
 display: flex;
  align-items: center;    
  gap: 10px;
}

/* =========== Statement → Pillars =========== */
.statement-lead{ margin: 0; font-weight: 300; }
.pillars{ display: grid; row-gap: 32px; }
.pillar-item{
  display: grid; grid-template-columns: 64px 1fr; column-gap: 24px; align-items: start;
}
/*@media (min-width:768px){ .pillar-item{ min-height: 140px; } }*/

.pillar-icon{
  width: 64px; height: 64px;
}
/* Material Symbols */
.pillar-symbol{
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: grid; place-items: center;
  inline-size: 28.8px; block-size: 28.8px; line-height: 1;
  color: var(--Icon-Color-Non-Interactive-Primary, #006EE6);
}
.pillar-text{ margin: 0; }
/* Spazio tra il paragrafo e la griglia dei pillars */
.hero_txt2_p + .pillars {
  margin-top: 16px;        /* aumenta a 24px se vuoi più aria */
}

.t-small-bold {
    font-family: 'Nunito';
    font-weight: 500;
    font-style: Medium;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: .0625rem;
    color: #202124;
}


.t-bold {
  font-weight: 600; 
}


.t-body-4 {
    font-family: 'Nunito';
    font-weight: 400;
    font-style: Light;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: .0625rem;
    color: #202124;
}