/* =============================
   Story.css - versione moderna pulita
   ============================= */

/* Layout principale articolo */
#story {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* HEADER ARTICOLO */
.story-header {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
}

/* Titolo */
.story-header .heading {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  text-transform: none;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #111;
  text-align: left;
  position: relative;
  display: inline-block;
}
.story-header .heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #e30613, #0077c8); /* rosso → azzurro */
  margin-top: 10px;
  border-radius: 3px;
}

/* Info autore/data */
.story-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

/* HERO IMAGE moderna */
.story-header .article-media-large {
  width: 100%;
  max-width: 1100px;
  margin: 1.5rem auto 2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.story-header .article-media-large img.story-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.story-header .article-media-large img.story-image:hover {
  transform: scale(1.03);
}

/* Didascalia moderna */
.story-header .caption {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.2rem); 
  /* minimo 0.9rem (mobile), cresce in base al viewport, massimo 1.2rem (desktop) */
  color: #fff;
  text-align: center;
  background: linear-gradient(to right, #d31027, #ea384d);
  padding: 0.7rem 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* INTRO */
.story-intro p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #333;
}

/* CORPO TESTO */
.story-body {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: #222;
}
.story-body p { margin: 1.2rem 0; }
.story-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 4px;
}
.story-body h2,
.story-body h3,
.story-body h4 {
  margin: 2rem 0 0.75rem;
  font-weight: bold;
  line-height: 1.4;
}
.story-body h2 { font-size: 1.4rem; }
.story-body h3 { font-size: 1.2rem; }
.story-body h4 { font-size: 1rem; }

/* FOOTER */
.story-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}

/* ELEMENTI EXTRA */
.story-extras {
  margin-top: 2rem;
  clear: both;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #story { max-width: 100%; padding: 0 0.75rem; }
  .story-header .heading { font-size: clamp(1.6rem, 5vw, 2rem); }
  .story-intro p { font-size: 1rem; }
}
