:root {
  --serif: 'Playfair Display', serif;
  --sans: 'Inter', sans-serif;
  --text-dark: #1a1a1a;
  --text-light: #555;
  --accent: #c26602 !important; /* Colore Ocra aggiornato */
  --line: #e0e0e0;
  --paper: #ffffff;
}

/* Base */
.magazine-container { max-width: 1400px; margin: 0 auto; padding: 0 40px 100px; background: #fff; position: relative; }
.magazine-container a { text-decoration: none !important; color: inherit !important; }

/* Header Testata */
.magazine-hero { text-align: center; padding: 60px 0; }
.magazine-hero h1 { font-family: var(--serif); font-size: 82px; margin: 10px 0; font-weight: 400; letter-spacing: -2px; color: var(--text-dark); }
.magazine-hero .hero-subtitle { 
    font-family: var(--sans); 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    font-size: 18px !important; 
    color: var(--text-light); 
    margin-top: 15px; 
    display: block;
    font-weight: 400;
}
.hero-top-line, .hero-bottom-line { height: 1px; background: var(--line); width: 100px; margin: 0 auto; }

/* Grid */
.main-grid { display: grid; grid-template-columns: 1fr 2.2fr 1fr; gap: 40px; align-items: stretch; border-top: 1px solid var(--line); padding-top: 40px; }
.magazine-column { display: flex; flex-direction: column; }

/* Centrale */
.featured-main { height: 100%; position: relative; display: flex; flex-direction: column; }
.img-wrapper { flex-grow: 1; position: relative; overflow: hidden; height: 500px; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }

.text-overlay-box {
  background: var(--paper); padding: 30px; margin: -60px 20px 0; position: relative; z-index: 20;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05); border: 1px solid #f0f0f0;
}
.text-overlay-box h2 { font-family: var(--serif); font-size: 32px; margin: 10px 0; line-height: 1.2; color: var(--text-dark); }
.text-overlay-box p { font-size: 16px; line-height: 1.6; color: var(--text-light); }

/* Metadati: Autore SOPRA e Data SOTTO */
.meta-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 15px;
}
.author, .meta-block .date {
    font-family: var(--sans);
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}
.author { color: #888; }
.author strong { color: var(--accent) !important; font-weight: 700; }
.meta-block .date { color: #999; }

/* Badge Categoria */
.cat-label { 
    font-family: var(--sans); 
    font-size: 12px !important; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--accent) !important; 
    font-weight: 700; 
    display: block; 
    margin-bottom: 5px; 
}

/* Sidebar */
.sidebar-box .box-title { 
    font-family: var(--sans); 
    text-transform: uppercase; 
    font-size: 14px !important; /* Ingrandito da 12px a 14px */
    font-weight: 800 !important; /* Grassetto molto marcato */
    letter-spacing: 2px; 
    margin-bottom: 20px; 
    border-bottom: 1px solid var(--accent); /* Linea sotto leggermente più spessa */
    color: var(--accent) !important; 
    display: inline-block; 
    padding-bottom: 5px;
}
.article-small h3 { font-family: var(--serif); font-size: 18px !important; margin: 5px 0 0; color: var(--text-dark); }

/* Data Alzata (Foglietto) */
.lifted-date {
  position: absolute; top: 0; right: 20px; background: white; padding: 10px 12px; text-align: center;
  box-shadow: -3px 3px 10px rgba(0,0,0,0.1); z-index: 10;
}
.lifted-date .day { display: block; font-family: var(--serif); font-size: 22px; font-weight: 700; color: #222; line-height: 1; }
.lifted-date .month-year { display: block; font-family: var(--sans); font-size: 12px !important; color: var(--accent); border-top: 1px solid #eee; margin-top: 5px; padding-top: 3px; }

.sep { border: 0; border-top: 1px solid var(--line); margin: 25px 0; width: 100%; }

@media (max-width: 1024px) { .main-grid { grid-template-columns: 1fr; gap: 40px; } }