/* =========================================================
   PAGINA STANDARD — CSS COMPLETO (stile VPS/Blog)
   Namespace: .vh-standard
   File: assets/css/page-standard.css
   ========================================================= */

html, body{
  background:#070A12;
  overflow-x:hidden;
}

:root{
  --vh-btn-pad-y: 10px;
  --vh-btn-pad-x: 14px;
  --vh-btn-radius: 12px;
  --vh-btn-bg: rgba(11,54,198,.18);
  --vh-btn-bg-hover: rgba(11,54,198,.24);
  --vh-btn-border: rgba(11,54,198,.26);
  --vh-btn-text: rgba(255,255,255,.92);

  --vh-card-bg: rgba(255,255,255,.04);
  --vh-card-border: rgba(255,255,255,.08);
  --vh-card-shadow: 0 22px 60px rgba(0,0,0,.35);

  --vh-wrap-max: 1180px;
  --vh-wrap-pad: 18px;
}

/* page background */
.vh-standard{
  position: relative;
  color:#fff;
  background:
    radial-gradient(900px 480px at 20% 10%, rgba(48, 86, 255, .25), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(11, 54, 198, .22), transparent 60%),
    radial-gradient(900px 600px at 50% 90%, rgba(0,0,0,.75), transparent 60%),
    linear-gradient(#070A12, #05060C);
}

.vh-standard::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index: 0;
  opacity: .55;
  background-image: url("../img/home/clouds.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.vh-standard > *{ position: relative; z-index: 1; }

.vh-standard .vh-wrap{
  width: 100%;
  max-width: var(--vh-wrap-max);
  margin: 0 auto;
  padding-left: var(--vh-wrap-pad);
  padding-right: var(--vh-wrap-pad);
}

/* reset wrapper theme */
.vh-standard,
.vh-standard#content,
#content.vh-standard{
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.vh-standard .site-content,
.vh-standard .content-area,
.vh-standard #primary,
.vh-standard .site-main{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Buttons */
.vh-standard .vh-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--vh-btn-text);
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  line-height: 1;
  padding: var(--vh-btn-pad-y) var(--vh-btn-pad-x);
  border-radius: var(--vh-btn-radius);
  background: var(--vh-btn-bg);
  border: 1px solid var(--vh-btn-border);
  width: fit-content;
  white-space: nowrap;
}
.vh-standard .vh-btn--primary{
  background: var(--vh-btn-bg);
  border: 1px solid var(--vh-btn-border);
  box-shadow:none;
}
.vh-standard .vh-btn:hover{ background: var(--vh-btn-bg-hover); }
.vh-standard .vh-arrow{
  width: 10px;
  height: 10px;
  display:inline-block;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Titles */
.vh-standard .vh-kicker{
  display:inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  font-weight: 800;
}
.vh-standard .vh-section__title{
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 10px;
  letter-spacing: -0.6px;
  font-weight: 850;
}
.vh-standard .vh-section__subtitle{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

/* Hero */
.vh-standard .vh-hero{ padding-top: 100px; }
@media (max-width: 1024px){ .vh-standard .vh-hero{ padding-top: 30px; } }

.vh-standard .vh-hero__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}

.vh-standard .vh-hero__title{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.8px;
  font-weight: 800;
}

.vh-standard .vh-hero__lead{
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 680px;
}

.vh-standard .vh-hero__cta{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.vh-standard .vh-hero__art{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  justify-self: end;
  max-width: 560px;
}

.vh-standard .vh-hero__art img{
  width:100%;
  height:auto;
  display:block;
}

/* Sections */
.vh-standard .vh-section{ padding: 28px 0 30px; }

/* Card */
.vh-standard .vh-card{
  border-radius: 18px;
  background: var(--vh-card-bg);
  border: 1px solid var(--vh-card-border);
  box-shadow: var(--vh-card-shadow);
  overflow:hidden;
  backdrop-filter: blur(6px);
}

.vh-standard .vh-standard-card{
  padding: 0;
}
.vh-standard .vh-standard-prose{
  padding: 18px;
}

/* Prose (contenuto pagina) */
.vh-standard .vh-prose{
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  font-size: 15.5px;
}
.vh-standard .vh-prose p{ margin: 0 0 14px; }
.vh-standard .vh-prose a{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vh-standard .vh-prose a:hover{ color:#fff; }

.vh-standard .vh-prose h2,
.vh-standard .vh-prose h3{
  color: rgba(255,255,255,.95);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 20px 0 10px;
  font-weight: 900;
}
.vh-standard .vh-prose h2{ font-size: 22px; }
.vh-standard .vh-prose h3{ font-size: 18px; opacity: .95; }

.vh-standard .vh-prose ul,
.vh-standard .vh-prose ol{
  margin: 0 0 14px 18px;
}
.vh-standard .vh-prose li{ margin: 0 0 8px; }

.vh-standard .vh-prose blockquote{
  margin: 16px 0;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
}

.vh-standard .vh-prose img{
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
}

/* Tabelle dentro contenuto */
.vh-standard .vh-prose table{
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.vh-standard .vh-prose th,
.vh-standard .vh-prose td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
  vertical-align: top;
}
.vh-standard .vh-prose th{
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.22);
}
.vh-standard .vh-prose td{
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.vh-standard .vh-prose tr:last-child td{ border-bottom: 0; }

/* Citazioni (figcaption / cite) */
.vh-standard .vh-prose cite{
  color: rgba(255,255,255,.70);
  font-style: italic;
}
.vh-standard .vh-prose figcaption{
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.4;
}

/* Link footer */
.vh-standard .vh-standard-links{
  margin-top: 16px;
  display:flex;
  justify-content:center;
}

/* responsive */
@media (max-width: 1024px){
  .vh-standard .vh-hero__inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vh-standard .vh-hero__art{
    justify-self: center;
    margin: 0 auto;
    max-width: 520px;
  }
  .vh-standard .vh-hero__copy{
    text-align:center;
  }
  .vh-standard .vh-hero__lead{
    margin-left:auto;
    margin-right:auto;
  }
  .vh-standard .vh-hero__cta{
    justify-content:center;
  }
  .vh-standard .vh-btn{
    width: 100%;
    justify-content:center;
  }
}

@media (max-width: 520px){
  .vh-standard::before{
    background-position: center top;
    background-size: cover;
  }
}
