/* V26 — Maurer Point
   Blocco iniziale compatto, coerente con il sito e volutamente non invasivo. */
.maurer-point-section{
  padding: clamp(1.25rem, 2.5vw, 2rem) 0 clamp(1.8rem, 4vw, 3.2rem);
}

.maurer-point-card{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(150px, 230px);
  align-items:center;
  min-height:190px;
  overflow:hidden;
  border:1px solid rgba(79,125,59,.18);
  border-radius:22px 22px 22px 11px;
  background:#ffffff;
  box-shadow:
    0 14px 32px rgba(40,58,38,.07),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.maurer-point-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:5px;
  background:var(--color-green, #4f7d3b);
}

.maurer-point-copy{
  position:relative;
  z-index:2;
  padding:clamp(1.35rem, 3vw, 2.1rem) clamp(1.35rem, 4vw, 3rem);
}

.maurer-point-label{
  display:inline-block;
  margin:0 0 .42rem;
  color:#4f7d3b;
  font-size:.8rem;
  font-weight:820;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.maurer-point-copy h2{
  max-width:620px;
  margin:0;
  color:#1f2d22;
  font-size:clamp(1.5rem, 3.3vw, 2.35rem);
  line-height:1.05;
  letter-spacing:-.035em;
}

.maurer-point-art{
  align-self:stretch;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-width:0;
  padding:.45rem .8rem 0;
  background:#ffffff;
}

.maurer-point-art img{
  display:block;
  width:auto;
  height:min(220px, 100%);
  max-width:100%;
  object-fit:contain;
  object-position:center bottom;
  transform:translateY(2px);
  transition:transform .32s cubic-bezier(.2,.7,.2,1);
}

.maurer-point-card:hover .maurer-point-art img{
  transform:translateY(0) scale(1.018);
}

/* Anche in dark mode il blocco resta chiaro:
   l'artwork Maurer contiene aree bianche e testo scuro. */
:root[data-theme="dark"] .maurer-point-card,
:root[data-theme="dark"] .maurer-point-art{
  background:#ffffff;
}
:root[data-theme="dark"] .maurer-point-copy h2{
  color:#1f2d22;
}
:root[data-theme="dark"] .maurer-point-label{
  color:#4f7d3b;
}

@media (prefers-color-scheme: dark){
  :root:not([data-theme]) .maurer-point-card,
  :root:not([data-theme]) .maurer-point-art{
    background:#ffffff;
  }
  :root:not([data-theme]) .maurer-point-copy h2{
    color:#1f2d22;
  }
  :root:not([data-theme]) .maurer-point-label{
    color:#4f7d3b;
  }
}

@media (max-width:620px){
  .maurer-point-card{
    grid-template-columns:minmax(0, 1fr) 120px;
    min-height:150px;
    border-radius:18px 18px 18px 9px;
  }

  .maurer-point-copy{
    padding:1.15rem 1rem 1.15rem 1.2rem;
  }

  .maurer-point-copy h2{
    font-size:clamp(1.28rem, 6vw, 1.65rem);
  }

  .maurer-point-art{
    padding:.4rem .35rem 0;
  }

  .maurer-point-art img{
    height:148px;
  }
}

@media (max-width:390px){
  .maurer-point-card{
    grid-template-columns:minmax(0, 1fr) 102px;
  }

  .maurer-point-art img{
    height:132px;
  }
}

@media (prefers-reduced-motion: reduce){
  .maurer-point-art img{
    transition:none !important;
    transform:none !important;
  }
}


/* V28 — maggiore evidenza al Centro Maurer */
.maurer-point-card{min-height:225px;grid-template-columns:minmax(0,1fr) minmax(190px,290px);border:2px solid rgba(218,179,22,.46);box-shadow:0 18px 38px rgba(40,58,38,.10),inset 0 1px 0 rgba(255,255,255,.96)}
.maurer-point-card::before{width:7px;background:#f1cf2e}
.maurer-point-label{padding:.34rem .52rem;border-radius:7px;background:#f3d537;color:#181b18;letter-spacing:.075em}
.maurer-point-copy h2{margin-top:.15rem;font-size:clamp(1.75rem,3.8vw,2.7rem)}
.maurer-point-art img{height:min(265px,100%)}
@media(max-width:620px){.maurer-point-card{min-height:170px;grid-template-columns:minmax(0,1fr) 132px}.maurer-point-art img{height:164px}}
