/* ================================================
   AGAPE WEDDINGS — BLOG CSS v33
   archive.php + single.php + home.php
   v28: pulito, rimosso fix Wix (:has(em:only-child)) obsoleto,
        sostituito con fix mirato classi reali Wix (.MffKp, .TIiei, .nP0oH)
   v30: aggiunto fix tabelle Wix Ricos (._2ElBq, [data-hook="table-component"])
   v31: aggiunto stile H3.agape-h3-check con ::before gold custom (post #1125 etc.)
   v32: aumentato contrasto filtri /blog + card meta/excerpt/cat/arrow
   v33: WhatsApp button alzato sopra sticky bar nei post singoli
   ================================================ */
/* ══════════════════════════════════════
   ARCHIVE: HERO
   ══════════════════════════════════════ */

.blog-hero {
  position: relative;
  height: 56vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  overflow: hidden;
  text-align: center;
}
.blog-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/5844df_666b194a03f84a298c2a1d0b5ee6e01b~mv2.png/v1/fill/w_1400,h_700,al_c,q_85/file.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transform: scale(1.04);
  animation: blog-hero-drift 18s ease-in-out infinite alternate;
}
@keyframes blog-hero-drift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.08) translateY(-12px); }
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42,61,44,0.55) 0%, rgba(26,26,24,0.75) 100%);
}
.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6%;
}
.blog-hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.blog-hero-orn-line {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.blog-hero-eyebrow {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
}
.blog-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.blog-hero-title em {
  font-style: italic;
  color: var(--parchment);
}
.blog-hero-sub {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,248,243,0.55);
}
.blog-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-ui);
  font-size: 0.55rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.35);
}

/* ══════════════════════════════════════
   ARCHIVE: FILTRI
   ══════════════════════════════════════ */

.blog-filters {
  background: var(--cream);
  border-bottom: 1px solid rgba(42,61,44,0.07);
  padding: 0 6%;
  position: sticky;
  top: 80px;
  z-index: 100;
}
.blog-filters-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.blog-filters-inner::-webkit-scrollbar { display: none; }
.blog-filter-btn {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(42,61,44,0.75);
  text-decoration: none;
  padding: 1.1rem 1.5rem;
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.blog-filter-btn:hover { color: var(--forest); }
.blog-filter-btn.active {
  color: var(--forest);
  border-bottom-color: var(--gold);
}

/* ══════════════════════════════════════
   ARCHIVE: SEZIONE
   ══════════════════════════════════════ */

.blog-grid-section {
  background: var(--cream);
  padding: 7vh 6% 12vh;
}
.blog-grid-inner {
  max-width: 1340px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   ARCHIVE: FEATURED ARTICLE
   ══════════════════════════════════════ */

.blog-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 520px;
  margin-bottom: 5rem;
  overflow: hidden;
  border: 1px solid rgba(42,61,44,0.08);
}
.blog-featured-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-out);
}
.blog-featured:hover .blog-featured-img {
  transform: scale(1.04);
}
.blog-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,26,24,0.25) 0%, transparent 60%);
  transition: opacity 0.5s;
}
.blog-featured-cat {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: var(--f-ui);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--gold);
  padding: 6px 14px;
}
.blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  background: var(--parchment);
}
.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.blog-meta-date,
.blog-meta-read {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: rgba(42,61,44,0.5);
}
.blog-meta-sep { color: rgba(42,61,44,0.25); font-size: 0.7rem; }
.blog-featured-title {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.blog-featured-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}
.blog-featured-title a:hover { color: var(--gold); }
.blog-featured-excerpt {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(26,26,24,0.6);
  margin-bottom: 2.5rem;
}
.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(42,61,44,0.25);
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}
.blog-read-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  gap: 1.2rem;
}

/* ══════════════════════════════════════
   ARCHIVE: GRIGLIA SECONDARIA
   ══════════════════════════════════════ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card normale */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(42,61,44,0.07);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(42,61,44,0.09);
  border-color: rgba(42,61,44,0.14);
}
.blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.35) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.blog-card:hover .blog-card-img-overlay { opacity: 1; }
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}
.blog-card-body {
  padding: 1.7rem 1.7rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-cat {
  font-family: var(--f-ui);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 0.7rem;
  display: block;
  transition: color 0.3s;
}
.blog-card-cat:hover { color: var(--forest); }
.blog-card-title {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  line-height: 1.22;
  color: var(--forest);
  margin-bottom: 0.8rem;
  flex: 1;
}
.blog-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt {
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(26,26,24,0.55);
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(42,61,44,0.07);
  margin-top: auto;
}
.blog-card-date {
  font-family: var(--f-ui);
  font-size: 0.57rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: rgba(42,61,44,0.45);
}
.blog-card-arrow {
  display: flex;
  align-items: center;
  color: var(--forest);
  opacity: 0.35;
  text-decoration: none;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
}
.blog-card:hover .blog-card-arrow {
  opacity: 1;
  color: var(--gold);
  transform: translateX(4px);
}

/* Card wide (span 2 colonne) */
.blog-card--wide {
  grid-column: span 2;
  flex-direction: row;
}
.blog-card--wide .blog-card-img-wrap {
  flex: 0 0 55%;
  aspect-ratio: auto;
}
.blog-card--wide .blog-card-body {
  padding: 2.5rem 2.2rem;
  justify-content: center;
}
.blog-card--wide .blog-card-title {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════
   ARCHIVE: PAGINAZIONE
   ══════════════════════════════════════ */

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 6rem !important;
  padding-top: 3rem;
  border-top: 1px solid rgba(42,61,44,0.07);
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  clear: both;
  width: 100%;
  grid-column: 1 / -1;
  z-index: 5;
  background: var(--cream);
}
.blog-featured {
  position: relative;
  z-index: 1;
}
.blog-grid {
  position: relative;
  z-index: 1;
}
.blog-pagination .page-numbers {
  font-family: var(--f-ui);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--forest);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(42,61,44,0.18);
  transition: all 0.3s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.blog-pagination .page-numbers.dots {
  border: none;
  color: rgba(42,61,44,0.65);
}

/* ══════════════════════════════════════
   SINGLE: HERO
   ══════════════════════════════════════ */

.post-hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background-color: var(--forest);
  background-image: var(--post-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,24,0.95) 0%,
    rgba(26,26,24,0.55) 35%,
    rgba(26,26,24,0.2) 65%,
    rgba(26,26,24,0.1) 100%
  );
}
.post-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8% 7%;
  max-width: 900px;
}
.post-hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  right: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-eyebrow {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.post-cat-link {
  font-family: var(--f-ui);
  font-size: 0.56rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  text-decoration: none;
  border: 1px solid rgba(212,180,122,0.35);
  padding: 5px 13px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.post-cat-link:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.post-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 1.8rem;
}
.post-meta {
  font-family: var(--f-ui);
  font-size: 0.62rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.45);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.post-meta-sep { opacity: 0.4; }

/* ══════════════════════════════════════
   SINGLE: INTRO EXCERPT
   ══════════════════════════════════════ */

.post-intro {
  background: var(--parchment);
  border-bottom: 1px solid rgba(42,61,44,0.07);
  padding: 4vh 0;
}
.post-intro-text {
  font-family: var(--f-body);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: rgba(42,61,44,0.75);
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}

/* ══════════════════════════════════════
   SINGLE: BODY LAYOUT
   ══════════════════════════════════════ */

.post-body {
  background: var(--cream);
  padding: 7vh 0 10vh;
}
.post-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 6%;
  position: relative;
}

/* ══════════════════════════════════════
   SINGLE: SHARE SIDEBAR
   ══════════════════════════════════════ */

.post-share {
  position: absolute;
  left: calc(-4rem - 2px);
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.post-share-label {
  font-family: var(--f-ui);
  font-size: 0.52rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(42,61,44,0.35);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 0.4rem;
}
.post-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(42,61,44,0.15);
  color: rgba(42,61,44,0.45);
  text-decoration: none;
  transition: all 0.3s;
}
.post-share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.post-share-divider {
  width: 1px;
  height: 40px;
  background: rgba(42,61,44,0.1);
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════
   SINGLE: CONTENT
   ══════════════════════════════════════ */

.post-content {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  font-weight: 300;
  line-height: 1.95;
  color: rgba(26,26,24,0.8);
}
.post-content p { margin-bottom: 1.7rem; }
.post-content h2,
.post-content .wp-block-heading:is(h2) {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 3.5rem 0 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(42,61,44,0.09);
}
.post-content h3,
.post-content .wp-block-heading:is(h3) {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--forest2);
  line-height: 1.25;
  margin: 2.8rem 0 1rem;
}
.post-content h4,
.post-content .wp-block-heading:is(h4) {
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2.2rem 0 0.6rem;
}
.post-content strong { font-weight: 600; color: var(--ink); }
.post-content em { font-style: italic; color: var(--forest2); }
.post-content a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.post-content a:hover { color: var(--gold); }

/* Immagini base (post NON-Wix, blocchi Gutenberg standard) */
.post-content figure:not(.nP0oH),
.post-content .wp-block-image { margin: 3.5rem 0; }
.post-content figure:not(.nP0oH) img,
.post-content .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.post-content figcaption:not(.MffKp) {
  font-family: var(--f-ui);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-align: center;
  margin-top: 0.9rem;
}

/* Liste */
.post-content ul,
.post-content ol { padding-left: 1.5rem; margin-bottom: 1.7rem; }
.post-content li { margin-bottom: 0.65rem; line-height: 1.8; }
.post-content ul li::marker { color: var(--gold); }

/* Blockquote */
.post-content blockquote {
  border-left: 2px solid var(--gold);
  margin: 3rem 0;
  padding: 1rem 2rem;
  background: rgba(184,150,90,0.04);
}
.post-content blockquote p {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--forest);
  margin: 0;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   SINGLE: TAGS
   ══════════════════════════════════════ */

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(42,61,44,0.08);
}
.post-tag {
  font-family: var(--f-ui);
  font-size: 0.57rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(42,61,44,0.55);
  text-decoration: none;
  border: 1px solid rgba(42,61,44,0.15);
  padding: 5px 14px;
  transition: all 0.3s;
}
.post-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════
   SINGLE: CTA BLOCK
   ══════════════════════════════════════ */

.post-cta-block {
  margin-top: 5rem;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.post-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.post-cta-inner {
  position: relative;
  text-align: center;
  padding: 5rem 3rem;
}
.post-cta-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold-lt);
  margin-bottom: 2rem;
}
.post-cta-label {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
}
.post-cta-headline {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.post-cta-headline em { font-style: italic; color: var(--gold-lt); }
.post-cta-sub {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,248,243,0.5);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.post-cta-btn {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--cream);
  padding: 15px 40px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.post-cta-btn:hover {
  background: var(--gold);
  color: var(--cream);
}

/* ══════════════════════════════════════
   SINGLE: NAVIGAZIONE POST
   ══════════════════════════════════════ */

.post-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(42,61,44,0.09);
}
.post-nav-divider {
  width: 1px;
  min-height: 80px;
  background: rgba(42,61,44,0.08);
  align-self: stretch;
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-decoration: none;
  transition: opacity 0.3s;
  position: relative;
  overflow: hidden;
}
.post-nav-link:hover { opacity: 0.7; }
.post-nav-link--right { text-align: right; align-items: flex-end; }
.post-nav-dir {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post-nav-ttl {
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.3;
}
.post-nav-thumb {
  width: 60px;
  height: 44px;
  object-fit: cover;
  opacity: 0.6;
  margin-top: 0.5rem;
  transition: opacity 0.3s;
}
.post-nav-link:hover .post-nav-thumb { opacity: 1; }

/* ══════════════════════════════════════
   SINGLE: BACK LINK
   ══════════════════════════════════════ */

.post-back {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(42,61,44,0.06);
}
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(42,61,44,0.45);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s;
}
.post-back-link:hover {
  color: var(--forest);
  gap: 1rem;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured-img-wrap { min-height: 320px; }
  .blog-featured-body { padding: 2.5rem 2rem; }
  .post-share { display: none; }
  .post-intro-text { padding-left: 1.2rem; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--wide {
    grid-column: span 1;
    flex-direction: column;
  }
  .blog-card--wide .blog-card-img-wrap { aspect-ratio: 4/3; }
  .post-hero { height: 65vh; min-height: 420px; }
  .post-hero-content { padding: 0 6% 9%; }
  .post-title { font-size: clamp(1.7rem, 6vw, 2.6rem); }

  .blog-hero { height: 48vh; }
  .blog-filters { top: 70px; padding: 0 4%; }
}
@media (max-width: 480px) {
  .post-container { padding: 0 5%; }
  .post-content { font-size: 1rem; }
  .post-cta-inner { padding: 3rem 1.5rem; }
  .blog-card-body { padding: 1.2rem; }
  .blog-featured-body { padding: 1.8rem 1.5rem; }
}

/* ══════════════════════════════════════
   STICKY BAR PREV/NEXT
   ══════════════════════════════════════ */

.post-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: rgba(42,61,44,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(184,150,90,0.18);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.42s var(--ease-out, cubic-bezier(0.16,1,0.3,1)),
              opacity 0.32s ease;
  pointer-events: auto;
}
.post-sticky-bar[data-hidden="true"] {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.post-sticky-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.post-sticky-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(240,236,227,0.88);
  flex: 1;
  min-width: 0;
  max-width: 46%;
  transition: opacity 0.25s;
}
.post-sticky-bar__link:hover { opacity: 0.85; }
.post-sticky-bar__link--next {
  flex-direction: row-reverse;
  justify-content: flex-end;
  text-align: right;
}
.post-sticky-bar__link--disabled {
  display: inline-block;
  flex: 1;
  max-width: 46%;
  pointer-events: none;
  visibility: hidden;
}
.post-sticky-bar__circle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184,150,90,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  background: rgba(184,150,90,0.05);
  transition: background 0.25s, border-color 0.25s;
}
.post-sticky-bar__link:hover .post-sticky-bar__circle {
  background: rgba(184,150,90,0.18);
  border-color: var(--gold);
}
.post-sticky-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.post-sticky-bar__eyebrow {
  font-family: var(--f-ui);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8a76e;
  line-height: 1;
}
.post-sticky-bar__title {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(240,236,227,0.92);
  letter-spacing: -0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post-sticky-bar__divider {
  width: 1px;
  height: 30px;
  background: rgba(184,150,90,0.22);
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .post-sticky-bar { padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); }
  .post-sticky-bar__link { gap: 10px; }
  .post-sticky-bar__circle { width: 34px; height: 34px; }
}

/* Mobile (≤600px) — design semplificato: SOLO frecce + label, NO titolo
   Il titolo del post è troppo lungo per stare in <300px disponibili.
   Su Medium/NYT mobile mostrano solo l'indicazione "Previous Story" /
   "Next Story" come pulsanti compatti. */
@media (max-width: 600px) {
  .post-sticky-bar {
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom)) !important;
  }
  .post-sticky-bar__inner {
    gap: 8px;
    justify-content: space-between;
  }
  .post-sticky-bar__link {
    gap: 10px;
    max-width: none;       /* no più 46% — flex gestisce lo spazio */
    flex: 1 1 auto;
    min-width: 0;
    padding: 4px 0;
  }
  .post-sticky-bar__circle {
    width: 36px;
    height: 36px;
  }
  /* NASCONDI il titolo del post su mobile (troppo lungo) */
  .post-sticky-bar__title {
    display: none !important;
  }
  /* Eyebrow diventa l'etichetta principale */
  .post-sticky-bar__eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(240,236,227,0.85);
    font-weight: 400;
  }
  .post-sticky-bar__text {
    gap: 0;
  }
  /* Allineamento: prev a sinistra, next a destra */
  .post-sticky-bar__link--prev {
    justify-content: flex-start;
  }
  .post-sticky-bar__link--next {
    justify-content: flex-end;
  }
  .post-sticky-bar__divider { height: 28px; }
}

/* Schermi minuscoli (≤380px) — riduco ancora un po' i cerchi */
@media (max-width: 380px) {
  .post-sticky-bar__circle { width: 34px; height: 34px; }
  .post-sticky-bar__eyebrow { font-size: 9px; letter-spacing: 0.16em; }
  .post-sticky-bar__link { gap: 8px; }
}

/* WhatsApp si alza quando sticky bar visibile su schermi piccoli */
@media (max-width: 700px) {
  .post-sticky-bar:not([data-hidden="true"]) ~ #wa-float {
    bottom: calc(90px + env(safe-area-inset-bottom));
    transition: bottom 0.42s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
  }
}

/* ══════════════════════════════════════
   AGAPE CHECK LIST
   ══════════════════════════════════════ */

.post-content .agape-check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.post-content .agape-check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-left: 0;
  margin: 0;
}
.post-content .agape-check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
  font-weight: 400;
  line-height: 1;
}
.post-content .agape-check-list__item-content {
  flex: 1;
  min-width: 0;
}
.post-content .agape-check-list__title {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--forest);
  letter-spacing: 0.01em;
  margin: 0 0 4px;
  line-height: 1.3;
}
.post-content .agape-check-list__desc {
  display: block;
  font-family: var(--f-ui);
  font-weight: 300;
  font-size: 0.92rem;
  color: rgba(42,61,44,0.72);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .post-content .agape-check-list { gap: 1.2rem; margin: 1.6rem 0; }
  .post-content .agape-check-list__title { font-size: 1.05rem; }
  .post-content .agape-check-list__desc { font-size: 0.88rem; }
}

/* ════════════════════════════════════════════════════════════════
   FIX BUG WIX MIGRAZIONE (v2 — classi reali)
   I post migrati da Wix conservano le loro classi originali del
   componente "image-viewer". Pattern reale rilevato nel DOM:
     <figure class="nP0oH">
       <div class="KDhmY" data-hook="image-viewer">
         <div class="SMIgN U1wpC MUt7O"><img></div>
         <p><button class="TIiei">...</button>     ← BOTTONE ZOMBIE
         </div>                                      ← HTML malformato
         <div class="KzHAJ"><div class="qxEUA">
           <figcaption class="MffKp"><span>caption</span></figcaption>
         </div></div>
       </figure>
   Causa "linea grigia": HTML malformato + bordi default ereditati Wix
   Causa "pallino centrato": <button class="TIiei"> rimasto visibile
   ════════════════════════════════════════════════════════════════ */

/* 1. NASCONDI tutti i bottoni Wix "espandi immagine" (zombie) */
.post-content .TIiei,
.post-content button[data-hook="image-expand-button"],
.post-content [data-hook="image-viewer"] button {
  display: none !important;
}

/* 2. Resetta i contenitori Wix dell'image viewer */
.post-content .nP0oH,
.post-content .KDhmY,
.post-content .SMIgN,
.post-content .U1wpC,
.post-content .MUt7O,
.post-content .KzHAJ,
.post-content .qxEUA,
.post-content .plqnX,
.post-content .-HrEA {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  max-width: 100% !important;
}

/* 3. La figura Wix diventa un blocco pulito centrato */
.post-content figure.nP0oH {
  display: block !important;
  margin: 2.5rem auto !important;
  max-width: 100% !important;
  text-align: center;
}

/* 4. Immagine pulita */
.post-content figure.nP0oH img,
.post-content [data-hook="image-viewer"] img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(42, 61, 44, 0.06);
}

/* 5. Nascondi i <p> orfani vuoti che contenevano solo il bottone TIiei */
.post-content figure.nP0oH > p:empty,
.post-content figure.nP0oH p:has(> button),
.post-content figure.nP0oH p:has(> .TIiei) {
  display: none !important;
}
@supports not (selector(:has(*))) {
  .post-content figure.nP0oH > p { display: none; }
  .post-content figure.nP0oH figcaption { display: block; }
}

/* 6. FIGCAPTION elegante — la classe Wix .MffKp diventa una vera didascalia */
.post-content figcaption.MffKp,
.post-content figure.nP0oH figcaption {
  display: block !important;
  text-align: center !important;
  font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif !important;
  font-style: italic !important;
  font-size: 0.92rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.03em !important;
  color: rgba(42, 61, 44, 0.55) !important;
  margin: 0.9rem auto 0 !important;
  padding: 0 !important;
  max-width: 580px !important;
  line-height: 1.5 !important;
  background: none !important;
  border: none !important;
}
.post-content figcaption.MffKp span,
.post-content figure.nP0oH figcaption span {
  display: inline !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 7. Nascondi gli <hr> standalone tipici di Wix */
.post-content hr,
.post-content hr.wp-block-separator,
.post-content .wp-block-separator {
  display: none !important;
}

/* 8. Nascondi i <br role="presentation"> dentro div vuoti (spaziatura abusiva) */
.post-content .R-1EE > br[role="presentation"] {
  display: none;
}
.post-content .dUraF:has(> .R-1EE > br[role="presentation"]:only-child),
.post-content div[id^="viewer-"]:has(> .R-1EE > br[role="presentation"]:only-child) {
  display: none !important;
}
.post-content .dUraF,
.post-content div[id^="viewer-"] {
  min-height: 0 !important;
}

/* 9. Reset div spaziatori Wix orfani */
.post-content div[data-breakout="normal"]:empty,
.post-content div[data-breakout="normal"]:has(> div:only-child:empty) {
  display: none;
}

/* ════════════════════════════════════════════════════════════════
   FIX H2 + DIDASCALIE WIX (link viola sottolineati) — v29 13 mag
   ════════════════════════════════════════════════════════════════ */

/* 10. H2 / H3 con <a> dentro (Wix esporta titoli come link)
   → Eredita stile h2 elegante, niente viola sottolineato */
.post-content h2 a,
.post-content h3 a,
.post-content h2 a:visited,
.post-content h3 a:visited {
  color: var(--forest, #2a3d2c) !important;
  text-decoration: none !important;
  border-bottom: none !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  background: none !important;
}

.post-content h2 a:hover,
.post-content h3 a:hover {
  color: var(--gold, #b8965a) !important;
  text-decoration: none !important;
}

/* Sottolineatura interna ai titoli (Wix usava <u> dentro <a>) */
.post-content h2 a u,
.post-content h3 a u,
.post-content h2 u,
.post-content h3 u {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* 11. Didascalie immagini Wix
   Pattern reale: <p style="text-align:center"><em><a>testo</a></em></p>
   subito dopo <figure> o <img>
   → stile italic muted, niente viola sottolineato */
.post-content p[style*="text-align:center"] em a,
.post-content p[style*="text-align: center"] em a,
.post-content p[style*="text-align:center"] em,
.post-content p[style*="text-align: center"] em {
  color: #6b6b66 !important;
  text-decoration: none !important;
  font-style: italic !important;
  font-family: var(--f-display, 'Cormorant Garamond'), serif !important;
  font-size: 0.92em !important;
  border-bottom: none !important;
  background: none !important;
}

.post-content p[style*="text-align:center"] em a:hover,
.post-content p[style*="text-align: center"] em a:hover {
  color: var(--gold, #b8965a) !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  text-decoration-thickness: 1px !important;
}

/* 12. Anche figcaption (caso WP nativo) */
.post-content figure figcaption,
.post-content figure figcaption a,
.post-content figure figcaption a:visited {
  color: #6b6b66 !important;
  text-decoration: none !important;
  font-style: italic !important;
  font-family: var(--f-display, 'Cormorant Garamond'), serif !important;
  font-size: 0.92em !important;
  text-align: center !important;
}

.post-content figure figcaption a:hover {
  color: var(--gold, #b8965a) !important;
  text-decoration: underline !important;
}

/* 13. Reset eventuali <u> dentro didascalie (Wix lo aggiunge) */
.post-content p[style*="text-align:center"] em a u,
.post-content p[style*="text-align: center"] em a u,
.post-content figure figcaption u {
  text-decoration: none !important;
  border-bottom: none !important;
}



/* ════════════════════════════════════════════════════════════════
   TABELLE WIX RICOS (v30) — fix per cost breakdown e comparison
   Pattern: <table class="_2ElBq" data-hook="table-component">
   con bordi-fantasma in <div style="position:absolute">
   Affette: 20 post, top #1125 (42 td), #1047 (24 td), #1106 (24 td)
   ════════════════════════════════════════════════════════════════ */

/* 1. NASCONDI bordi-fantasma Wix (div assoluti dentro <td>) */
.post-content table[data-hook="table-component"] td > div[style*="position:absolute"],
.post-content table._2ElBq td > div[style*="position:absolute"] {
  display: none !important;
}

/* 2. RESET wrapper Wix + colgroup forzato 120px */
.post-content table[data-hook="table-component"],
.post-content table._2ElBq {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 2.5rem 0 !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.95rem !important;
  background: var(--cream, #faf8f3) !important;
  box-shadow: 0 4px 24px rgba(42, 61, 44, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: table !important;
}

/* 3. COLGROUP — annulla width fisse Wix */
.post-content table[data-hook="table-component"] colgroup col,
.post-content table._2ElBq colgroup col {
  width: auto !important;
  min-width: 0 !important;
}

/* 4. TBODY / TR */
.post-content table[data-hook="table-component"] tbody,
.post-content table._2ElBq tbody {
  display: table-row-group !important;
}

.post-content table[data-hook="table-component"] tr,
.post-content table._2ElBq tr {
  display: table-row !important;
  height: auto !important;
  border-bottom: 1px solid rgba(184, 150, 90, 0.2);
}

.post-content table[data-hook="table-component"] tr:last-child,
.post-content table._2ElBq tr:last-child {
  border-bottom: none;
}

/* 5. CELLE — ricrea layout tabellare pulito */
.post-content table[data-hook="table-component"] td,
.post-content table._2ElBq td {
  display: table-cell !important;
  position: relative !important;
  padding: 14px 16px !important;
  vertical-align: top !important;
  text-align: left !important;
  border: none !important;
  color: var(--forest, #2a3d2c) !important;
  line-height: 1.55 !important;
  background: transparent !important;
}

/* 6. ZEBRA — righe pari parchment trasparente */
.post-content table[data-hook="table-component"] tbody tr:nth-child(even),
.post-content table._2ElBq tbody tr:nth-child(even) {
  background: rgba(240, 236, 227, 0.5);
}

/* 7. PRIMA RIGA = HEADER (Wix non usa <thead>) */
.post-content table[data-hook="table-component"] tbody tr:first-child,
.post-content table._2ElBq tbody tr:first-child {
  background: var(--forest, #2a3d2c) !important;
}

.post-content table[data-hook="table-component"] tbody tr:first-child td,
.post-content table._2ElBq tbody tr:first-child td {
  color: var(--cream, #faf8f3) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 18px 16px !important;
}

.post-content table[data-hook="table-component"] tbody tr:first-child td span,
.post-content table._2ElBq tbody tr:first-child td span,
.post-content table[data-hook="table-component"] tbody tr:first-child td strong,
.post-content table._2ElBq tbody tr:first-child td strong {
  color: var(--cream, #faf8f3) !important;
}

/* 8. PARAGRAFI E SPAN dentro celle — reset stili Wix */
.post-content table[data-hook="table-component"] td p,
.post-content table._2ElBq td p {
  margin: 0 !important;
  padding: 0 !important;
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
}

.post-content table[data-hook="table-component"] td span,
.post-content table._2ElBq td span {
  font-family: inherit !important;
  color: inherit !important;
}

/* 9. PRIMA COLONNA — nomi venue in gold bold */
.post-content table[data-hook="table-component"] tbody tr:not(:first-child) td:first-child,
.post-content table._2ElBq tbody tr:not(:first-child) td:first-child {
  font-weight: 600 !important;
  color: var(--gold, #b8965a) !important;
}

.post-content table[data-hook="table-component"] tbody tr:not(:first-child) td:first-child strong,
.post-content table._2ElBq tbody tr:not(:first-child) td:first-child strong,
.post-content table[data-hook="table-component"] tbody tr:not(:first-child) td:first-child span,
.post-content table._2ElBq tbody tr:not(:first-child) td:first-child span {
  font-weight: 600 !important;
  color: var(--gold, #b8965a) !important;
}

/* 10. RESPONSIVE — scroll orizzontale su mobile */
@media (max-width: 768px) {
  .post-content table[data-hook="table-component"],
  .post-content table._2ElBq {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    font-size: 0.85rem !important;
  }

  .post-content table[data-hook="table-component"] tbody,
  .post-content table._2ElBq tbody {
    display: table !important;
    width: max-content !important;
    min-width: 100% !important;
  }

  .post-content table[data-hook="table-component"] td,
  .post-content table._2ElBq td {
    padding: 10px 12px !important;
    white-space: normal !important;
    min-width: 110px;
  }
}

/* 11. WRAPPER ESTERNO Wix — neutralizza padding interno --ricos */
.post-content [style*="--ricos-internal-table-cell-padding"] {
  --ricos-internal-table-cell-padding-top: 0 !important;
  --ricos-internal-table-cell-padding-right: 0 !important;
  --ricos-internal-table-cell-padding-bottom: 0 !important;
  --ricos-internal-table-cell-padding-left: 0 !important;
}


/* ════════════════════════════════════════════════════════════════
   H3 CHECK PREFIX (v31) — stile per H3.agape-h3-check
   Fix per post che hanno <h3>✔ Titolo</h3> con ✔ renderizzato gigante.
   Post target: #1125 (5 H3) e altri con stesso pattern Wix.
   Il ✔ viene rimosso dal testo da agape-fixchecks-v2, sostituito qui via ::before.
   ════════════════════════════════════════════════════════════════ */

.post-content h3.agape-h3-check {
  position: relative;
  padding-left: 2.2em;
  display: block;
}

.post-content h3.agape-h3-check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  font-size: 0.75em;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: var(--cream, #faf8f3);
  background: var(--gold, #b8965a);
  border-radius: 50%;
  line-height: 1;
  /* Forza font system, no emoji rendering */
  font-variant-emoji: text;
  text-rendering: optimizeLegibility;
}

/* Anche il testo dell'H3 resta nello stile del tema (Cormorant) */
.post-content h3.agape-h3-check span {
  font-family: inherit;
  color: inherit;
}

/* Mobile: ridurre leggermente */
@media (max-width: 768px) {
  .post-content h3.agape-h3-check {
    padding-left: 1.9em;
  }
  .post-content h3.agape-h3-check::before {
    width: 1.4em;
    height: 1.4em;
    font-size: 0.7em;
  }
}


/* ════════════════════════════════════════════════════════════════
   CONTRASTO BLOG (v32) — accessibilità WCAG
   Override delle regole originali per filtri /blog e card body.
   Caricato in fondo a blog.css → vince per ordine sorgente.
   ════════════════════════════════════════════════════════════════ */

/* ── FILTRI CATEGORIE /blog ── */
.blog-filter-btn {
  color: rgba(42, 61, 44, 0.92) !important; /* prima 0.75 */
  font-weight: 400 !important;              /* prima 300 */
}

.blog-filter-btn:hover {
  color: var(--gold) !important;            /* feedback più visibile */
  border-bottom-color: rgba(184, 150, 90, 0.4) !important;
}

.blog-filter-btn.active {
  color: var(--forest) !important;
  font-weight: 500 !important;
}

/* ── CARD CATEGORIA ── */
.blog-card-cat {
  color: var(--forest) !important;          /* prima gold delicato */
  font-weight: 500 !important;              /* prima 300 */
  opacity: 0.85;
}

.blog-card-cat:hover {
  color: var(--gold) !important;
  opacity: 1;
}

/* ── CARD EXCERPT ── */
.blog-card-excerpt {
  color: rgba(26, 26, 24, 0.78) !important; /* prima 0.55 */
}

/* ── CARD DATA ── */
.blog-card-date,
.blog-meta-date {
  color: rgba(42, 61, 44, 0.75) !important; /* prima 0.45 */
  font-weight: 400 !important;              /* prima 200 */
}

/* ── CARD ARROW ── */
.blog-card-arrow {
  opacity: 0.6 !important;                  /* prima 0.35 */
  color: var(--forest) !important;
}

.blog-card:hover .blog-card-arrow {
  opacity: 1 !important;
  color: var(--gold) !important;
}

/* ── FEATURED META (data + reading time) ── */
.blog-featured-meta,
.blog-meta-read,
.blog-meta-sep {
  color: rgba(42, 61, 44, 0.78) !important; /* default era opacity 0.45-0.6 */
}

/* ── PAGINAZIONE ── */
.blog-pagination a,
.blog-pagination span {
  color: rgba(42, 61, 44, 0.9) !important;
}


/* ════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT (v33) — posizionamento sopra sticky bar
   Nei post singoli (.single-post) la sticky bar prev/next sta a
   bottom:0 con altezza ~90px, quindi alziamo il WhatsApp a 110px.
   Sulle altre pagine (homepage, about, /blog, ecc.) resta al default.
   ════════════════════════════════════════════════════════════════ */

/* Default — pagine senza sticky bar */
#wa-float {
  bottom: 24px;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Post singoli — sticky bar attiva */
body.single-post #wa-float {
  bottom: 110px !important;
}

/* Mobile — sticky bar leggermente più compatta */
@media (max-width: 768px) {
  body.single-post #wa-float {
    bottom: 95px !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   FINE
   ════════════════════════════════════════════════════════════════ */
