/*
Theme Name:  Newtaste
Description: Tema custom per XTM Music Magazine
Version:     1.0.0
Author:      Sergio Soci
Text Domain: newtaste
*/

/* =====================================================================
   TOKEN DI DESIGN
   ===================================================================== */
:root {
  --nt-dark:      #181410;
  --nt-cream:     #F7F3EC;
  --nt-red:       #660000;
  --nt-red-mid:   #B04040;
  --nt-text:      #1C1813;
  --nt-muted:     #7A736A;
  --nt-border:    #E2DBCF;
  --nt-font-head: 'Bebas Neue', sans-serif;
  --nt-font-body: 'Raleway', sans-serif;
  --nt-max:       1400px;
  --nt-inner:     1280px;
  --nt-pad:       32px;
  --nt-header-h:  127px; /* utility 38px + masthead 89px */
}

/* =====================================================================
   RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}
html, body {
  background: var(--nt-red);
  font-family: var(--nt-font-body);
  color: var(--nt-text);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--nt-text); text-decoration: none; }
a:hover { color: var(--nt-red); }
::selection { background: var(--nt-red); color: #fff; }

/* =====================================================================
   WRAPPER SITO
   ===================================================================== */
.nt-site-wrap {
  min-width: 1200px;
  max-width: var(--nt-max);
  margin: 0 auto;
  background: var(--nt-cream);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
@media (max-width: 1200px) {
  .nt-site-wrap { min-width: 0; }
}

.nt-page-content {
  padding-top: 0;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.nt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nt-dark);
  border-bottom: 1px solid rgba(247,243,236,.06);
}

/* Barra utility (scorre con la pagina, fuori dall'header sticky) */
.nt-utility-bar {
  background: var(--nt-dark);
  border-bottom: 1px solid rgba(247,243,236,.12);
}
.nt-utility-inner {
  max-width: var(--nt-inner);
  margin: 0 auto;
  padding: 0 var(--nt-pad);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(247,243,236,.6);
}
.nt-utility-left, .nt-utility-right { display: flex; align-items: center; gap: 24px; }
.nt-utility-social { display: flex; align-items: center; gap: 14px; }
.nt-utility-social-link { color: rgba(247,243,236,.5); display: flex; align-items: center; transition: color .2s; }
.nt-utility-social-link:hover { color: var(--nt-cream); }
.nt-utility-link { color: rgba(247,243,236,.6); transition: color .2s; }
.nt-utility-link:hover { color: var(--nt-red-mid); }
.nt-utility-link--cta { color: var(--nt-cream); }

/* Masthead */
.nt-masthead { padding: 0; position: relative; }
.nt-masthead-inner {
  max-width: var(--nt-inner);
  margin: 0 auto;
  padding: 18px var(--nt-pad) 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nt-logo-link { display: block; flex-shrink: 0; }
.nt-logo { height: 78px; width: auto; display: block; }

/* Hamburger (standalone, nascosto su desktop) */
.nt-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  order: -1;
  flex-shrink: 0;
}

/* Azioni header (search, nascosto su desktop < 960px) */
.nt-header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}
.nt-hamburger span {
  display: block;
  height: 2px;
  background: var(--nt-cream);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.nt-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nt-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nt-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer mobile */
.nt-mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--nt-dark);
  border-top: 1px solid rgba(247,243,236,.08);
  border-bottom: 1px solid rgba(247,243,236,.08);
  z-index: 200;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.22,1,.36,1);
}
.nt-mobile-drawer.is-open { max-height: 600px; }
/* Drawer top/footer (mobile-only elements) */
.nt-mobile-drawer-top {
  display: flex;
  justify-content: flex-end;
  padding: 12px 16px 0;
}
.nt-mobile-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--nt-text);
  cursor: pointer;
  padding: 4px 8px;
}
.nt-mobile-drawer-footer {
  padding: 24px 20px 28px;
}
.nt-mobile-footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.nt-mobile-footer-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nt-muted);
}
.nt-mobile-newsletter-btn {
  display: block;
  text-align: center;
  background: var(--nt-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 2px;
}
.nt-mobile-newsletter-btn:hover { background: var(--nt-red-mid); color: #fff; }

.nt-mobile-nav { padding: 8px 0 16px; }
.nt-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.nt-mobile-nav ul ul { padding-left: 20px; border-left: 2px solid var(--nt-border); margin: 4px 0 8px; }
.nt-mobile-nav a {
  display: block;
  padding: 13px var(--nt-pad);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nt-text);
  text-decoration: none;
  transition: color .15s;
}
.nt-mobile-nav ul ul a {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--nt-muted);
  padding: 9px var(--nt-pad);
}
.nt-mobile-nav a:hover,
.nt-mobile-nav ul ul a:hover { color: var(--nt-red); }

/* Desktop: nascondi hamburger, mostra nav */
.nt-search-btn--desktop { display: flex; }

@media (max-width: 960px) {
  .nt-nav { display: none; }
  .nt-header-actions { display: flex; }
  .nt-hamburger { display: flex; }
  .nt-mobile-drawer { display: block; }
  .nt-logo { height: 52px; }
  .nt-masthead-inner { padding: 14px var(--nt-pad); gap: 16px; }
}

/* Tablet: hamburger e search raggruppati a destra, drawer overlay */
@media (min-width: 769px) and (max-width: 960px) {
  .nt-hamburger { margin-left: auto; order: 2; }
  .nt-header-actions { order: 3; margin-left: 0; }

  /* Drawer tablet = overlay full-screen, stesso comportamento del mobile */
  .nt-mobile-drawer {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    max-height: none;
    height: 100dvh;
    background: var(--nt-cream);
    z-index: 500;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    border: none;
    padding: 0;
  }
  .nt-mobile-drawer.is-open {
    max-height: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Navigazione */
.nt-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-bottom: 0;
}
/* Comprime la nav tra 961px e 1150px */
@media (min-width: 961px) and (max-width: 1150px) {
  .nt-nav { gap: 16px; font-size: 12px; letter-spacing: .07em; }
  .nt-masthead-inner { padding: 14px 20px; gap: 12px; }
}
/* Nasconde il nav desktop su schermi ≤960px (regola DOPO la definizione base, vince sulla cascade) */
@media (max-width: 960px) { .nt-nav { display: none; } }

.nt-nav-link {
  position: relative;
  color: rgba(247,243,236,.75);
  padding-bottom: 15px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s;
}
.nt-nav-link:hover,
.nt-nav-link--active { color: var(--nt-red-mid); }

.nt-nav-underline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--nt-red-mid);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nt-nav-link:hover .nt-nav-underline,
.nt-nav-link--active .nt-nav-underline,
.nt-nav-underline.is-active { transform: scaleX(1); }

/* Icona cerca */
.nt-search-btn {
  background: none; border: none;
  color: rgba(247,243,236,.75);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 0 15px;
  transition: color .2s;
}
.nt-search-btn:hover { color: var(--nt-red-mid); }

.nt-search-icon {
  display: inline-block;
  width: 15px; height: 15px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.nt-search-icon::after {
  content: '';
  position: absolute;
  width: 1.5px; height: 8px;
  background: currentColor;
  bottom: -6px; right: -3px;
  transform: rotate(-45deg);
}

/* =====================================================================
   MEGA MENU
   ===================================================================== */
.nt-altro-wrap {
  position: static;
  display: flex;
  align-items: center;
}

/* =====================================================================
   MEGAMENU — full-width, ancorato al .nt-masthead
   ===================================================================== */
.nt-megamenu {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--nt-dark);
  border-top: 2px solid var(--nt-red);
  padding: 40px var(--nt-pad);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .28s cubic-bezier(.22,1,.36,1),
              transform .28s cubic-bezier(.22,1,.36,1),
              visibility .28s;
  box-shadow: 0 32px 64px rgba(0,0,0,.55);
  z-index: 999;
}
.nt-megamenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Griglia 5 colonne */
.nt-megamenu-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: var(--nt-max);
  margin: 0 auto;
}

/* Singola colonna categoria */
.nt-mega-col {
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(247,243,236,.08);
}
.nt-mega-col:last-child {
  border-right: none;
  padding-right: 0;
}
.nt-mega-col:not(:first-child) {
  padding-left: 28px;
}

/* Testa categoria */
.nt-mega-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--nt-cream);
  transition: color .18s;
}
.nt-mega-cat-head:hover { color: var(--nt-red-mid); }

.nt-mega-cat-name {
  font-family: var(--nt-font-head);
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}
.nt-mega-cat-arrow {
  flex-shrink: 0;
  opacity: .5;
  transition: opacity .18s, transform .18s;
}
.nt-mega-cat-head:hover .nt-mega-cat-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Separatore */
.nt-mega-divider {
  height: 1px;
  background: rgba(247,243,236,.12);
  margin-bottom: 16px;
}

/* Lista articoli recenti */
.nt-mega-posts {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nt-mega-post-link {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(247,243,236,.55);
  display: block;
  transition: color .18s;
}
.nt-mega-post-link:hover { color: var(--nt-cream); }

/* =====================================================================
   OVERLAY (SEARCH + NEWSLETTER)
   ===================================================================== */
.nt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,16,12,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 14vh var(--nt-pad) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s cubic-bezier(.22,1,.36,1), visibility .4s;
}
.nt-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Search */
.nt-search-box {
  width: 100%;
  max-width: 820px;
  transform: translateY(-10px);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.nt-overlay.is-open .nt-search-box { transform: translateY(0); }

.nt-search-box form {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 2px solid rgba(247,243,236,.3);
  padding-bottom: 22px;
}

.nt-search-icon-lg {
  display: inline-block;
  width: 24px; height: 24px;
  border: 2px solid rgba(247,243,236,.7);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.nt-search-icon-lg::after {
  content: '';
  position: absolute;
  width: 2.5px; height: 12px;
  background: rgba(247,243,236,.7);
  bottom: -9px; right: -4px;
  transform: rotate(-45deg);
}

.nt-search-box input[type="search"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--nt-font-head);
  font-size: 42px;
  color: var(--nt-cream);
  letter-spacing: .01em;
}
.nt-search-box input[type="search"]::placeholder { color: rgba(247,243,236,.35); }

.nt-close-btn {
  background: none; border: none;
  color: rgba(247,243,236,.5);
  font-size: 30px; line-height: 1;
  cursor: pointer; padding: 4px;
  transition: color .2s;
}
.nt-close-btn:hover { color: var(--nt-red-mid); }

.nt-suggestions-label {
  margin-top: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(247,243,236,.4);
}
.nt-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.nt-suggestion {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(247,243,236,.75);
  border: 1px solid rgba(247,243,236,.25);
  border-radius: 2px;
  padding: 8px 16px;
  transition: border-color .2s, color .2s;
}
.nt-suggestion:hover { border-color: var(--nt-red-mid); color: var(--nt-red-mid); }

/* Newsletter */
.nt-newsletter-overlay {
  align-items: center;
  padding: 32px;
}
.nt-newsletter-box {
  width: 100%;
  max-width: 600px;
  text-align: center;
  position: relative;
  transform: translateY(-10px);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.nt-overlay.is-open .nt-newsletter-box { transform: translateY(0); }

.nt-newsletter-close {
  position: absolute;
  top: -44px; right: 0;
}
.nt-newsletter-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--nt-red-mid);
  margin-bottom: 14px;
}
.nt-newsletter-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 55px;
  line-height: .95;
  color: var(--nt-cream);
}
.nt-newsletter-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(247,243,236,.65);
  max-width: 500px;
  margin: 20px auto 0;
}
.nt-newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.nt-newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(247,243,236,.06);
  border: 1px solid rgba(247,243,236,.25);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--nt-cream);
  font-size: 14px;
  outline: none;
  font-family: var(--nt-font-body);
}
.nt-newsletter-form button[type="submit"] {
  background: var(--nt-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 24px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.nt-newsletter-form button[type="submit"]:hover { background: var(--nt-red-mid); }
.nt-newsletter-thanks {
  font-size: 15px;
  color: var(--nt-cream);
  border: 1px solid rgba(247,243,236,.25);
  border-radius: 2px;
  padding: 18px;
  margin-top: 28px;
}
.nt-newsletter-note {
  font-size: 11.5px;
  color: rgba(247,243,236,.4);
  margin-top: 18px;
}

/* CF7 inside newsletter modal */
.nt-newsletter-cf7 { margin-top: 28px; }
.nt-newsletter-cf7 .wpcf7 { margin: 0; }
.nt-newsletter-cf7 .wpcf7-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 520px;
  margin: 0 auto;
}
.nt-newsletter-cf7 .wpcf7-form p { margin: 0; display: contents; }
.nt-newsletter-cf7 .wpcf7-form br { display: none; }
.nt-newsletter-cf7 .wpcf7-form-control-wrap { display: contents; }
.nt-newsletter-cf7 .wpcf7-spinner { display: none !important; }
.nt-newsletter-cf7 input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(247,243,236,.06);
  border: 1px solid rgba(247,243,236,.25);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--nt-cream);
  font-size: 14px;
  outline: none;
  font-family: var(--nt-font-body);
  min-width: 0;
}
.nt-newsletter-cf7 input[type="email"]::placeholder { color: rgba(247,243,236,.45); }
.nt-newsletter-cf7 input[type="submit"],
.nt-newsletter-cf7 .wpcf7-submit {
  background: var(--nt-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 24px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  font-family: var(--nt-font-body);
  height: 50px;
}
.nt-newsletter-cf7 input[type="submit"]:hover,
.nt-newsletter-cf7 .wpcf7-submit:hover { background: var(--nt-red-mid); }
.nt-newsletter-cf7 .wpcf7-not-valid-tip { color: #ff8080; font-size: 12px; margin-top: 6px; }
.nt-newsletter-cf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 14px;
  color: var(--nt-cream);
  border: 1px solid rgba(247,243,236,.25);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.nt-footer {
  background: var(--nt-dark);
  color: var(--nt-cream);
}
.nt-footer-inner {
  max-width: var(--nt-inner);
  margin: 0 auto;
  padding: 52px var(--nt-pad) 40px;
}
.nt-footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247,243,236,.14);
}
.nt-footer-logo { height: 56px; width: auto; display: block; }
.nt-footer-tagline {
  font-size: 14px;
  color: rgba(247,243,236,.6);
  margin-top: 14px;
}
.nt-footer-nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nt-footer-nav a { color: rgba(247,243,236,.7); transition: color .2s; }
.nt-footer-nav a:hover { color: var(--nt-red-mid); }
.nt-footer-copy {
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(247,243,236,.45);
  letter-spacing: .04em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nt-footer-credits { letter-spacing: .03em; }
.nt-footer-credits a {
  color: rgba(247,243,236,.6);
  text-decoration: none;
  transition: color .15s;
}
.nt-footer-credits a:hover { color: var(--nt-cream); }

/* =====================================================================
   HERO AREA
   ===================================================================== */
.nt-hero-area {
  background: var(--nt-dark);
  color: var(--nt-cream);
}
.nt-hero-wrap {
  max-width: var(--nt-inner);
  margin: 0 auto;
  padding: 32px var(--nt-pad) 0;
}

/* Slider + upnext */
.nt-slider-wrap {
  display: grid;
  grid-template-columns: 1fr 372px;
  gap: 20px;
  align-items: stretch;
}

/* Stage */
.nt-slider {
  position: relative;
  height: 560px;
  border-radius: 4px;
  overflow: hidden;
  background: #241E17;
}
.nt-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.nt-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.nt-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.nt-slide-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.nt-slide-bg--empty { background: #2a2015; }
.nt-slide-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,12,8,.94) 0%, rgba(16,12,8,.55) 45%, rgba(16,12,8,0) 100%);
}
.nt-slide-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 44px 64px;
}
.nt-slide-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.nt-slide-cat {
  background: var(--nt-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 5px 12px 4px;
  border-radius: 2px;
}
.nt-slide-date {
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(247,243,236,.75);
}
.nt-slide-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 64px;
  line-height: .94;
  letter-spacing: .005em;
  margin: 0;
  max-width: 640px;
  color: var(--nt-cream);
}
.nt-slide-title a { color: inherit; }
.nt-slide-title a:hover { color: var(--nt-red-mid); }
.nt-slide-dek {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(247,243,236,.8);
  max-width: 520px;
}

/* Frecce */
.nt-slider-arrows {
  position: absolute;
  right: 24px; top: 24px;
  display: flex; gap: 8px;
  z-index: 40;
}
.nt-arrow {
  width: 42px; height: 42px;
  border-radius: 2px;
  border: 1px solid rgba(247,243,236,.35);
  background: rgba(16,12,8,.45);
  color: var(--nt-cream);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s;
}
.nt-arrow:hover { background: var(--nt-red); border-color: var(--nt-red); }

/* Contatore + progress */
.nt-slider-counter {
  position: absolute;
  left: 44px; top: 28px;
  z-index: 40;
  font-family: var(--nt-font-head);
  font-size: 20px;
  letter-spacing: .1em;
  color: rgba(247,243,236,.85);
  pointer-events: none;
}
.nt-progress-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: rgba(247,243,236,.15);
  z-index: 40;
}
.nt-progress-fill {
  height: 100%;
  background: var(--nt-red-mid);
  width: 25%;
  transition: width .3s ease;
}

/* Up-next rail */
.nt-upnext {
  display: flex;
  flex-direction: column;
  height: 560px;
}
.nt-upnext-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247,243,236,.5);
  padding: 2px 2px 12px;
}
.nt-upnext-item {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 4px;
  cursor: pointer;
  background: rgba(247,243,236,.03);
  border-left: 3px solid rgba(247,243,236,.12);
  transition: background .25s, border-color .25s;
  margin-bottom: 10px;
}
.nt-upnext-item:last-child { margin-bottom: 0; }
.nt-upnext-item:hover,
.nt-upnext-item.is-active {
  background: rgba(247,243,236,.08);
  border-color: var(--nt-red-mid);
}
.nt-upnext-num {
  font-family: var(--nt-font-head);
  font-size: 30px;
  line-height: 1;
  color: rgba(247,243,236,.35);
  min-width: 34px;
}
.nt-upnext-item.is-active .nt-upnext-num { color: var(--nt-red-mid); }
.nt-upnext-info { display: flex; flex-direction: column; gap: 5px; }
.nt-upnext-cat {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--nt-red-mid);
}
.nt-upnext-title {
  font-family: var(--nt-font-head);
  font-size: 22px; line-height: 1;
  letter-spacing: .01em;
  color: rgba(247,243,236,.7);
}
.nt-upnext-item.is-active .nt-upnext-title { color: var(--nt-cream); }

/* Tour strip */
.nt-tour-strip {
  padding: 36px 0 40px;
}
.nt-section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
.nt-tour-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 30px;
  margin: 0;
  letter-spacing: .02em;
}
.nt-section-sub {
  font-size: 13px;
  color: rgba(247,243,236,.55);
}
.nt-section-line {
  flex: 1;
  height: 1px;
  background: rgba(247,243,236,.15);
}
.nt-section-more {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nt-red-mid);
  white-space: nowrap;
  transition: color .2s;
}
.nt-section-more:hover { color: var(--nt-cream); }

.nt-tour-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.nt-tour-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(247,243,236,.14);
  border-radius: 4px;
  color: var(--nt-cream);
  transition: border-color .2s, background .2s;
}
.nt-tour-card:hover {
  border-color: var(--nt-red-mid);
  background: rgba(176,64,64,.12);
  color: var(--nt-cream);
}
.nt-tour-card--placeholder { opacity: .6; cursor: default; }
.nt-tour-empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 4px;
  color: rgba(247,243,236,.35);
}
.nt-tour-empty p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(247,243,236,.4);
}
.nt-tour-date {
  font-family: var(--nt-font-head);
  font-size: 28px;
  line-height: .9;
  color: var(--nt-red-mid);
}
.nt-tour-artist {
  font-family: var(--nt-font-head);
  font-size: 21px;
  line-height: .95;
  letter-spacing: .01em;
}
.nt-tour-venue {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(247,243,236,.6);
}

/* =====================================================================
   MAIN + SIDEBAR
   ===================================================================== */
.nt-main-wrap {
  padding: 56px 0 64px;
}
.nt-main-inner {
  max-width: var(--nt-inner);
  margin: 0 auto;
  padding: 0 var(--nt-pad);
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 48px;
  align-items: start;
}

/* Sezione generica */
.nt-section { padding: 0 0 48px; }

.nt-section .nt-section-head {
  margin-bottom: 26px;
}
.nt-section .nt-section-line {
  background: var(--nt-text);
  height: 2px;
}
.nt-section-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 46px;
  margin: 0;
  letter-spacing: .01em;
}
.nt-section .nt-section-more { color: var(--nt-red); }
.nt-section .nt-section-more:hover { color: var(--nt-text); }

/* Featured list (Ultime News) */
.nt-featured-list { display: flex; flex-direction: column; gap: 28px; }
.nt-featured-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.nt-featured-img {
  position: relative;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
}
.nt-featured-img img { width:100%; height:100%; object-fit:cover; }
.nt-cat-main--cinema .nt-featured-item { gap: 32px; grid-template-columns: auto 1fr; align-items: center; }
.nt-cat-main--cinema .nt-featured-img {
  height: auto;
  overflow: visible;
  display: flex;
  justify-content: center;
  background: transparent;
}
.nt-cat-main--cinema .nt-featured-img img {
  width: 300px;
  height: auto;
  object-fit: unset;
  display: block;
  border-radius: 4px;
}
.nt-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.nt-card-meta .nt-badge { margin-bottom: 0; }
.nt-card-meta--no-artist .nt-badge { margin-bottom: 10px; display: inline-block; }
.nt-badge {
  background: var(--nt-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 10px 3px;
  border-radius: 2px;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
}
.nt-byline { font-size: 13px; color: var(--nt-red); margin-top: 8px; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; text-transform: uppercase; }
.nt-artista-label {
  display: inline;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nt-muted);
  margin-right: 4px;
}
.nt-featured-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 34px;
  line-height: .98;
  margin: 0;
  letter-spacing: .01em;
}
.nt-featured-item:hover .nt-featured-title { color: var(--nt-red); }
.nt-featured-dek { font-size: 15px; line-height: 1.6; color: var(--nt-muted); margin: 14px 0 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* List (Primo Piano) */
.nt-list { display: flex; flex-direction: column; }
.nt-list--2col { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 32px; }
.nt-list--2col .nt-list-item { border-bottom: 1px solid var(--nt-border); }
@media (max-width: 640px) { .nt-list--2col { grid-template-columns: 1fr; } }
.nt-list-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--nt-border);
}
.nt-list-thumb { height: 82px; border-radius: 3px; overflow: hidden; }
.nt-list-thumb img { width:100%; height:100%; object-fit:cover; }
.nt-list-body { display: flex; flex-direction: column; gap: 6px; }
.nt-list-cat {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--nt-red);
}
.nt-list-title { font-family: var(--nt-font-body); font-weight: 600; font-size: 17px; line-height: 1.3; }
.nt-list-item:hover .nt-list-title { color: var(--nt-red); }
.nt-list-date { font-size: 12.5px; color: var(--nt-muted); }
.nt-more-link {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  transition: color .2s;
}
.nt-more-link:hover { color: var(--nt-red); }

/* Video del Giorno */
.nt-adv-banner {
  background: var(--nt-dark);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 48px;
  text-align: center;
}
.nt-adv-banner a { display: block; }
.nt-adv-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.nt-video-giorno {
  background: var(--nt-dark);
  color: var(--nt-cream);
  border-radius: 6px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 48px;
}
.nt-vg-media {
  position: relative;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
}
.nt-vg-media img { width:100%; height:100%; object-fit:cover; }
.nt-vg-media iframe { width:100%; height:100%; border:0; }
.nt-vg-tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--nt-red-mid); margin-bottom: 14px;
}
.nt-vg-title {
  font-family: var(--nt-font-head);
  font-weight: 400; font-size: 46px;
  line-height: .95; margin: 0 0 8px;
  letter-spacing: .01em; color: var(--nt-cream);
}
.nt-vg-byline {
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(247,243,236,.55); margin-bottom: 16px;
}
.nt-vg-dek { font-size: 16px; line-height: 1.6; color: rgba(247,243,236,.8); margin: 0 0 24px; }
.nt-vg-cta {
  display: inline-block;
  background: var(--nt-red);
  color: #fff;
  font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 2px;
  transition: background .2s, color .2s;
}
.nt-vg-cta:hover { background: var(--nt-cream); color: var(--nt-dark); }

/* New Releases */
.nt-releases-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.nt-release-card { display: flex; flex-direction: column; gap: 0; }
.nt-release-cover {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
}
.nt-release-cover img { width:100%; height:100%; object-fit:cover; }
.nt-release-artist {
  font-family: var(--nt-font-head);
  font-size: 28px; line-height: 1;
  margin-top: 16px; letter-spacing: .01em;
}
.nt-release-card:hover .nt-release-artist { color: var(--nt-red); }
.nt-release-title { font-size: 16px; font-weight: 600; margin-top: 5px; }
.nt-release-label {
  font-size: 12.5px; color: var(--nt-muted);
  margin-top: 4px; letter-spacing: .06em; text-transform: uppercase;
}

/* Live Review */
.nt-live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.nt-live-card {
  position: relative;
  display: block;
  height: 340px;
  border-radius: 4px;
  overflow: hidden;
}
.nt-live-card img { width:100%; height:100%; object-fit:cover; }
.nt-img-placeholder { width:100%; height:100%; background: #ccc5b5; }
.nt-live-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(16,12,8,.92), rgba(16,12,8,0));
  display: flex; flex-direction: column; gap: 6px;
  justify-content: flex-end;
  padding: 0 22px 20px;
}
.nt-live-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--nt-red-mid);
}
.nt-live-title {
  font-family: var(--nt-font-head);
  font-size: 32px; line-height: .95;
  color: var(--nt-cream); letter-spacing: .01em;
}
.nt-live-sub { font-size: 13px; color: rgba(247,243,236,.75); }

/* Cards generiche (Emergenti, Cinema, Libri) */
.nt-cards-grid { display: grid; gap: 20px; }
.nt-cards-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.nt-cards-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

/* POSTER GRID — locandine (Festival, Teatro) */
.nt-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.nt-poster-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.nt-poster { display: block; text-decoration: none; }
.nt-poster-img {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 3px;
  background: var(--nt-placeholder);
}
.nt-poster-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.nt-poster:hover .nt-poster-img img { transform: scale(1.04); }
.nt-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,.92) 0%, rgba(20,16,12,.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 5px;
}
.nt-poster-tag {
  font-family: var(--nt-font-head);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nt-red-mid);
}
.nt-poster-title {
  font-family: var(--nt-font-head);
  font-size: 30px;
  line-height: 1.05;
  color: var(--nt-cream);
  letter-spacing: .01em;
}
.nt-poster-date {
  font-size: 11px;
  color: rgba(247,243,236,.5);
}
@media (max-width: 900px) {
  .nt-poster-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

.nt-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--nt-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .2s;
}
.nt-card:hover { border-color: var(--nt-red); }
.nt-card-img { height: 200px; overflow: hidden; }
.nt-card-img img { width:100%; height:100%; object-fit:cover; }
.nt-card-body {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px 22px;
}
.nt-card-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--nt-red);
}
.nt-card-title {
  font-family: var(--nt-font-head);
  font-size: 26px; line-height: .95; letter-spacing: .01em;
}
.nt-card-sub { font-size: 14px; color: var(--nt-muted); }

/* Pulsante play */
.nt-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.nt-play-btn span {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--nt-red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.nt-play-btn span::after {
  content: '';
  width: 0; height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #fff;
  margin-left: 5px;
}

/* =====================================================================
   SIDEBAR
   ===================================================================== */
.nt-sidebar {
  display: flex; flex-direction: column; gap: 0;
  height: auto;
  background: var(--nt-dark);
  color: var(--nt-cream);
  border-radius: 6px;
}
.nt-sidebar-block { padding: 24px 26px; border-bottom: 1px solid rgba(247,243,236,.08); flex-shrink: 0; }
.nt-sidebar-block:last-child { border-bottom: none; }

.nt-sidebar-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.nt-sidebar-bar {
  width: 3px; height: 14px;
  background: var(--nt-red-mid);
  display: inline-block; flex-shrink: 0;
}

.nt-sidebar-video { display: block; }
.nt-sidebar-thumb {
  position: relative;
  height: 170px; border-radius: 4px; overflow: hidden;
}
.nt-sidebar-thumb img { width:100%; height:100%; object-fit:cover; }
.nt-play-sm {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.nt-play-sm span {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--nt-red-mid);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.nt-play-sm span::after {
  content: '';
  width: 0; height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  margin-left: 3px;
}
.nt-sidebar-video-title {
  font-family: var(--nt-font-head);
  font-weight: 400; font-size: 20px;
  line-height: 1.1; margin: 14px 0 4px;
  color: var(--nt-cream);
}
.nt-sidebar-video-by {
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; color: var(--nt-red-mid); margin-bottom: 8px;
}
.nt-sidebar-video-dek {
  font-size: 12.5px; line-height: 1.5;
  color: rgba(247,243,236,.6); margin: 0;
}

.nt-sidebar-news-title {
  font-family: var(--nt-font-head);
  font-weight: 400; font-size: 40px;
  line-height: .9; margin: 0 0 6px;
}
.nt-sidebar-news-sub { font-size: 13px; color: rgba(247,243,236,.55); margin-bottom: 14px; }
.nt-sidebar-news-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px; align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(247,243,236,.1);
}
.nt-sidebar-news-thumb { height: 52px; border-radius: 3px; overflow: hidden; }
.nt-sidebar-news-thumb img { width:100%; height:100%; object-fit:cover; }
.nt-sidebar-news-body { display: flex; flex-direction: column; gap: 4px; }
.nt-sidebar-news-ttl {
  font-size: 13px; font-weight: 700;
  line-height: 1.3; color: var(--nt-cream);
}
.nt-sidebar-news-item:hover .nt-sidebar-news-ttl { color: var(--nt-red-mid); }
.nt-sidebar-news-date { font-size: 11.5px; color: rgba(247,243,236,.45); }
.nt-sidebar-more {
  display: inline-block; margin-top: 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--nt-red-mid); transition: color .2s;
}
.nt-sidebar-more:hover { color: var(--nt-cream); }

/* Sidebar — Instagram */
.nt-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 12px;
}
.nt-insta-cell {
  aspect-ratio: 1;
  background: rgba(247,243,236,.08);
  border-radius: 2px;
  overflow: hidden;
  display: block;
}
.nt-insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}
.nt-insta-cell:hover img { opacity: .85; }
.nt-insta-follow {
  display: block;
  text-align: center;
  padding: 8px 12px;
  border: 1px solid rgba(247,243,236,.2);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nt-cream);
  transition: background .2s, border-color .2s, color .2s;
}
.nt-insta-follow:hover {
  background: var(--nt-red);
  border-color: var(--nt-red);
  color: #fff;
}

/* Sidebar — Podcast */
.nt-sidebar-podcast-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(247,243,236,.06);
}
.nt-sidebar-podcast-item:last-child { border-bottom: none; }
.nt-sidebar-podcast-thumb {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 3px; overflow: hidden;
  background: rgba(247,243,236,.08);
  display: flex; align-items: center; justify-content: center;
}
.nt-sidebar-podcast-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nt-sidebar-podcast-body { display: flex; flex-direction: column; gap: 4px; }
.nt-podcast-icon { font-size: 20px; }

/* Sidebar — Ad */
.nt-sidebar-ad-label {
  font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(247,243,236,.3);
  margin-bottom: 8px;
}
.nt-sidebar-ad {
  width: 100%; aspect-ratio: 4/3;
  background: rgba(247,243,236,.04);
  border: 1px dashed rgba(247,243,236,.1);
  border-radius: 4px;
}

/* =====================================================================
   AVATAR CON INIZIALI
   ===================================================================== */
.nt-initials-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nt-red);
  color: #fff;
  font-family: var(--nt-font-body);
  font-weight: 700;
  letter-spacing: .04em;
  flex-shrink: 0;
  line-height: 1;
}

/* =====================================================================
   SHARED INNER PADDING
   ===================================================================== */
.nt-inner-pad {
  max-width: var(--nt-inner);
  margin: 0 auto;
  padding: 0 var(--nt-pad);
}

/* =====================================================================
   BREADCRUMB
   ===================================================================== */
.nt-breadcrumb-wrap {
  padding: 20px 0 0;
}
.nt-breadcrumb-wrap--single .nt-inner-pad {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 48px;
}
.nt-breadcrumb-wrap--single .nt-breadcrumb {
  grid-column: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.nt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--nt-muted);
}
.nt-breadcrumb a { color: var(--nt-muted); }
.nt-breadcrumb a:hover { color: var(--nt-red); }
.nt-breadcrumb--single { margin-bottom: 20px; }
.nt-breadcrumb--light { color: rgba(247,243,236,.5); }
.nt-breadcrumb--light a { color: rgba(247,243,236,.5); }
.nt-breadcrumb--light a:hover { color: var(--nt-red-mid); }

/* =====================================================================
   SINGLE POST
   ===================================================================== */
.nt-single-wrap { padding: 20px 0 64px; }

.nt-single-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 48px;
  align-items: start;
}

/* Article header */
.nt-art-header { max-width: 760px; margin: 0 auto 28px; }
.nt-art-meta-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.nt-art-date-inline { font-size: 13px; color: var(--nt-muted); }

.nt-art-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 56px;
  line-height: .96;
  margin: 16px 0;
  letter-spacing: .005em;
}
/* New Releases — layout 2 colonne */
.nt-release-header {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
  background: #111;
  border-radius: 8px;
  padding: 36px;
}
.nt-release-header__text { min-width: 0; }
.nt-release-header__text .nt-art-abstract { color: #ccc; }
.nt-release-header__cover {
  position: static;
}
.nt-release-cover-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.nt-release-cover-img--poster {
  aspect-ratio: auto;
  height: auto;
}
.nt-release-header--cinema {
  grid-template-columns: 1fr 200px;
}

.nt-art-artista {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nt-font-head);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--nt-red);
  margin: 6px 0 15px;
}
.nt-art-artista a { color: inherit; text-decoration: none; }
.nt-art-artista a:hover { text-decoration: underline; }

.nt-art-abstract {
  font-size: 19px;
  line-height: 1.55;
  color: #2A241C;
  margin: 0;
}
.nt-art-byline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.nt-art-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nt-art-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
}
.nt-art-author-info {
  display: flex;
  flex-direction: column;
}
.nt-art-author-name { font-size: 14px; font-weight: 700; }
.nt-art-author-role { font-size: 12.5px; color: var(--nt-muted); }
.nt-art-date-read { font-size: 13px; color: var(--nt-muted); }

/* Hero image */
.nt-art-hero {
  max-width: 1000px;
  margin: 0 auto 40px;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
}
.nt-art-hero-img { width: 100%; height: 100%; object-fit: cover; }

/* Article body */
.nt-art-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: #2A241C;
}
.nt-art-body p { margin: 0 0 1.5em; }
.nt-art-body h2 {
  font-family: var(--nt-font-head);
  font-size: 36px;
  font-weight: 400;
  margin: 1.5em 0 .5em;
}
.nt-art-body h3 {
  font-family: var(--nt-font-head);
  font-size: 28px;
  font-weight: 400;
  margin: 1.5em 0 .5em;
}
.nt-art-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 28px 0;
}
.nt-art-body figure { margin: 36px 0; }
.nt-art-body figcaption {
  font-size: 12.5px;
  color: var(--nt-muted);
  text-align: right;
  margin-top: 8px;
}
.nt-art-body blockquote {
  margin: 36px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--nt-red);
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--nt-text);
}
.nt-art-body ul, .nt-art-body ol {
  padding-left: 1.6em;
  margin: 0 0 1.5em;
}
.nt-art-body a { color: var(--nt-red); text-decoration: underline; }

/* Tags */
.nt-art-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}
.nt-art-tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--nt-red);
  border: 1px solid var(--nt-red);
  border-radius: 2px;
  padding: 6px 14px;
  transition: background .15s, color .15s;
}
.nt-art-tag:hover { background: var(--nt-red); color: #fff; }

/* Video section */
.nt-art-video {
  max-width: 760px;
  margin: 48px auto 0;
}
.nt-art-video-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 18px;
  letter-spacing: .01em;
}
.nt-art-video-frame {
  position: relative;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--nt-dark);
}
.nt-art-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Author + share footer */
.nt-art-footer {
  max-width: 760px;
  margin: 44px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--nt-border);
  border-bottom: 1px solid var(--nt-border);
  gap: 24px;
  flex-wrap: wrap;
}
.nt-art-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}
.nt-art-author-box:hover .nt-art-footer-name { color: var(--nt-red); }
.nt-art-author-avatar {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
}
.nt-art-footer-label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--nt-muted); margin-bottom: 4px; }
.nt-art-footer-name { font-size: 17px; font-weight: 700; }
.nt-art-footer-name a { color: inherit; }
.nt-art-footer-name a:hover { color: var(--nt-red); }
.nt-art-footer-role { font-size: 12.5px; color: var(--nt-muted); margin-top: 3px; }

.nt-art-share { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.nt-art-share-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--nt-muted);
}
.nt-art-share-buttons { display: flex; gap: 10px; }
.nt-share-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--nt-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--nt-text);
  transition: border-color .15s, color .15s;
}
.nt-share-btn:hover { border-color: var(--nt-red); color: var(--nt-red); }

/* Related posts */
.nt-related {
  max-width: 1000px;
  margin: 56px auto 64px;
}
.nt-related-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 34px;
  margin: 0 0 22px;
  letter-spacing: .01em;
}
.nt-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.nt-related-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nt-related-thumb {
  display: block;
  height: 160px;
  border-radius: 4px;
  overflow: hidden;
}
.nt-related-thumb--empty { background: var(--nt-border); }
.nt-related-img { width: 100%; height: 100%; object-fit: cover; }
.nt-related-cat {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--nt-red); margin-top: 12px;
}
.nt-related-name {
  font-family: var(--nt-font-body);
  font-weight: 600; font-size: 16px;
  line-height: 1.3; margin-top: 6px;
  color: var(--nt-text);
}
.nt-related-item:hover .nt-related-name { color: var(--nt-red); }

/* =====================================================================
   CATEGORY / ARCHIVE
   ===================================================================== */
.nt-cat-hero {
  background: var(--nt-dark);
  color: var(--nt-cream);
  padding: 48px 0;
}
.nt-cat-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 76px;
  line-height: .92;
  margin: 18px 0 0;
  letter-spacing: .005em;
  color: var(--nt-cream);
}
.nt-cat-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(247,243,236,.7);
  max-width: 640px;
  margin: 16px 0 0;
}
.nt-cat-count { font-size: 13px; color: rgba(247,243,236,.45); margin-top: 20px; }

/* Author hero */
.nt-author-hero-inner { display: flex; align-items: center; gap: 28px; padding: 20px 0 16px; }
.nt-author-hero-inner .nt-initials-avatar { flex-shrink: 0; }
.nt-author-hero-inner .nt-cat-title { margin: 0; line-height: 1; }

/* Author filters */
.nt-author-filters { border-bottom: 1px solid var(--nt-border); background: var(--nt-bg); }
.nt-author-filters .nt-inner-pad { padding-top: 16px; padding-bottom: 16px; }
.nt-author-filter-form { width: 100%; }
.nt-author-filter-selects { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.nt-filter-select-wrap { display: flex; flex-direction: column; gap: 5px; }
.nt-filter-select-wrap label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nt-muted);
}
.nt-filter-select-wrap select {
  font-family: var(--nt-font-body);
  font-size: 14px;
  color: var(--nt-text);
  background: var(--nt-bg);
  border: 1px solid var(--nt-border);
  border-radius: 4px;
  padding: 8px 32px 8px 12px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  min-width: 160px;
}
.nt-filter-select-wrap select:focus { outline: none; border-color: var(--nt-red); }
.nt-filter-submit {
  font-family: var(--nt-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--nt-red);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 9px 20px;
  cursor: pointer;
  transition: opacity .15s;
}
.nt-filter-submit:hover { opacity: .85; }
.nt-filter-reset {
  font-size: 12px;
  color: var(--nt-muted);
  text-decoration: underline;
  padding: 9px 4px;
}
.nt-filter-reset:hover { color: var(--nt-text); }

.nt-cat-wrap { padding: 44px 0 64px; }
.nt-cat-main { min-width: 0; }

.nt-featured-item--big .nt-featured-img { height: 300px; }
.nt-featured-list { display: flex; flex-direction: column; gap: 28px; }
.nt-featured-item {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 28px;
  align-items: center;
}
.nt-featured-text { display: flex; flex-direction: column; gap: 0; }
.nt-featured-text .nt-badge { align-self: flex-start; }

/* Pagination */
.nt-pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.nt-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  border: 1px solid var(--nt-border);
  background: #fff;
  color: var(--nt-text);
  font-size: 14px;
  font-weight: 700;
  margin: 0 3px;
  transition: border-color .15s, background .15s, color .15s;
}
.nt-pagination .page-numbers:hover {
  border-color: var(--nt-red);
  color: var(--nt-red);
}
.nt-pagination .page-numbers.current {
  background: var(--nt-red);
  border-color: var(--nt-red);
  color: #fff;
}
.nt-pagination .page-numbers.dots {
  border: none;
  background: none;
}

/* =====================================================================
   PAGE (static)
   ===================================================================== */
.nt-page-wrap { padding: 40px 0 80px; }
.nt-page-content-area { max-width: 760px; margin: 0 auto; }
.nt-page-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 56px;
  line-height: .96;
  margin: 0 0 28px;
}
.nt-page-body {
  font-size: 17px;
  line-height: 1.75;
  color: #2A241C;
}
.nt-page-body p { margin: 0 0 1.5em; }
.nt-page-body a { color: var(--nt-red); text-decoration: underline; }
.nt-page-body h2 {
  font-family: var(--nt-font-head);
  font-size: 36px; font-weight: 400;
  margin: 1.5em 0 .5em;
}
.nt-page-body img { max-width: 100%; height: auto; border-radius: 4px; }

/* =====================================================================
   PAGE CHI SIAMO
   ===================================================================== */
.nt-chisiamo-hero {
  background: var(--nt-text);
  color: var(--nt-bg);
  padding: 72px 0 56px;
  margin-bottom: 0;
}
.nt-chisiamo-hero-inner { max-width: 760px; }
.nt-chisiamo-label {
  display: inline-block;
  font-family: var(--nt-font-head);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nt-red);
  margin-bottom: 18px;
}
.nt-chisiamo-title {
  font-family: var(--nt-font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--nt-bg);
  margin: 0 0 20px;
}
.nt-chisiamo-subtitle {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
  margin: 0 0 24px;
  max-width: 640px;
}
.nt-chisiamo-since {
  font-family: var(--nt-font-head);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.nt-chisiamo-wrap { padding-top: 56px; padding-bottom: 80px; }
.nt-chisiamo-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .nt-chisiamo-grid { grid-template-columns: 1fr; gap: 40px; }
}

.nt-chisiamo-body .nt-art-body { max-width: 100%; }
.nt-chisiamo-content .nt-art-body { margin-left: 0; max-width: 100%; }

.nt-chisiamo-contact {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--nt-border);
}
.nt-chisiamo-contact-title {
  font-family: var(--nt-font-head);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nt-muted);
  margin: 0 0 10px;
}
.nt-chisiamo-email {
  font-size: 20px;
  font-weight: 600;
  color: var(--nt-red);
  text-decoration: none;
}
.nt-chisiamo-email:hover { text-decoration: underline; }

.nt-chisiamo-side-block {
  position: sticky;
  top: 24px;
  padding: 28px;
  border: 1px solid var(--nt-border);
  border-radius: 4px;
}
.nt-chisiamo-side-title {
  font-family: var(--nt-font-head);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nt-muted);
  margin: 0 0 16px;
}
.nt-chisiamo-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nt-chisiamo-social a {
  font-weight: 600;
  font-size: 15px;
  color: var(--nt-text);
  text-decoration: none;
}
.nt-chisiamo-social a:hover { color: var(--nt-red); }

/* =====================================================================
   PAGE CHI SIAMO — layout TOC + contenuto
   ===================================================================== */
.nt-chisiamo-wrap { padding-top: 48px; padding-bottom: 80px; }

.nt-chisiamo-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .nt-chisiamo-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* TOC */
.nt-chisiamo-toc { position: sticky; top: 24px; }
.nt-chisiamo-toc-label {
  font-family: var(--nt-font-head);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nt-muted);
  margin: 0 0 16px;
}
.nt-chisiamo-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nt-chisiamo-toc-list a {
  display: block;
  font-size: 15px;
  color: var(--nt-text);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s;
}
.nt-chisiamo-toc-list a:hover { color: var(--nt-red); }

/* Titolo pagina h1 */
.nt-chisiamo-h1 {
  font-family: var(--nt-font-head);
  font-size: 48px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 48px;
}

/* Sezioni */
.nt-chisiamo-section {
  margin-bottom: 64px;
  scroll-margin-top: 120px;
}
.nt-chisiamo-section:last-child { margin-bottom: 0; }
.nt-chisiamo-h2 {
  font-family: var(--nt-font-head);
  font-size: 32px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

/* =====================================================================
   REDAZIONE TABLE (Chi Siamo)
   ===================================================================== */
.nt-redazione { margin: 48px 0; }
.nt-redazione-title {
  font-family: var(--nt-font-head);
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.nt-redazione-list { border-top: 1px solid var(--nt-border); }
.nt-redazione-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--nt-border);
  gap: 16px;
}
a.nt-redazione-row { text-decoration: none; color: inherit; }
a.nt-redazione-row:hover .nt-redazione-name { color: var(--nt-red); }

/* Redazione card grid */
.nt-redazione-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.nt-redazione-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 28px 20px;
  border: 1px solid var(--nt-border);
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
}
.nt-redazione-card:hover { border-color: var(--nt-red); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.nt-redazione-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.nt-redazione-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nt-redazione-photo .nt-initials-avatar { width: 100px !important; height: 100px !important; font-size: 36px !important; }
.nt-redazione-name {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
}
.nt-redazione-role {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nt-muted);
}
.nt-redazione-bio { font-size: 13px; color: var(--nt-muted); margin-top: 10px; line-height: 1.5; }
.nt-redazione-card:hover .nt-redazione-name { color: var(--nt-red); }

.nt-contatti-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--nt-border);
  font-size: 14px;
  color: var(--nt-muted);
}

/* =====================================================================
   PAGINA GENERI MUSICALI
   ===================================================================== */
.nt-generi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.nt-genere-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  background: var(--nt-surface);
  border: 1px solid var(--nt-border);
  border-radius: 3px;
  transition: border-color .2s, background .2s, transform .2s;
}
.nt-genere-card:hover {
  border-color: var(--nt-red);
  background: var(--nt-dark);
  transform: translateY(-2px);
}
.nt-genere-name {
  font-family: var(--nt-font-head);
  font-size: 20px;
  color: var(--nt-text);
  letter-spacing: .02em;
  line-height: 1;
  transition: color .2s;
}
.nt-genere-card:hover .nt-genere-name {
  color: var(--nt-cream);
}
.nt-genere-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nt-muted);
  transition: color .2s;
}
.nt-genere-card:hover .nt-genere-count {
  color: var(--nt-red-mid);
}

/* =====================================================================
   SINGLE TOUR ITALIA — pagina concerto
   ===================================================================== */
/* Layout due colonne: testo sinistra / copertina destra */
.nt-concert-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.nt-concert-content {
  min-width: 0;
}
.nt-concert-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--nt-text-mid);
  margin-bottom: 28px;
}
.nt-concert-poster {
  position: sticky;
  top: 100px;
}
.nt-concert-poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.nt-concert-infobox {
  background: var(--nt-dark);
  border-radius: 3px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.nt-concert-infobox-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.nt-concert-infobox-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nt-concert-infobox-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--nt-red-mid);
}
.nt-concert-infobox-value {
  font-family: var(--nt-font-head);
  font-size: 22px;
  color: var(--nt-cream);
  line-height: 1.1;
}
.nt-concert-infobox-sub {
  font-size: 13px;
  color: rgba(247,243,236,.55);
}
.nt-concert-ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--nt-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background .2s;
}
.nt-concert-ticket-btn:hover { background: var(--nt-red-mid); color: #fff; }

/* =====================================================================
   ARCHIVE LIVE — calendario concerti
   ===================================================================== */
.nt-live-month { margin-bottom: 40px; }
.nt-live-month-label {
  font-family: var(--nt-font-head);
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--nt-red);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--nt-text);
  margin-bottom: 8px;
}
.nt-live-row {
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--nt-border);
  transition: background .15s;
}
.nt-live-row:hover { background: rgba(102,0,0,.04); }
.nt-live-row-date { text-align: center; }
.nt-live-row-day {
  font-family: var(--nt-font-head);
  font-size: 32px;
  line-height: .9;
  color: var(--nt-text);
}
.nt-live-row-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nt-muted);
  margin-top: 2px;
}
.nt-live-row-info { min-width: 0; }
.nt-live-row-artist {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  margin: 0;
  letter-spacing: .01em;
}
.nt-live-row:hover .nt-live-row-artist { color: var(--nt-red); }
.nt-live-row-venue { font-size: 13.5px; color: var(--nt-muted); margin-top: 6px; }
.nt-live-row-ticket {
  background: var(--nt-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background .15s;
}
.nt-live-row:hover .nt-live-row-ticket { background: var(--nt-red-mid); }

/* Empty state */
.nt-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 24px;
  gap: 16px;
}
.nt-empty-state-icon {
  color: var(--nt-muted);
  opacity: .5;
}
.nt-empty-state-title {
  font-family: var(--nt-font-head);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .02em;
  margin: 0;
  color: var(--nt-fg);
}
.nt-empty-state-text {
  font-size: 15px;
  color: var(--nt-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 360px;
}

/* =====================================================================
   SINGLE LIVE — scheda concerto
   ===================================================================== */
.nt-live-single-hero {
  display: grid;
  grid-template-columns: minmax(0,1fr) 340px;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.nt-live-single-img { border-radius: 6px; overflow: hidden; }
.nt-live-single-img img { width: 100%; height: 100%; object-fit: cover; }
.nt-live-single-card {
  background: var(--nt-dark);
  color: var(--nt-cream);
  border-radius: 6px;
  padding: 32px;
}
.nt-live-single-artist {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 48px;
  line-height: .96;
  margin: 14px 0 24px;
  color: var(--nt-cream);
}
.nt-live-single-meta { display: flex; flex-direction: column; gap: 0; list-style: none; }
.nt-live-meta-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(247,243,236,.1);
}
.nt-live-meta-row dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(247,243,236,.45);
  padding-top: 2px;
}
.nt-live-meta-row dd { font-size: 15px; color: var(--nt-cream); margin: 0; }
.nt-live-single-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--nt-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background .15s;
}
.nt-live-single-cta:hover { background: var(--nt-red-mid); color: #fff; }

/* =====================================================================
   ARCHIVE VIDEO — griglia video
   ===================================================================== */
.nt-video-featured {
  display: block;
  margin-bottom: 36px;
}
.nt-video-featured-wrap {
  position: relative;
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
}
.nt-video-featured-img { width: 100%; height: 100%; object-fit: cover; }
.nt-video-featured-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 36px;
  line-height: .98;
  margin: 18px 0 0;
  letter-spacing: .01em;
}
.nt-video-featured:hover .nt-video-featured-title { color: var(--nt-red); }
.nt-video-featured-channel {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--nt-red);
  margin-top: 8px;
}
.nt-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px 24px;
}
.nt-video-card { display: block; }
.nt-video-card-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
}
.nt-video-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nt-video-card-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.1;
  margin: 12px 0 4px;
  letter-spacing: .01em;
}
.nt-video-card:hover .nt-video-card-title { color: var(--nt-red); }
.nt-video-card-meta { font-size: 12px; color: var(--nt-muted); }

/* Play button piccolo per grid video */
.nt-play-xs {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.nt-play-xs span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(24,20,16,.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nt-play-xs span::after {
  content: '';
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--nt-cream);
  margin-left: 3px;
}

/* =====================================================================
   SINGLE VIDEO — player
   ===================================================================== */
.nt-video-player-wrap { margin-bottom: 0; }
.nt-video-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--nt-dark);
}
.nt-video-player iframe { width: 100%; height: 100%; border: 0; }
.nt-video-player-thumb {
  position: relative;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
}
.nt-video-player-img { width: 100%; height: 100%; object-fit: cover; }

/* Audio player */
.nt-audio-player-wrap { margin-bottom: 0; border-radius: 6px; overflow: hidden; }
.nt-audio-player-wrap--16-9 { position: relative; aspect-ratio: 16/9; }
.nt-audio-player-wrap--16-9 iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.nt-audio-player-wrap:not(.nt-audio-player-wrap--16-9) iframe { width: 100%; border: 0; display: block; }
.nt-audio-card-thumb-placeholder {
  width: 100%; aspect-ratio: 16/10;
  background: var(--nt-surface);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.nt-audio-note { font-size: 32px; opacity: .4; }

.nt-video-single-head { margin: 20px 0 0; }
.nt-video-single-channel {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--nt-red);
  margin-bottom: 8px;
}
.nt-video-single-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 48px;
  line-height: .96;
  margin: 0 0 8px;
}
.nt-video-single-date { font-size: 13px; color: var(--nt-muted); }

/* =====================================================================
   SINGLE ARTISTA — scheda artista
   ===================================================================== */
.nt-artista-header {
  display: grid;
  grid-template-columns: 280px minmax(0,1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}
.nt-artista-cover { border-radius: 6px; overflow: hidden; }
.nt-artista-cover img { width: 100%; height: 100%; object-fit: cover; }
.nt-artista-genre {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--nt-red);
  margin-bottom: 12px;
  text-align: left;
}
.nt-artista-name {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 64px;
  line-height: .92;
  margin: 0;
  letter-spacing: .005em;
}
.nt-artista-section { margin-top: 48px; }
.nt-artista-section-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 34px;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--nt-text);
}
.nt-live-list { display: flex; flex-direction: column; }

/* =====================================================================
   404
   ===================================================================== */
.nt-404-wrap {
  background: var(--nt-dark);
  color: var(--nt-cream);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nt-404-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 32px 100px;
  text-align: center;
}
.nt-404-number {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 220px;
  line-height: .85;
  letter-spacing: .01em;
  color: var(--nt-red-mid);
}
.nt-404-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  margin: 4px 0 0;
  letter-spacing: .01em;
  color: var(--nt-cream);
}
.nt-404-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(247,243,236,.65);
  max-width: 480px;
  margin: 18px auto 0;
}
.nt-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.nt-404-btn {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.nt-404-btn--primary {
  background: var(--nt-red);
  color: #fff;
  border: none;
}
.nt-404-btn--primary:hover { background: var(--nt-red-mid); color: #fff; }
.nt-404-btn--outline {
  background: transparent;
  border: 1px solid rgba(247,243,236,.3);
  color: var(--nt-cream);
}
.nt-404-btn--outline:hover { border-color: var(--nt-red-mid); color: var(--nt-red-mid); }
.nt-404-suggestions {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(247,243,236,.14);
}
.nt-404-suggestions-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(247,243,236,.4);
  margin-bottom: 16px;
}
.nt-404-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nt-404-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(247,243,236,.75);
  border: 1px solid rgba(247,243,236,.25);
  border-radius: 2px;
  padding: 9px 18px;
  transition: border-color .15s, color .15s;
}
.nt-404-link:hover { border-color: var(--nt-red-mid); color: var(--nt-red-mid); }

/* =====================================================================
   SEARCH
   ===================================================================== */
.nt-search-title {
  font-family: var(--nt-font-head);
  font-weight: 400;
  font-size: 60px;
  line-height: .95;
  margin: 18px 0 22px;
  color: var(--nt-cream);
}
.nt-search-query-display {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(247,243,236,.06);
  border: 1px solid rgba(247,243,236,.2);
  border-radius: 3px;
  padding: 14px 18px;
  max-width: 640px;
  font-size: 16px;
  color: var(--nt-cream);
}

/* Form ricerca nel hero */
.nt-search-hero-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin-top: 22px;
}
.nt-search-hero-form input[type="search"] {
  flex: 1;
  background: rgba(247,243,236,.06);
  border: 1px solid rgba(247,243,236,.25);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--nt-cream);
  font-size: 14px;
  font-family: var(--nt-font-body);
  outline: none;
  min-width: 0;
}
.nt-search-hero-form input[type="search"]::placeholder { color: rgba(247,243,236,.4); }
.nt-search-hero-form input[type="search"]:focus { border-color: rgba(247,243,236,.6); }
.nt-search-hero-form button {
  background: var(--nt-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 22px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  font-family: var(--nt-font-body);
}
.nt-search-hero-form button:hover { background: var(--nt-red-mid); }
.nt-search-icon-sm {
  width: 16px; height: 16px;
  border: 2px solid rgba(247,243,236,.6);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.nt-search-icon-sm::after {
  content: '';
  position: absolute;
  width: 2px; height: 8px;
  background: rgba(247,243,236,.6);
  bottom: -5px; right: -2px;
  transform: rotate(-45deg);
}
.nt-search-empty {
  padding: 40px 0;
  color: var(--nt-muted);
  font-size: 17px;
  line-height: 1.6;
}
.nt-search-empty strong { color: var(--nt-text); }
.nt-search-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  max-width: 480px;
}
.nt-search-form input {
  flex: 1;
  border: 1px solid var(--nt-border);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--nt-font-body);
  outline: none;
  background: #fff;
}
.nt-search-form input:focus { border-color: var(--nt-red); }
.nt-search-form button {
  background: var(--nt-red);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--nt-font-body);
  transition: background .15s;
}
.nt-search-form button:hover { background: var(--nt-red-mid); }

/* =====================================================================
   MOBILE — breakpoint globale 768px
   ===================================================================== */
@media (max-width: 768px) {

  /* --- Utility bar --- */
  .nt-utility-bar { display: none; }

  /* ---------------------------------------------------------------
     HEADER / MASTHEAD — layout 3 colonne: hamburger | logo | search
  --------------------------------------------------------------- */
  .nt-masthead-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 16px;
    gap: 0;
  }
  /* Logo nella colonna centrale */
  .nt-logo-link {
    grid-column: 2;
    justify-self: center;
  }
  .nt-logo { height: 44px; }

  /* Hamburger nella colonna sinistra */
  .nt-hamburger {
    grid-column: 1;
    justify-self: start;
    position: static;
    transform: none;
  }

  /* Search nella colonna destra */
  .nt-header-actions {
    grid-column: 3;
    justify-self: end;
    position: static;
    transform: none;
    gap: 0;
  }

  /* Il secondo search-btn (desktop) non serve su mobile */
  .nt-search-btn--desktop { display: none !important; }
  .nt-search-btn { padding: 0; }

  /* ---------------------------------------------------------------
     MOBILE DRAWER — overlay full-screen con sfondo chiaro
  --------------------------------------------------------------- */
  .nt-mobile-drawer {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100dvh;
    max-height: none;
    background: var(--nt-cream);
    z-index: 500;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    border: none;
    padding: 0;
  }
  .nt-mobile-drawer.is-open {
    max-height: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Sistema a doppio pannello */
  .nt-drawer-inner {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  }
  .nt-drawer-inner.show-sub {
    transform: translateX(-50%);
  }
  .nt-drawer-main,
  .nt-drawer-sub {
    width: 50%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: var(--nt-cream);
  }

  /* Pulsante indietro pannello ALTRO */
  .nt-drawer-back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-family: var(--nt-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nt-text);
    cursor: pointer;
    padding: 4px 0;
  }
  .nt-drawer-back svg { flex-shrink: 0; }

  /* Titolo sezione nel pannello sub */
  .nt-submenu-label {
    font-family: var(--nt-font-head);
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--nt-muted);
    padding: 0 20px 12px;
  }

  /* --- Nav mobile: numerata, Bebas Neue, ink su cream --- */
  .nt-mobile-nav {
    flex: 1;
    padding: 8px 20px 16px;
  }
  .nt-mobile-nav ul {
    list-style: none;
    margin: 0; padding: 0;
  }
  .nt-mobile-nav > ul {
    counter-reset: mobnav;
  }
  .nt-mobile-nav > ul > li { counter-increment: mobnav; }
  .nt-mobile-nav > ul > li > a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--nt-border);
    font-family: var(--nt-font-head);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: var(--nt-text);
  }
  .nt-mobile-nav > ul > li > a::before {
    content: counter(mobnav, decimal-leading-zero);
    font-family: var(--nt-font-head);
    font-size: 17px;
    color: var(--nt-red);
    min-width: 26px;
  }
  .nt-mobile-nav > ul > li > a:hover { color: var(--nt-red); }

  /* Indicatore freccia su ALTRO (parent item) */
  .nt-mobile-nav li.menu-item-has-children > a::after {
    content: '›';
    margin-left: auto;
    font-size: 28px;
    font-family: var(--nt-font-body);
    font-weight: 300;
    color: var(--nt-red);
    line-height: 1;
  }

  /* Sottomenu (Altro) */
  .nt-mobile-nav ul ul {
    padding-left: 40px;
    border-left: none;
    margin: 0 0 8px;
    counter-reset: none;
  }
  .nt-mobile-nav ul ul a {
    display: block;
    padding: 9px 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--nt-muted);
  }
  .nt-mobile-nav ul ul a:hover { color: var(--nt-red); }

  /* ---------------------------------------------------------------
     HERO SLIDER
  --------------------------------------------------------------- */
  .nt-slider-wrap { grid-template-columns: 1fr; }
  .nt-upnext { display: none; }
  .nt-slider { height: 320px; }
  .nt-hero-wrap { padding: 16px 16px 0; max-width: 100%; }
  .nt-slide-content { padding: 0 18px 18px; }
  .nt-slide-title { font-size: 34px; }

  /* ---------------------------------------------------------------
     TOUR STRIP — scroll orizzontale
  --------------------------------------------------------------- */
  .nt-tour-strip { padding: 20px 0 0; }
  .nt-tour-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 0 16px 8px;
    margin: 0 -16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nt-tour-grid::-webkit-scrollbar { display: none; }
  .nt-tour-card {
    flex: 0 0 auto;
    width: 140px;
  }

  /* ---------------------------------------------------------------
     HOMEPAGE — griglia principale (content + sidebar)
  --------------------------------------------------------------- */
  .nt-main-inner { grid-template-columns: 1fr; }
  .nt-main-inner .nt-sidebar { display: none; }

  /* ---------------------------------------------------------------
     FEATURED LIST (Ultime News)
  --------------------------------------------------------------- */
  .nt-featured-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .nt-featured-img { width: 100%; height: 170px; }
  .nt-featured-title { font-size: 26px; }
  .nt-featured-dek { -webkit-line-clamp: 3; }

  /* ---------------------------------------------------------------
     NEW RELEASES
  --------------------------------------------------------------- */
  .nt-releases-grid { display: flex; flex-direction: column; gap: 0; }
  .nt-release-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    row-gap: 4px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--nt-border);
  }
  .nt-release-cover {
    grid-column: 1;
    grid-row: 1 / 4;
    height: 82px;
    aspect-ratio: auto;
    border-radius: 3px;
    overflow: hidden;
  }
  .nt-release-cover img { width: 100%; height: 100%; object-fit: cover; }
  .nt-release-artist {
    grid-column: 2;
    grid-row: 1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nt-red);
    margin-top: 4px;
  }
  .nt-release-title {
    grid-column: 2;
    grid-row: 2;
    font-family: var(--nt-font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    color: var(--nt-text);
  }
  .nt-release-label {
    grid-column: 2;
    grid-row: 3;
    font-size: 12px;
    color: var(--nt-muted);
  }

  /* ---------------------------------------------------------------
     CARDS GRID
  --------------------------------------------------------------- */
  .nt-cards-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }

  /* ---------------------------------------------------------------
     POSTER GRID (Festival / Teatro)
  --------------------------------------------------------------- */
  .nt-poster-grid,
  .nt-poster-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .nt-poster-title { font-size: 22px; }
  .nt-poster-tag { font-size: 9px; }
  .nt-poster-date { font-size: 10px; }

  /* ---------------------------------------------------------------
     VIDEO DEL GIORNO (sezione homepage)
  --------------------------------------------------------------- */
  .nt-vg-wrap { flex-direction: column; }
  .nt-vg-media { aspect-ratio: 16/9; height: auto; }

  /* ---------------------------------------------------------------
     SINGLE POST / VIDEO / AUDIO
  --------------------------------------------------------------- */
  .nt-single-grid { grid-template-columns: 1fr; }
  .nt-single-grid .nt-sidebar { display: none; }
  .nt-art-title { font-size: clamp(28px, 8vw, 44px); }
  .nt-art-abstract { font-size: 16px; }

  /* Correlati: layout lista (1 per riga) */
  .nt-related-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .nt-related-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 4px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--nt-border);
  }
  .nt-related-thumb {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 82px;
    border-radius: 3px;
  }
  .nt-related-cat {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }
  .nt-related-name {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    margin-top: 0;
  }

  /* ---------------------------------------------------------------
     VIDEO GRID (archivio video)
  --------------------------------------------------------------- */
  .nt-video-grid { grid-template-columns: 1fr; }
  .nt-video-giorno { grid-template-columns: 1fr; padding: 24px; }

  /* ---------------------------------------------------------------
     ARCHIVE CATEGORIA
  --------------------------------------------------------------- */
  .nt-cat-title { font-size: clamp(30px, 8vw, 56px); }
  .nt-cat-hero { padding: 32px 0 24px; }
  .nt-cat-wrap .nt-single-grid { grid-template-columns: 1fr; }
  .nt-cat-wrap .nt-sidebar { display: none; }

  /* ---------------------------------------------------------------
     CHI SIAMO / CONTATTI
  --------------------------------------------------------------- */
  .nt-chisiamo-layout { grid-template-columns: 1fr; gap: 24px; }
  .nt-chisiamo-toc { display: none; }
  .nt-chisiamo-h1 { font-size: 36px; }
  .nt-chisiamo-h2 { font-size: 24px; }

  /* ---------------------------------------------------------------
     SEARCH PAGE
  --------------------------------------------------------------- */
  .nt-search-title { font-size: 36px; margin: 12px 0 16px; }
  .nt-search-hero-form { flex-direction: column; max-width: 100%; }
  .nt-search-hero-form button { height: 46px; }

  /* ---------------------------------------------------------------
     SEARCH MODAL
  --------------------------------------------------------------- */
  .nt-overlay {
    padding: 10vh 20px 0;
    align-items: flex-start;
  }
  .nt-search-box {
    width: 100%;
    max-width: 100%;
  }
  .nt-search-box form {
    gap: 12px;
    padding-bottom: 16px;
  }
  .nt-search-box input[type="search"] {
    font-size: 26px;
  }
  .nt-suggestions {
    gap: 8px;
    margin-top: 12px;
  }
  .nt-suggestion {
    font-size: 12px;
    padding: 7px 12px;
  }
  .nt-suggestions-label {
    margin-top: 20px;
  }

  /* ---------------------------------------------------------------
     NEWSLETTER MODAL
  --------------------------------------------------------------- */
  .nt-newsletter-title { font-size: 36px; }
  .nt-newsletter-cf7 .wpcf7-form { flex-direction: column; }
  .nt-newsletter-cf7 input[type="submit"],
  .nt-newsletter-cf7 .wpcf7-submit { height: 46px; width: 100%; }

  /* ---------------------------------------------------------------
     FOOTER
  --------------------------------------------------------------- */
  .nt-footer-inner { padding: 40px 20px 28px; }
  .nt-footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    text-align: center;
  }
  .nt-footer-brand { display: flex; flex-direction: column; align-items: center; }
  .nt-footer-logo { height: 44px; }
  .nt-footer-tagline { margin-top: 10px; font-size: 13px; }
  .nt-footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
    font-size: 11px;
  }
  .nt-footer-copy {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-top: 18px;
    text-align: center;
    font-size: 11px;
  }

  /* ---------------------------------------------------------------
     REDAZIONE
  --------------------------------------------------------------- */
  .nt-redazione-row { flex-direction: column; gap: 4px; align-items: flex-start; }

  /* ---------------------------------------------------------------
     LIVE ARCHIVE
  --------------------------------------------------------------- */
  .nt-live-row { grid-template-columns: 72px 1fr; gap: 10px; }

  /* ---------------------------------------------------------------
     PADDING GLOBALE
  --------------------------------------------------------------- */
  .nt-inner-pad { padding-left: 16px; padding-right: 16px; }
  .nt-section { padding-bottom: 32px; }
  .nt-section-head { margin-bottom: 16px; }
  .nt-section-sub { display: none; }
  .nt-section-title { font-size: 32px; }

  /* ---------------------------------------------------------------
     CONTENITORE PRINCIPALE — rimuove il min-width desktop
  --------------------------------------------------------------- */
  .nt-site-wrap { min-width: 0; box-shadow: none; }
  .nt-hero-area { overflow: hidden; }
}

/* =====================================================================
   MOBILE SMALL — 480px
   ===================================================================== */
@media (max-width: 480px) {
  .nt-cards-grid--4 { grid-template-columns: 1fr; }
  .nt-poster-grid,
  .nt-poster-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .nt-list--2col { grid-template-columns: 1fr; }
  .nt-video-grid { grid-template-columns: 1fr; }
  .nt-featured-img { height: 180px; }
}
