/* =========================================================================
   Home 2026 — design sperimentale (Playfair Display + Nunito Sans)
   Tutto scoped sotto body.home-2026 / .h26 per isolamento totale dal tema.
   ========================================================================= */

body.home-2026 {
	--h26-bg:        #f0ede6;   /* crema chiaro */
	--h26-surface:   #ffffff;
	--h26-ink:       #20201d;   /* near-black caldo */
	--h26-ink-soft:  #5f594f;
	--h26-accent:    #7a7d9c;   /* periwinkle / blu-grigio */
	--h26-accent-dp: #595c79;
	--h26-mauve:     #e7dcd8;   /* mauve soft per banda */
	--h26-line:      #e2dbcf;
	--h26-line-soft: #ece6da;

	--h26-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--h26-body:    "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

	--h26-wrap:    1400px;
	--h26-pad:     clamp(20px, 5vw, 64px);
	--h26-gap:     clamp(24px, 3vw, 40px);
	--h26-outer:   #e8e6e0;   /* sfondo oltre i 1400px (beige-grigio chiarissimo) */

	margin: 0;
	background: var(--h26-outer);
	color: var(--h26-ink);
	font-family: var(--h26-body);
	font-size: 18px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* La pagina vera e propria è centrata e capata a 1400px; oltre si vede l'outer. */
.h26 {
	max-width: var(--h26-wrap);
	margin-inline: auto;
	background: var(--h26-bg);
	box-shadow: 0 0 80px rgba(32, 32, 29, 0.07);
	overflow: hidden;
}

.h26 *, .h26 *::before, .h26 *::after { box-sizing: border-box; }
.h26 img { max-width: 100%; height: auto; display: block; }
.h26 a { color: inherit; text-decoration: none; }

.h26-skip { position: absolute; left: -9999px; }

/* ---- wrapper centrale ---- */
.h26-wrap {
	max-width: var(--h26-wrap);
	margin-inline: auto;
	padding-inline: var(--h26-pad);
}

/* ---- bande di sezione (ritmo cromatico) ---- */
.h26-band { padding-block: clamp(48px, 6vw, 88px); }
.h26-band--soft  { background: var(--h26-surface); }
.h26-band--mauve { background: var(--h26-mauve); }
/* In evidenza: più stacco dall'hero sopra, meno spazio verso "Le sezioni" sotto */
.h26-band--evidenza { padding-top: clamp(64px, 8vw, 112px); padding-bottom: clamp(20px, 2.5vw, 36px); }
.h26-band--evidenza + .h26-band { padding-top: clamp(20px, 2.5vw, 36px); }

/* ---- elementi tipografici condivisi ---- */
.h26-eyebrow {
	display: inline-block;
	font-family: var(--h26-body);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h26-accent);
	margin-bottom: 10px;
}
a.h26-eyebrow:hover { color: var(--h26-accent-dp); }

.h26-sechead { margin-bottom: clamp(28px, 3.5vw, 48px); }
.h26-sechead__title {
	font-family: var(--h26-display);
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin: 0;
	color: var(--h26-ink);
}
.h26-sechead__sub {
	font-size: 1.05rem;
	color: var(--h26-ink-soft);
	margin: 10px 0 0;
}

/* ---- bottoni ---- */
.h26-btn {
	display: inline-block;
	font-family: var(--h26-body);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	padding: 13px 30px;
	background: var(--h26-accent);
	color: #fff;
	border-radius: 999px;
	transition: background 0.2s ease, transform 0.2s ease;
}
.h26-btn:hover, .h26-btn:focus { background: var(--h26-accent-dp); color: #fff; text-decoration: none; transform: translateY(-1px); }
.h26-btn--ghost {
	background: transparent;
	color: var(--h26-accent-dp);
	border: 1.5px solid var(--h26-accent);
}
.h26-btn--ghost:hover { background: var(--h26-accent); color: #fff; }

/* =========================================================================
   MASTHEAD
   ========================================================================= */
.h26-masthead {
	background: var(--h26-bg);
	border-bottom: 1px solid var(--h26-line);
}
.h26-masthead__bar {
	max-width: var(--h26-wrap);
	margin-inline: auto;
	padding: 22px var(--h26-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.h26-brand { display: flex; align-items: center; gap: 16px; }
.h26-brand__mark { width: 72px; height: 72px; object-fit: contain; flex: 0 0 auto; }
.h26-brand__text { display: flex; flex-direction: column; line-height: 1.02; }
.h26-brand__name {
	font-family: var(--h26-display);
	font-weight: 800;
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	color: var(--h26-ink);
	letter-spacing: -0.01em;
}
.h26-brand__tag {
	font-family: var(--h26-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--h26-accent-dp);
	margin-top: 2px;
}
.h26-masthead__meta {
	text-align: right;
	font-size: 0.78rem;
	color: var(--h26-ink-soft);
	display: flex;
	flex-direction: column;
	gap: 2px;
	letter-spacing: 0.02em;
	white-space: nowrap;
}
.h26-masthead__meta strong { color: var(--h26-ink); font-weight: 700; }

/* Hamburger (nascosto su desktop) */
.h26-navtoggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	background: transparent;
	border: 1px solid var(--h26-line);
	border-radius: 10px;
	cursor: pointer;
	flex: 0 0 auto;
}
.h26-navtoggle__box { display: inline-flex; flex-direction: column; gap: 5px; width: 22px; }
.h26-navtoggle__box span {
	display: block; height: 2px; width: 100%;
	background: var(--h26-ink); border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.h26-navtoggle.is-active .h26-navtoggle__box span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.h26-navtoggle.is-active .h26-navtoggle__box span:nth-child(2) { opacity: 0; }
.h26-navtoggle.is-active .h26-navtoggle__box span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.h26-rubnav {
	padding: 0 var(--h26-pad);
	display: flex;
	flex-wrap: nowrap;
	gap: clamp(12px, 1.8vw, 26px);
	align-items: center;
	justify-content: center;
	border-top: 1px solid var(--h26-line-soft);
	min-height: 52px;
}
.h26-rubnav__item {
	font-family: var(--h26-body);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--h26-ink);
	padding: 16px 0;
	border-bottom: 2px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}
.h26-rubnav__item:hover { color: var(--h26-accent); border-bottom-color: var(--h26-accent); }
/* Le voci extra (Francesco Alberoni, Contatti) servono solo nel menu mobile */
.h26-rubnav__extra { display: none; }

/* =========================================================================
   RESPONSIVE — sotto 1100px: hamburger + pannello verticale
   ========================================================================= */
@media (max-width: 1099px) {
	.h26-masthead__meta { display: none; }
	.h26-navtoggle { display: flex; }
	.h26-brand__mark { width: 56px; height: 56px; }
	.h26-brand__name { font-size: clamp(1.35rem, 4vw, 1.8rem); }
	.h26-brand__tag { font-size: 0.9rem; }

	.h26-rubnav {
		display: none;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 6px var(--h26-pad) 14px;
		min-height: 0;
	}
	.h26-rubnav.is-open { display: flex; }
	.h26-rubnav__item {
		padding: 14px 2px;
		font-size: 0.92rem;
		border-bottom: 1px solid var(--h26-line-soft);
	}
	.h26-rubnav__item:hover { border-bottom-color: var(--h26-line-soft); }
	.h26-rubnav__extra { display: block; }
	.h26-rubnav__extra:first-of-type { margin-top: 4px; }
}

@media (max-width: 640px) {
	.h26-hero { min-height: clamp(440px, 80vh, 600px); }
}

/* =========================================================================
   HERO — copertina: immagine di sfondo + logo in alto, titolo in basso
   ========================================================================= */
.h26-hero {
	position: relative;
	min-height: clamp(520px, 74vh, 780px);
	background-size: cover;
	background-position: center;
	background-color: #b8b1a4;
	display: flex;
}
.h26-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(24,22,19,0.58) 0%,
		rgba(24,22,19,0.18) 24%,
		rgba(24,22,19,0.10) 46%,
		rgba(24,22,19,0.55) 74%,
		rgba(24,22,19,0.86) 100%
	);
}
.h26-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(26px, 4vw, 52px);
	color: #fff;
}
.h26-hero__bottom { max-width: 820px; }
.h26-hero__kicker {
	display: inline-block;
	font-family: var(--h26-body);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #e4e4ef;
	margin-bottom: 12px;
	text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.h26-hero__title {
	font-family: var(--h26-display);
	font-weight: 800;
	font-size: clamp(2.1rem, 5vw, 4.2rem);
	line-height: 1.03;
	letter-spacing: -0.015em;
	margin: 0 0 14px;
	color: #fff;
	text-shadow: 0 2px 22px rgba(0,0,0,0.45);
}
.h26-hero__title a { color: #fff; text-decoration: none; }
.h26-hero__title a:hover { color: #eceaf4; text-decoration: none; }
.h26-hero__byline {
	font-family: var(--h26-body);
	font-style: italic;
	font-size: 1.05rem;
	color: rgba(255,255,255,0.92);
	margin: 0 0 14px;
	text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.h26-hero__excerpt {
	font-size: 1.08rem;
	line-height: 1.55;
	color: rgba(255,255,255,0.9);
	margin: 0 0 24px;
	max-width: 58ch;
	text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.h26-hero__bottom .h26-btn {
	background: rgba(255,255,255,0.96);
	color: var(--h26-accent-dp);
}
.h26-hero__bottom .h26-btn:hover {
	background: #fff;
	color: var(--h26-ink);
}

/* =========================================================================
   SEZIONI (row pagine statiche)
   ========================================================================= */
.h26-sezioni {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--h26-gap);
}
@media (min-width: 600px)  { .h26-sezioni { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .h26-sezioni { grid-template-columns: repeat(4, 1fr); } }

.h26-sezione {
	display: flex;
	flex-direction: column;
	background: var(--h26-bg);
	border: 1px solid var(--h26-line);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.h26-sezione:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(32,32,29,0.10); }
.h26-sezione__media {
	display: block;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
}
.h26-sezione__media--blank { position: relative; }
.h26-sezione--0 .h26-sezione__media--blank { background: linear-gradient(135deg, #7a7d9c, #595c79); }
.h26-sezione--1 .h26-sezione__media--blank { background: linear-gradient(135deg, #c7a98f, #a07350); }
.h26-sezione--2 .h26-sezione__media--blank { background: linear-gradient(135deg, #b9a7c4, #8d7aa0); }
.h26-sezione--3 .h26-sezione__media--blank { background: linear-gradient(135deg, #cdbfa8, #a99878); }
.h26-sezione__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.h26-sezione__title {
	font-family: var(--h26-display);
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.15;
	color: var(--h26-ink);
	margin-bottom: 8px;
}
.h26-sezione__desc { font-size: 0.95rem; color: var(--h26-ink-soft); line-height: 1.45; flex: 1; }
.h26-sezione__arrow {
	margin-top: 16px;
	font-size: 1.3rem;
	color: var(--h26-accent);
	transition: transform 0.2s ease;
}
.h26-sezione:hover .h26-sezione__arrow { transform: translateX(6px); }

/* 4ª card istituzionale: tinta accent, niente foto, contenuto centrato */
.h26-sezione--feature {
	background: linear-gradient(160deg, #7a7d9c 0%, #595c79 100%);
	border-color: #595c79;
	justify-content: center;
}
.h26-sezione--feature .h26-sezione__body { justify-content: center; }
.h26-sezione--feature .h26-sezione__kicker {
	font-family: var(--h26-body);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.78);
	margin-bottom: 10px;
}
.h26-sezione--feature .h26-sezione__title { color: #fff; }
.h26-sezione--feature .h26-sezione__desc  { color: rgba(255,255,255,0.88); }
.h26-sezione--feature .h26-sezione__arrow  { color: #fff; }

/* =========================================================================
   BANNER ALBERONI (full width orizzontale)
   ========================================================================= */
.h26-alberoni {
	background: linear-gradient(105deg, #e7e5ee 0%, #dedce8 60%, #d6d4e2 100%);
	border-block: 1px solid #cdcad9;
}
.h26-alberoni__inner {
	max-width: var(--h26-wrap);
	margin-inline: auto;
	padding: clamp(28px, 4vw, 48px) var(--h26-pad);
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 40px);
	flex-wrap: wrap;
}
.h26-alberoni__photo {
	flex: 0 0 auto;
	width: 100px; height: 100px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	box-shadow: 0 4px 14px rgba(48,48,72,0.18);
}
.h26-alberoni__photo img { width: 100%; height: 100%; object-fit: cover; }
.h26-alberoni__text { flex: 1 1 320px; display: flex; flex-direction: column; }
.h26-alberoni__kicker {
	font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--h26-accent-dp); margin-bottom: 6px;
}
.h26-alberoni__title {
	font-family: var(--h26-display); font-weight: 800;
	font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.05;
	color: var(--h26-ink);
}
.h26-alberoni__desc { color: var(--h26-ink-soft); margin-top: 8px; font-size: 1.02rem; max-width: 52ch; }
.h26-alberoni__cta {
	flex: 0 0 auto;
	font-weight: 700; font-size: 0.95rem;
	color: #fff;
	background: var(--h26-accent);
	border: 1.5px solid var(--h26-accent);
	border-radius: 999px;
	padding: 12px 26px;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}
.h26-alberoni__inner:hover .h26-alberoni__cta { background: var(--h26-accent-dp); border-color: var(--h26-accent-dp); transform: translateY(-1px); }

/* =========================================================================
   RUBRICHE (griglia multi-colonna)
   ========================================================================= */
.h26-rubriche {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(32px, 3vw, 48px);
}
@media (min-width: 680px)  { .h26-rubriche { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .h26-rubriche { grid-template-columns: repeat(3, 1fr); } }

.h26-rubrica { display: flex; flex-direction: column; }
.h26-rubrica__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding-bottom: 12px;
	margin-bottom: 18px;
	border-bottom: 2px solid var(--h26-accent);
}
.h26-rubrica__name {
	font-family: var(--h26-display);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--h26-ink);
}
.h26-rubrica__all { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--h26-accent); }
.h26-rubrica__head:hover .h26-rubrica__all { color: var(--h26-accent); }

.h26-rubrica__lead { display: block; margin-bottom: 18px; }
.h26-rubrica__lead-media {
	display: block; border-radius: 10px; overflow: hidden; margin-bottom: 12px;
	aspect-ratio: 16 / 10; background: #ddd6c9;
}
.h26-rubrica__lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.h26-rubrica__lead:hover .h26-rubrica__lead-media img { transform: scale(1.04); }
.h26-rubrica__lead-title {
	display: block;
	font-family: var(--h26-display);
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.18;
	color: var(--h26-ink);
}
.h26-rubrica__lead:hover .h26-rubrica__lead-title { color: var(--h26-accent); }
.h26-rubrica__lead-by, .h26-rubrica__item-by {
	display: block;
	font-family: var(--h26-body);
	font-style: italic;
	font-size: 0.92rem;
	color: var(--h26-accent-dp);
	margin-top: 5px;
}
.h26-rubrica__item {
	display: block;
	padding: 14px 0;
	border-top: 1px solid var(--h26-line);
}
.h26-rubrica__item-title {
	display: block;
	font-family: var(--h26-display);
	font-weight: 600;
	font-size: 1.05rem;
	line-height: 1.25;
	color: var(--h26-ink);
}
.h26-rubrica__item:hover .h26-rubrica__item-title { color: var(--h26-accent); }

/* =========================================================================
   DOMANDE SULL'AMORE
   ========================================================================= */
.h26-pdc {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 4vw, 56px);
}
@media (min-width: 900px) {
	.h26-pdc { grid-template-columns: minmax(280px, 1fr) 1.6fr; align-items: start; }
}
.h26-pdc__aside { text-align: left; }
.h26-pdc__photo {
	width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
	margin-bottom: 20px; box-shadow: 0 6px 18px rgba(32,32,29,0.14);
}
.h26-pdc__title {
	font-family: var(--h26-display);
	font-weight: 800;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1.05;
	margin: 4px 0 14px;
	color: var(--h26-ink);
}
.h26-pdc__lede { font-size: 1.02rem; color: var(--h26-ink-soft); line-height: 1.55; margin: 0 0 22px; }

.h26-pdc__list { display: flex; flex-direction: column; }
.h26-pdc__item {
	display: block;
	padding: 18px 0;
	border-bottom: 1px solid rgba(122,125,156,0.28);
}
.h26-pdc__item:first-child { padding-top: 0; }
.h26-pdc__item-title {
	display: block;
	font-family: var(--h26-display);
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.2;
	color: var(--h26-ink);
	margin-bottom: 5px;
}
.h26-pdc__item:hover .h26-pdc__item-title { color: var(--h26-accent); }
.h26-pdc__item-excerpt { display: block; font-size: 0.98rem; color: var(--h26-ink-soft); line-height: 1.45; }
.h26-pdc__all {
	display: inline-block;
	margin-top: 18px;
	font-weight: 800; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--h26-accent-dp);
}

/* =========================================================================
   IN EVIDENZA (carosello: ultimi 6 articoli, 3 visibili, frecce + auto-avanzamento)
   Sta dentro .h26-wrap, quindi rispetta i margini di pagina degli altri elementi.
   ========================================================================= */
.h26-carousel {
	--cz-gap: clamp(20px, 2.4vw, 32px);
	position: relative;
}
.h26-carousel__track {
	display: flex;
	gap: var(--cz-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;            /* Firefox: nasconde la scrollbar */
	-ms-overflow-style: none;
	/* lo scroll su un asse ritaglia anche l'altro: serve spazio sopra/sotto
	   per non tagliare l'ombra delle card e il loro sollevamento in hover */
	padding: 10px 4px 30px;
	cursor: grab;                     /* invita al trascinamento col mouse */
}
.h26-carousel__track::-webkit-scrollbar { display: none; }   /* WebKit: idem */
/* durante il trascinamento: niente snap/selezione, scorrimento immediato */
.h26-carousel__track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; user-select: none; }
.h26-carousel__track img { -webkit-user-drag: none; user-drag: none; }

/* 3 card visibili alla dimensione originale (2 su tablet, 1 su mobile con sbirciata) */
.h26-carousel .h26-feat { flex: 0 0 82%; scroll-snap-align: start; }
@media (min-width: 620px) { .h26-carousel .h26-feat { flex-basis: calc((100% - var(--cz-gap)) / 2); } }
@media (min-width: 940px) { .h26-carousel .h26-feat { flex-basis: calc((100% - 2 * var(--cz-gap)) / 3); } }

/* Frecce di navigazione, sui bordi del carosello e dentro la pagina */
.h26-carousel__nav {
	position: absolute;
	top: 38%;                         /* centrate circa sull'immagine delle card */
	transform: translateY(-50%);
	z-index: 5;
	width: 46px; height: 46px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--h26-line);
	background: #fff;
	color: var(--h26-ink);
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(32, 32, 29, 0.16);
	transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.h26-carousel__nav:hover { background: var(--h26-accent); color: #fff; border-color: var(--h26-accent); }
.h26-carousel__nav--prev { left: -8px; }
.h26-carousel__nav--next { right: -8px; }
.h26-carousel__nav[disabled] { opacity: 0.35; cursor: default; pointer-events: none; }
@media (min-width: 1180px) {       /* su schermi larghi le frecce escono nei margini, fuori dalle card */
	.h26-carousel__nav--prev { left: -22px; }
	.h26-carousel__nav--next { right: -22px; }
}

.h26-feat {
	display: flex;
	flex-direction: column;
	background: var(--h26-surface);
	border: 1px solid var(--h26-line);
	border-radius: 14px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.h26-feat { position: relative; }
.h26-feat:hover { box-shadow: 0 14px 34px rgba(32, 32, 29, 0.10); transform: translateY(-2px); }
/* Tutta la card è cliccabile: il link del titolo si estende su tutta la superficie */
.h26-feat__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
/* La categoria resta un link a sé, sopra l'area cliccabile della card */
.h26-feat .h26-eyebrow { position: relative; z-index: 2; }

/* Niente sottolineatura al passaggio del mouse sui titoli grandi: su testo grande
   l'underline disturba. Resta invece sui link piccoli/inline, dove non dà fastidio. */
.h26-alberoni__inner:hover, .h26-alberoni__inner:focus,
.h26-feat__title a:hover, .h26-feat__title a:focus,
.h26-sezione:hover, .h26-sezione:focus { text-decoration: none; }
.h26-feat__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #ddd6c9; }
.h26-feat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.h26-feat:hover .h26-feat__media img { transform: scale(1.03); }
.h26-feat__media--blank { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #d8d0c2, #c7bca8); }
.h26-feat__body { padding: clamp(18px, 2vw, 24px); display: flex; flex-direction: column; gap: 8px; }
.h26-eyebrow--dot::before { content: "\2022"; margin-right: 7px; color: var(--h26-accent); }
.h26-feat__title {
	font-family: var(--h26-display);
	font-weight: 700;
	font-size: clamp(1.2rem, 1.6vw, 1.45rem);
	line-height: 1.2;
	margin: 0;
	color: var(--h26-ink);
}
.h26-feat__title a { color: inherit; }
.h26-feat__title a:hover { color: var(--h26-accent); }
.h26-feat__by { font-family: var(--h26-body); font-style: italic; font-size: 0.92rem; color: var(--h26-ink-soft); margin: 0; }
.h26-feat__excerpt { font-size: 0.95rem; line-height: 1.55; color: var(--h26-ink-soft); margin: 4px 0 0; }

/* =========================================================================
   ULTIMI ARTICOLI (grid card)
   ========================================================================= */
.h26-latest {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 3vw, 40px);
}
@media (min-width: 560px)  { .h26-latest { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .h26-latest { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .h26-latest { grid-template-columns: repeat(4, 1fr); } }

.h26-card { display: flex; flex-direction: column; }
.h26-card__media {
	display: block; border-radius: 10px; overflow: hidden; margin-bottom: 14px;
	aspect-ratio: 16 / 11; background: #ddd6c9;
}
.h26-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.h26-card:hover .h26-card__media img { transform: scale(1.04); }
.h26-card__media--blank { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #d8d0c2, #c7bca8); }
.h26-card__title {
	font-family: var(--h26-display);
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.22;
	margin: 0 0 6px;
	color: var(--h26-ink);
}
.h26-card__title a:hover { color: var(--h26-accent); text-decoration: none; }
.h26-card__by {
	font-family: var(--h26-body);
	font-style: italic;
	font-size: 0.9rem;
	color: var(--h26-accent-dp);
	margin: 0;
}
.h26-allposts { text-align: center; margin-top: clamp(28px, 3.5vw, 44px); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.h26-footer {
	background: #20201d;
	color: #d8d3c8;
	padding: clamp(40px, 5vw, 64px) 0;
}
.h26-footer__inner {
	max-width: var(--h26-wrap);
	margin-inline: auto;
	padding-inline: var(--h26-pad);
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-items: center;
	text-align: center;
}
.h26-footer__name {
	font-family: var(--h26-display);
	font-weight: 800;
	font-size: 1.8rem;
	color: #fff;
	display: block;
}
.h26-footer__tag { font-family: var(--h26-display); font-style: italic; color: #b9bbd0; display: block; margin-top: 2px; }
.h26-footer__issn { display: block; font-size: 0.8rem; color: #9a948a; margin-top: 8px; letter-spacing: 0.02em; }
.h26-footer__nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.h26-footer__nav a { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: #d8d3c8; }
.h26-footer__nav a:hover { color: #fff; }
.h26-footer__copy { font-size: 0.8rem; color: #8a847a; margin: 0; }

/* =========================================================================
   Riduci motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
	.h26 * { transition: none !important; }
}

/* =========================================================================
   Home 2026 dentro la chrome standard del sito (.site-frame + .site-content)
   Le sezioni gestiscono da sole la spaziatura: annullo padding/gap del wrapper.
   ========================================================================= */
body.home-2026 .site-content { padding-block: 0; }
body.home-2026 .site-content > * + * { margin-top: 0; }
