
.noviro-page-hero {
  margin: 0 0 clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  border-radius: 1.25rem;
  background:
    linear-gradient(120deg, rgba(0,41,46,.98), rgba(0,72,75,.88)),
    radial-gradient(circle at 85% 20%, rgba(255,196,0,.18), transparent 35%);
  color: #fff;
}
.noviro-page-hero h1 {
  margin: .4rem 0 1rem;
  max-width: 15ch;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: .98;
  color: #fff;
}
.noviro-kicker {
  margin: 0;
  color: #ffc400;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.noviro-lead {
  max-width: 48rem;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}
.noviro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin: 1.5rem 0 3rem;
}
.noviro-card {
  padding: 1.5rem;
  border: 1px solid rgba(0,41,46,.15);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,41,46,.06);
}
.noviro-card h2,
.noviro-card h3 { margin-top: 0; }
.noviro-card a { text-decoration: none; }
.noviro-list {
  display: grid;
  gap: .65rem;
  margin: 1rem 0 2.5rem;
  padding-left: 1.25rem;
}
.noviro-list li::marker { color: #ffc400; }
.noviro-cta {
  margin: clamp(3rem, 7vw, 6rem) 0 0;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.25rem;
  background: #00292e;
  color: #fff;
}
.noviro-cta h2 { margin-top: 0; color: #fff; }
.noviro-cta p { color: rgba(255,255,255,.78); }
.noviro-button {
  display: inline-block;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  background: #ffc400;
  color: #00292e !important;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 900px) {
  .noviro-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .noviro-grid { grid-template-columns: 1fr; }
  .noviro-page-hero { border-radius: .85rem; }
}

/* Integrated layout compatibility with the original Noviro production theme */
body.page .site-main,
body.page main {
  overflow: hidden;
}
body.page .entry-content {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 5rem);
}
.noviro-page-hero {
  min-height: clamp(390px, 54vw, 610px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 70px rgba(0,41,46,.18);
}
