:root{
  --bg: #f8f3eb;
  --ink: #1a1208;
  --muted: #6b5e47;
  --paper: rgba(255,252,245,.80);
  --line: rgba(60,36,12,.14);
  --shadow: 0 20px 50px rgba(0,0,0,.16);

  --amber: #7a4d10;
  --amber2: #4d2e08;
  --accent: #b87820;
  --cream: #efe0c4;

  --max: 1180px;

  --s1: .25rem;
  --s2: .5rem;
  --s3: .75rem;
  --s4: 1rem;
  --s5: 1.5rem;
  --s6: 2rem;
  --s7: 3rem;
  --s8: 4.5rem;

  --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Garamond, Georgia, serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(90, 50, 8, 0.10), transparent 60%),
              radial-gradient(900px 700px at 90% 20%, rgba(180, 120, 32, 0.07), transparent 55%),
              var(--bg);
}
a{color:inherit}
img{max-width:100%; display:block}

/* Top band */
.topband{
  border-bottom: 1px solid var(--line);
  background: rgba(255,252,245,.55);
  backdrop-filter: blur(8px);
}
.topband__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: .85rem var(--s5);
  display:flex;
  gap: var(--s4);
  align-items:center;
  justify-content:space-between;
}
.crumb{
  display:flex; gap:.5rem; align-items:center; flex-wrap:wrap;
  font-size: 13px; color: var(--muted);
}
.crumb b{color: var(--ink)}

/* Sticky nav */
.nav{
  position: sticky; top:0; z-index:50;
  border-bottom: 1px solid var(--line);
  background: rgba(248,243,235,.82);
  backdrop-filter: blur(10px);
}
.nav__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: .6rem var(--s5);
  display:flex; gap: .6rem;
  align-items:center; justify-content:space-between;
}
.nav__brand{
  display:flex; align-items:baseline; gap:.6rem;
  min-width: 220px;
}
.nav__brand .kicker{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__brand .title{
  font-family: var(--font-serif);
  font-weight: 650;
  font-size: 18px;
  color: var(--amber2);
}

/* Desktop links */
.nav__links{
  display:flex; gap:.35rem; flex-wrap:wrap;
  justify-content:flex-end;
}
.nav__links a{
  text-decoration:none;
  font-size: 13px;
  color: var(--amber2);
  padding: .42rem .62rem;
  border: 1px solid transparent;
}
.nav__links a:hover{
  background: rgba(122,77,16,.08);
  border-color: rgba(122,77,16,.18);
}

/* Burger (mobile) */
.nav__toggle{
  display:none;
  border: 1px solid rgba(60,36,12,.18);
  background: rgba(255,252,245,.70);
  padding: .45rem .62rem;
  cursor:pointer;
  font-weight: 800;
  color: var(--amber2);
  line-height: 1;
  min-width: 42px;
  text-align:center;
}
.nav__toggle:focus{outline: 2px solid rgba(122,77,16,.28); outline-offset:2px;}
.nav__toggle .bars{
  width:18px; height:12px; position:relative; display:inline-block;
}
.nav__toggle .bars::before,
.nav__toggle .bars::after,
.nav__toggle .bars span{
  content:"";
  position:absolute; left:0; right:0;
  height:2px;
  background: var(--amber2);
  opacity:.9;
}
.nav__toggle .bars::before{top:0}
.nav__toggle .bars span{top:5px}
.nav__toggle .bars::after{bottom:0}

/* Collapsible panel */
.nav__panel{
  display:none;
  border-top: 1px solid var(--line);
  background: rgba(248,243,235,.92);
  backdrop-filter: blur(10px);
}
.nav__panelInner{
  max-width: var(--max);
  margin: 0 auto;
  padding: .6rem var(--s5) .9rem;
  display:grid;
  gap:.35rem;
}
.nav__panelInner a{
  text-decoration:none;
  padding: .55rem .5rem;
  border: 1px solid rgba(60,36,12,.10);
  color: var(--amber2);
  background: rgba(255,252,245,.60);
  font-size: 13px;
  font-weight: 650;
}
.nav__panelInner a:hover{background: rgba(122,77,16,.08)}
.nav.is-open .nav__panel{display:block;}

/* HERO */
.hero{
  position: relative;
  border-bottom: 1px solid var(--line);
  min-height: clamp(520px, 72vh, 720px);
  display:grid;
  place-items: stretch;
  overflow: hidden;
  background: #1a0e04;
}

.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(20,10,2,.92) 0%,
      rgba(20,10,2,.78) 28%,
      rgba(20,10,2,.44) 52%,
      rgba(20,10,2,.12) 66%,
      rgba(20,10,2,0)   76%,
      rgba(20,10,2,0)   100%),
    url("img/hero/hero.jpg") right center/cover no-repeat;
  transform: scale(1.01);
}

.hero__inner{
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) var(--s5);
  width:100%;
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:start;
}

.hero__left{
  width: min(590px, 100%);
  display: grid;
  gap: 16px;
}

.hero__brand{
  display:flex;
  flex-direction:column;
  gap: 14px;
  padding-top: 6px;
}

.hero__kicker{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,220,140,.75);
  margin:0;
}

.hero__brand img{
  width: min(200px, 92%);
  height:auto;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.35));
}

.hero__info{
  width: 100%;
  margin: 0;
  color: rgba(255,245,220,.92);
}

.hero__subtitle{
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: .04em;
  color: rgba(255,235,165,.95);
}

.hero__rule{
  height:1px;
  background: rgba(255,200,80,.28);
  margin: 14px 0 16px;
}

.hero__meta{
  display:grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 18px 26px;
  align-items:start;
}

.hero__meta .big{
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: .95;
  font-weight: 650;
  margin: 0;
  letter-spacing:.4px;
  color: rgba(255, 255, 255, 0.95);
}

.hero__meta .big2{
  font-family: var(--font-serif);
  font-size: clamp(14px, 3.0vw, 24px);
  line-height: .95;
  font-weight: 650;
  margin: 0;
  letter-spacing:.4px;
  color: rgba(255, 255, 255, 0.85);
}

.hero__meta .place{
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  line-height: .95;
  font-weight: 650;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.hero__meta .placeSub{
  margin: 6px 0 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

/* INTRO MOSTRA */
.intro{
  padding: var(--s7) var(--s5);
  border-bottom: 1px solid var(--line);
  background: rgba(255,252,245,.60);
}

.intro__head{
  margin-bottom: var(--s5);
}

.intro__title{
  font-family: var(--font-serif);
  font-weight: 650;
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
  line-height: 1.2;
  color: var(--amber2);
  margin: 0;
}

.intro__date{
  display:block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: var(--s2);
}

.intro__body p{
  margin: 0 0 var(--s4);
  line-height: 1.7;
  color: var(--ink);
}

.intro__body p:last-child{
  margin-bottom: 0;
}

.intro__quote{
  margin: var(--s6) 0 0;
  padding-left: var(--s4);
  border-left: 3px solid rgba(122,77,16,.30);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--amber2);
}

.intro__quote footer{
  margin-top: var(--s2);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
}
.intro__summary{
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b87820;
}

.intro__summary::-webkit-details-marker{
  display: none;
}

.intro__summary::after{
  content: " ↓";
  font-weight: 400;
}

details[open] .intro__summary::after{
  content: " ↑";
}

/* Sections */
section{ padding: var(--s7) var(--s5); }
.wrap{ max-width: var(--max); margin: 0 auto; }
.wrapp{ max-width: var(--max); margin: 50px auto; }
.h2{
  font-family: var(--font-serif);
  font-weight: 650;
  font-size: 28px;
  margin: 0 0 var(--s3);
  color: var(--amber2);
  letter-spacing: .2px;
}
.lead{
  margin: 0 0 var(--s5);
  color: var(--muted);
  line-height: 1.65;
}
.grid{ display:grid; gap: var(--s5); }
.grid--2{ grid-template-columns: 1.1fr .9fr; align-items:start; }

.card{
  border: 1px solid var(--line);
  background: rgba(255,252,245,.72);
  overflow:hidden;
}
.card__pad{padding: var(--s5)}
.divider{height:1px; background: var(--line);}

.muted{ color: var(--muted); font-size: 13px; }

/* =========================
   OPERA THUMBNAILS
========================= */

.opera-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  align-content: start;
}

.opera-thumb {
  all: unset;
  cursor: zoom-in;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255,252,245,.72);
  overflow: hidden;
  transition: box-shadow .2s ease;
}

.opera-thumb:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.opera-thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.opera-thumb__label {
  display: block;
  padding: var(--s2) var(--s3);
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-serif);
  border-top: 1px solid var(--line);
  background: rgba(255,252,245,.9);
}

   /* =========================
   INAUGURAZIONE
========================= */

.inaugurazione{
  background: #4d2e08;
  color: rgba(255,255,255,.92);
  padding: var(--s6) var(--s5);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.inaugurazione__title{
  margin: 0 0 var(--s3);
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 650;
  color: rgba(255,255,255,.85);
}

.inaugurazione__text{
  margin: 0;
  max-width: 960px;
  line-height: 1.7;
  font-size: 15px;
}

.inaugurazione__media{
  margin-top: var(--s5);
}

.inaugurazione__video{
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.inaugurazione__video iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* =========================
   SPECIALE VIDEO
========================= */

.speciale-video{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}

.speciale-video .wrap{
  max-width: var(--max);
}

.speciale-video__head{
  margin-bottom: var(--s5);
}

.speciale-video__eyebrow{
  margin: 0 0 var(--s2);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.speciale-video__title{
  margin: 0 0 var(--s3);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.15;
  color: var(--blue2);
}

.speciale-video__text{
  margin: 0;
  max-width: 78ch;
  line-height: 1.7;
  color: var(--ink);
}

.speciale-video__media{
  margin-top: var(--s5);
  max-width: 960px;
}

.speciale-video__frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.speciale-video__frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,5,0,.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: var(--s5);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: var(--s4);
  right: var(--s5);
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  font-size: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}

.lightbox__close:hover {
  background: rgba(255,255,255,.12);
}

.lightbox__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 92dvh;
  gap: var(--s3);
}

.lightbox__img {
  max-height: 84dvh;
  max-width: 90vw;
  width: auto;
  height: auto;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

.lightbox__caption {
  color: rgba(255,240,200,.75);
  font-family: var(--font-serif);
  font-size: 14px;
  margin: 0;
  letter-spacing: .06em;
}

/* =========================
   SCHEDA OPERA
========================= */

.opera-images {
  display: grid;
  gap: var(--s4);
}

.opera-figure {
  margin: 0;
}

.opera-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}

.opera-caption {
  margin-top: var(--s2);
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-serif);
}

.opera-scheda{
  border: 1px solid var(--line);
  background: rgba(255,252,245,.72);
}

.opera-scheda__head{
  padding: var(--s3) var(--s4);
  background: var(--amber2);
  color: rgba(255,240,200,.95);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 650;
}

.opera-scheda__dl{
  margin: 0;
  display: grid;
  gap: 0;
}

.opera-scheda__row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
  padding: var(--s3) var(--s4);
}

.opera-scheda__row:last-child{
  border-bottom: 0;
}

.opera-scheda__row dt{
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}

.opera-scheda__row dd{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

/* VERSO */

.opera-verso{
  border: 1px solid var(--line);
  background: rgba(255,252,245,.72);
  padding: var(--s4);
}

.opera-verso__head{
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 650;
  color: var(--amber2);
  margin-bottom: 0;
}

/* =========================
   COMUNICATI / VOCI ISTITUZIONALI
========================= */

.press{
  display: grid;
  gap: var(--s4);
}

.press__item{
  border: 1px solid var(--line);
  background: rgba(255,252,245,.72);
}

.press__summary{
  cursor: pointer;
  padding: var(--s5);
  list-style: none;
}

.press__summary::-webkit-details-marker{
  display: none;
}

.press__who{
  display:block;
  font-family: var(--font-serif);
  font-weight: 650;
  color: var(--amber2);
  font-size: 18px;
  line-height: 1.25;
}

.press__meta{
  display:block;
  margin-top: var(--s2);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.press__preview{
  display:block;
  margin-top: var(--s3);
  color: var(--muted);
  line-height: 1.65;
}

.press__body{
  border-top: 1px solid var(--line);
  padding: var(--s6) var(--s5);
}

.press__inner{
  max-width: 78ch;
  margin: 0 auto;
}

.press__kicker{
  margin: 0 0 var(--s2);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.press__body p{
  margin: 0 0 var(--s4);
  line-height: 1.75;
  color: var(--ink);
}

/* =========================
   FOOTER ISTITUZIONALE
========================= */

.s-footer{
  background: #4d2e08;
  border-top: 1px solid var(--line);
}

.s-footer__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--s5);
}

.s-footer__logos{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: nowrap;
}

.s-footer__logo{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-width: 0;
}

.s-footer__logo img{
  height: 46px;
  width: auto;
  display: block;
  opacity: .90;
  transition: opacity .2s ease;
}

.s-footer__logo:hover img{ opacity: 1; }

@media (max-width: 1100px){
  .s-footer__logos{
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px 34px;
  }
}

@media (max-width: 768px){
  .s-footer__inner{ padding: 32px var(--s5); }
  .s-footer__logo img{ height: 42px; }
}

@media (max-width: 520px){
  .s-footer__logos{
    flex-direction: column;
    gap: 22px;
  }
  .s-footer__logo img{ height: 40px; }
}

/* =========================
   CREDITI FOTOGRAFICI
========================= */

.photo-credits{
  border-top: 1px solid var(--line);
  background: rgba(255,252,245,.6);
}

.photo-credits .wrap{
  padding: var(--s6) 0;
}

.photo-credits__title{
  margin: 0 0 var(--s4);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 650;
  color: var(--amber2);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.photo-credits__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .6rem;
  max-width: 90ch;
}

.photo-credits__list li{
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 860px){
  .photo-credits__list{
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

/* =========================
   FOOTER FINALE
========================= */

footer{
  padding: var(--s6) var(--s5);
  color: var(--muted);
  font-size: 12px;
  background: rgba(255,252,245,.45);
  border-top: 1px solid var(--line);
}
footer .wrap{display:flex; gap: var(--s4); justify-content:space-between; flex-wrap:wrap;}

/* ======= Scroll offset ======= */
:root{
  --scroll-offset: 76px;
}
html{
  scroll-padding-top: var(--scroll-offset);
}
main section[id]{
  scroll-margin-top: var(--scroll-offset);
}
@media (max-width: 980px){
  :root{ --scroll-offset: 64px; }
}

/* =========================
   SOCIAL DOCK
========================= */

.social{
  position: fixed;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  top: auto;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 6px 10px;
  background: rgba(255,252,245,.92);
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  z-index: 50;
}

.social a{
  width: 40px;
  height: 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform .15s ease;
  color: var(--amber2);
  text-decoration:none;
}

.social a:hover{
  transform: translateY(-2px);
}

.social svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  display:block;
}

.social .to-top{
  width: 40px;
  height: 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--amber2);
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease;
  opacity: 0;
  pointer-events: none;
}
.social .to-top.show{
  opacity: 1;
  pointer-events: auto;
}
.social .to-top:hover{
  transform: translateY(-2px);
}
.social .to-top svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  display:block;
}

/* DESKTOP: sidebar laterale */
@media (min-width: 1400px){
  .social{
    left: 14px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    gap: 10px;
  }

  .social a{
    width: 42px;
    height: 42px;
    background: rgba(255,252,245,.95);
    border: 1px solid var(--line);
    box-shadow: 0 10px 22px rgba(0,0,0,.10);
  }

  .social a:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,.14);
    background: #fff;
  }

  .social svg{
    width: 20px;
    height: 20px;
  }

  .social .to-top{
    width: 42px;
    height: 42px;
    background: rgba(255,252,245,.95);
    border: 1px solid var(--line);
    box-shadow: 0 10px 22px rgba(0,0,0,.10);
  }
  .social .to-top:hover{
    box-shadow: 0 14px 28px rgba(0,0,0,.14);
    background: #fff;
  }
  .social .to-top svg{
    width: 20px;
    height: 20px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px){
  .nav__toggle{display:inline-flex; align-items:center; justify-content:center;}
  .nav__links{display:none;}

  .hero{min-height: 640px;}
  .hero__inner{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px var(--s5) 28px;
  }
  .hero__bg{
    background:
      linear-gradient(180deg,
        rgba(20,10,2,.28) 0%,
        rgba(20,10,2,.10) 40%,
        rgba(20,10,2,.65) 78%,
        rgba(20,10,2,.90) 100%),
      url("img/hero/hero.jpg") 70% center/cover no-repeat;;
  }

  .hero__info{
    margin-top: 30px;
    margin-left: 0;
    justify-self: start;
    width: min(560px, 100%);
    background: rgba(20,10,2,.55);
    border: 1px solid rgba(255,200,80,.14);
    padding: 14px 14px 16px;
  }

  .hero__meta{grid-template-columns: 0.4fr 1fr;}
  .grid--2{grid-template-columns: 1fr;}
  .nav__brand{min-width: 0;}
}

@media (max-width: 520px){
  .topband__inner{padding-left: 1rem; padding-right: 1rem;}
  .nav__inner{padding-left: 1rem; padding-right: 1rem;}
  section{padding-left: 1rem; padding-right: 1rem;}
  .hero__meta{grid-template-columns: 0.4fr 1fr;}
  .opera-scheda__row{grid-template-columns: 100px 1fr;}
}
