/*
Theme Name: Luca Fiore
Theme URI: https://luca-fiore.com
Author: Luca Fiore
Description: Tema personalizzato per luca-fiore.com
Version: 1.0
*/

/* ============================================================
   VARIABILI
   ============================================================ */
:root {
  --blu:    #1B3A5C;
  --nero:   #000000;
  --bianco: #ffffff;
  --testo:  #1A1A1A;
  --muted:  #999999;
  --bordo:  #000000;
}

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bianco);
  color: var(--nero);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ============================================================
   LAYOUT WRAPPER
   ============================================================ */
.site {
  max-width: 1280px;
  margin: 0 auto;
  border-left: 1.5px solid var(--bordo);
  border-right: 1.5px solid var(--bordo);
  min-height: 100vh;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  border-bottom: 1.5px solid var(--bordo);
}

.site-brand {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--nero);
}

.site-nav {
  display: flex;
  align-items: stretch;
}

.site-nav a {
  font-size: 12px;
  letter-spacing: .05em;
  font-weight: 400;
  padding: 7px 16px;
  border-left: 1px solid var(--bordo);
  color: var(--nero);
  transition: background .15s, color .15s;
}

.site-nav a:hover,
.site-nav a.current {
  background: var(--nero);
  color: var(--bianco);
}

.site-nav a.newsletter {
  background: var(--blu);
  color: var(--bianco);
  border-left-color: var(--blu);
}

.site-nav a.newsletter:hover {
  background: var(--nero);
}

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  border-bottom: 1.5px solid var(--bordo);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image .no-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #111;
}

.hero-body {
  padding: 28px 36px 32px;
  border-top: 1.5px solid var(--bordo);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.hero-category {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
}

.hero-meta-sep {
  width: 1px;
  height: 12px;
  background: #ccc;
}

.hero-date {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--nero);
  max-width: 800px;
  margin-bottom: 20px;
}

.hero-link {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
  border-bottom: 1px solid var(--blu);
  padding-bottom: 1px;
}

.hero-link:hover { opacity: .7; }

/* ============================================================
   SECTION BAR
   ============================================================ */
.section-bar {
  display: flex;
  align-items: stretch;
  border-bottom: 1.5px solid var(--bordo);
}

.section-tag {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 36px;
  border-right: 1.5px solid var(--bordo);
  color: var(--blu);
}

/* ============================================================
   HOMEPAGE — GRIGLIA ARTICOLI
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.post-card {
  border-right: 1.5px solid var(--bordo);
  border-bottom: 1.5px solid var(--bordo);
}

.post-card:nth-child(3n) { border-right: none; }
.post-card:nth-last-child(-n+3) { border-bottom: none; }

.post-card a { display: block; }

.post-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-card-image .no-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #111;
}

.post-card-body {
  padding: 14px 18px 20px;
  border-top: 1.5px solid var(--bordo);
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
}

.post-card-category {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
}

.post-card-date {
  font-size: 10px;
  color: #bbb;
  font-weight: 300;
}

.post-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--nero);
  transition: opacity .15s;
}

.post-card:hover .post-card-title { opacity: .6; }

/* ============================================================
   ARCHIVE BAR
   ============================================================ */
.archive-bar {
  border-top: 1.5px solid var(--bordo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 36px;
}

.archive-count {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

.archive-link {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blu);
  border-bottom: 1px solid var(--blu);
  padding-bottom: 1px;
}

.archive-link:hover { opacity: .7; }

/* ============================================================
   HOMEPAGE — ABOUT + NEWSLETTER
   ============================================================ */
.home-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1.5px solid var(--bordo);
}

.about-col {
  padding: 36px;
  border-right: 1.5px solid var(--bordo);
}

.col-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
  margin-bottom: 16px;
  display: block;
}

.about-text {
  font-size: 13px;
  line-height: 1.72;
  color: #333;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-link {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
  border-bottom: 1px solid var(--blu);
  padding-bottom: 1px;
}

.nl-col {
  background: #E8E0D5;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nl-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  line-height: .88;
  color: #6A5C4E;
  display: block;
  margin-bottom: 16px;
}

.nl-sub {
  font-size: 12px;
  color: #7A6B5A;
  line-height: 1.6;
  font-weight: 400;
  max-width: 240px;
  margin-bottom: 24px;
  display: block;
}

.nl-url {
  font-size: 10px;
  color: #9A8B7C;
  letter-spacing: .06em;
  margin-bottom: 10px;
  display: block;
}

.nl-btn {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #E8E0D5;
  background: #6A5C4E;
  border: none;
  padding: 14px 0;
  width: 100%;
  cursor: pointer;
  display: block;
  text-align: center;
}

.nl-btn:hover { background: #5A4C3E; color: #E8E0D5; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1.5px solid var(--bordo);
  padding: 16px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--nero);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

.footer-links a:hover { color: var(--nero); }

/* ============================================================
   WRITING ARCHIVE (home.php / archive.php)
   ============================================================ */
.archive-filters {
  display: flex;
  align-items: stretch;
  border-bottom: 1.5px solid var(--bordo);
  overflow-x: auto;
}

.filter-link {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 20px;
  border-right: 1px solid var(--bordo);
  color: var(--nero);
  white-space: nowrap;
}

.filter-link:hover,
.filter-link.active {
  background: var(--nero);
  color: var(--bianco);
}

.posts-list { }

.list-item {
  display: grid;
  grid-template-columns: 90px 1fr 120px;
  align-items: center;
  padding: 14px 36px;
  border-bottom: 1px solid #e8e8e8;
  transition: background .12s;
}

.list-item:hover { background: #f9f9f9; }

.list-date {
  font-size: 11px;
  color: #bbb;
  font-weight: 300;
  letter-spacing: .03em;
}

.list-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--nero);
  padding-right: 24px;
}

.list-category {
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blu);
  font-weight: 500;
  text-align: right;
}

/* Paginazione archivio */
.archive-pagination {
  border-top: 1.5px solid var(--bordo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 36px;
}

.page-count {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

.pagination { display: flex; }

.pagination a,
.pagination span {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 7px 14px;
  border: 1px solid var(--bordo);
  border-left: none;
  color: var(--nero);
}

.pagination a:first-child,
.pagination span:first-child { border-left: 1px solid var(--bordo); }

.pagination .current,
.pagination a:hover {
  background: var(--blu);
  color: var(--bianco);
  border-color: var(--blu);
}

/* ============================================================
   SINGOLO ARTICOLO
   ============================================================ */
.article-head {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 36px 36px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.article-category {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
}

.article-meta-sep {
  width: 1px;
  height: 12px;
  background: #ccc;
}

.article-date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.article-readtime {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.article-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--nero);
  margin-bottom: 18px;
}

.article-published {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.article-published a {
  color: var(--blu);
  font-weight: 500;
}

/* Immagine hero */
.article-hero {
  border-top: 1.5px solid var(--bordo);
  border-bottom: 1.5px solid var(--bordo);
}

.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.article-hero-credit {
  font-size: 10px;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
  padding: 8px 36px;
  border-bottom: 1px solid #eee;
}

/* Corpo testo */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 44px 36px 48px;
}

.article-body p {
  font-family: 'Spectral', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--testo);
  margin-bottom: 28px;
}

/* drop cap gestito via .drop-cap span in PHP */'


.article-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--nero);
  margin: 48px 0 20px;
}

.article-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--nero);
  margin: 36px 0 16px;
}

.article-body blockquote {
  border-left: 3px solid var(--blu);
  padding: 4px 0 4px 24px;
  margin: 40px 0;
}

.article-body blockquote p {
  font-family: 'Spectral', serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
  color: var(--nero);
  margin: 0;
}

.article-body blockquote p::first-letter { all: unset; }

.article-body blockquote cite {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 300;
  margin-top: 10px;
  font-family: 'Hanken Grotesk', sans-serif;
}

.article-body figure {
  margin: 48px -36px;
}

.article-body figure img {
  width: 100%;
  height: auto;
}

.article-body figcaption {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  padding: 10px 36px 0;
  font-family: 'Spectral', serif;
  line-height: 1.5;
}

.article-body em { font-style: italic; }
.article-body strong { font-weight: 700; }

/* Tag e fonte */
.article-end {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 36px 48px;
  border-top: 1px solid #e8e8e8;
  padding-top: 28px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.article-tag {
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
  border: 1px solid var(--blu);
  padding: 5px 12px;
}

.article-tag:hover {
  background: var(--blu);
  color: var(--bianco);
}

.article-source {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

.article-source a {
  color: var(--blu);
  font-weight: 500;
}

/* Navigazione prev/next */
.article-nav {
  border-top: 1.5px solid var(--bordo);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nav-prev,
.nav-next {
  padding: 24px 36px;
}

.nav-prev { border-right: 1.5px solid var(--bordo); }
.nav-next { text-align: right; }

.nav-label {
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}

.nav-arrow { color: var(--blu); }

.nav-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--nero);
  transition: opacity .15s;
}

.nav-prev:hover .nav-title,
.nav-next:hover .nav-title { opacity: .6; }

/* Articoli correlati */
.related-section { border-top: 1.5px solid var(--bordo); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.related-card { border-right: 1.5px solid var(--bordo); }
.related-card:last-child { border-right: none; }

.related-card-body {
  padding: 14px 18px 20px;
  border-top: 1.5px solid var(--bordo);
}

.related-category {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
  margin-bottom: 8px;
  display: block;
}

.related-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--nero);
}

.related-card:hover .related-title { opacity: .6; }

/* ============================================================
   PAGINA ABOUT
   ============================================================ */
.page-head {
  padding: 44px 36px 0;
  border-bottom: 1.5px solid var(--bordo);
}

.page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--nero);
  padding-bottom: 36px;
}

.page-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 36px 64px;
}

.page-body p {
  font-family: 'Spectral', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--testo);
  margin-bottom: 28px;
}

.page-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--nero);
  margin: 48px 0 16px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card:nth-child(3n) { border-right: 1.5px solid var(--bordo); }
  .post-card:nth-child(2n) { border-right: none; }
  .post-card:nth-last-child(-n+3) { border-bottom: 1.5px solid var(--bordo); }
  .post-card:nth-last-child(-n+2) { border-bottom: none; }
  .home-bottom { grid-template-columns: 1fr; }
  .about-col { border-right: none; border-bottom: 1.5px solid var(--bordo); }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .related-card:nth-child(3) { display: none; }
  .list-item { grid-template-columns: 80px 1fr; }
  .list-category { display: none; }
}

@media (max-width: 600px) {
  .site-header { padding: 12px 16px; }
  .site-brand { font-size: 15px; }
  .site-nav a { padding: 6px 10px; font-size: 11px; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-card:nth-child(2n) { border-right: none; }
  .post-card:nth-last-child(-n+2) { border-bottom: 1.5px solid var(--bordo); }
  .post-card:last-child { border-bottom: none; }
  .hero-body { padding: 20px 16px 24px; }
  .archive-bar { padding: 14px 16px; }
  .article-head { padding: 28px 16px 24px; }
  .article-body { padding: 32px 16px 40px; }
  .article-body figure { margin: 32px -16px; }
  .article-body figcaption { padding: 8px 16px 0; }
  .article-end { padding: 0 16px 40px; }
  .article-nav { grid-template-columns: 1fr; }
  .nav-prev { border-right: none; border-bottom: 1.5px solid var(--bordo); }
  .nav-next { text-align: left; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { border-right: none; border-bottom: 1.5px solid var(--bordo); }
  .related-card:last-child { border-bottom: none; }
  .home-bottom { grid-template-columns: 1fr; }
  .list-item { grid-template-columns: 70px 1fr; padding: 12px 16px; }
  .archive-bar { flex-direction: column; gap: 10px; text-align: center; }
  .site-footer { flex-direction: column; gap: 12px; text-align: center; padding: 16px; }
}

/* ============================================================
   TAGLINE HEADER
   ============================================================ */
.site-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.site-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: #333;
  letter-spacing: .01em;
  font-weight: 400;
}

/* ============================================================
   HERO — due colonne: titolo sx, immagine dx
   ============================================================ */
.hero {
  border-bottom: 1.5px solid var(--bordo);
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 420px;
}

.hero-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1.5px solid var(--bordo);
}

.hero-image {
  display: flex;
  align-items: stretch;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image .no-image {
  width: 100%;
  min-height: 360px;
  background: #111;
}

/* Nasconde il vecchio hero-image-wrap full-width */
.hero-img { display: none; }

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .hero-body {
    border-right: none;
    border-top: 1.5px solid var(--bordo);
  }
}

/* Drop cap (primo paragrafo reale) */
.drop-cap {
  font-family: 'Syne', sans-serif;
  font-size: 62px;
  font-weight: 800;
  line-height: .82;
  float: left;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--blu);
}

/* Nasconde pulsanti condivisione plugin */
.sharedaddy,
.sd-sharing-enabled,
.sd-like-enabled,
.jp-relatedposts-headline,
.wpcnt,
.sd-block.sd-like,
[class*="share-"],
.post-shares { display: none !important; }

/* ============================================================
   PAGINA ABOUT
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  border-bottom: 1.5px solid var(--bordo);
  min-height: 320px;
}

.about-portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1612;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.portrait-credit {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 9px;
  color: rgba(255,255,255,.3);
  letter-spacing: .07em;
  font-weight: 300;
}

.about-intro {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-left: 1.5px solid var(--bordo);
}

.about-role {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
}

.about-bio p {
  font-family: 'Spectral', serif;
  font-size: 17px;
  line-height: 1.78;
  color: var(--testo);
  margin-bottom: 16px;
}

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

/* Due colonne sezioni */
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1.5px solid var(--bordo);
}

.about-col {
  padding: 32px 36px;
  border-right: 1.5px solid var(--bordo);
}

.about-col:last-child { border-right: none; }

.col-label {
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}

.sec-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f2f2f2;
}

.sec-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--nero);
  margin-bottom: 3px;
}

.sec-sub {
  font-size: 12px;
  color: #666;
  font-weight: 300;
  line-height: 1.5;
}

.sec-sub a {
  color: var(--blu);
  font-style: italic;
}

/* Barra contatti */
.about-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 36px;
  border-bottom: 1.5px solid var(--bordo);
}

.contact-label {
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blu);
}

.contact-links { display: flex; }

.contact-link {
  font-size: 11.5px;
  font-weight: 400;
  padding: 7px 18px;
  border-left: 1px solid var(--bordo);
  color: var(--nero);
  transition: background .12s, color .12s;
}

.contact-link:first-child { border-left: none; }
.contact-link:hover { background: var(--nero); color: var(--bianco); }

/* Responsive About */
@media (max-width: 800px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-portrait { min-height: 260px; }
  .about-intro { border-left: none; border-top: 1.5px solid var(--bordo); padding: 28px 20px; }
  .about-cols { grid-template-columns: 1fr; }
  .about-col { border-right: none; border-bottom: 1.5px solid var(--bordo); }
  .about-contact { flex-direction: column; gap: 14px; align-items: flex-start; padding: 20px; }
  .contact-link:first-child { border-left: 1px solid var(--bordo); }
  .contact-links { flex-wrap: wrap; }
}

/* ============================================================
   SEZIONE CURATORIAL — larghezza piena
   ============================================================ */
.about-curatorial {
  padding: 32px 36px;
  border-bottom: 1.5px solid var(--bordo);
}

.about-curatorial .col-label {
  margin-bottom: 20px;
}

.curatorial-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.curatorial-list li {
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--nero);
  letter-spacing: -.01em;
}

.curatorial-list li:last-child { border-bottom: none; }

.curatorial-list a {
  color: var(--nero);
  border-bottom: 1px solid #ccc;
  padding-bottom: 1px;
}

.curatorial-list a:hover { border-bottom-color: var(--blu); color: var(--blu); }

.cur-venue {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #444;
  text-align: right;
  letter-spacing: .02em;
}

.cur-note {
  grid-column: 1 / -1;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #888;
  font-style: italic;
  margin-top: -8px;
  padding-bottom: 4px;
}

@media (max-width: 600px) {
  .curatorial-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .cur-venue { text-align: left; }
}
