@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,400;0,500;0,600;1,400&family=Urbanist:wght@400;500;600;700&display=swap');

/* ─────────────────────────────────────────────────────────────
   fluid-hub — child.css
   Theme parent: SR Theme Free (sr-blog-single-v3.html)
   Child theme:  NewFluidHub
   ────────────────────────────────────────────────────────── */


/* ─── 1. DESIGN TOKENS ─────────────────────────────────────── */

html {
  --color-primary:    #FA8232;
  --color-primary-50: #FFF3EB;
  --color-bg-blue:    #283148;
  --color-gray-900:   #191C1F;
  --color-gray-700:   #475156;
  --color-gray-600:   #5F6C72;
  --color-gray-500:   #77878F;
  --color-gray-300:   #ADB7BC;
  --color-gray-50:    #F2F4F5;
  --color-border:     #E4E7E9;
  --color-blue-link:  #2484C2;
}

body.blog-post,
body.blog-listing {
  --font-ui:   'Urbanist', sans-serif;
  --font-body: 'Public Sans', sans-serif;
}


/* ═══════════════════════════════════════════════════════════
   HEADER — fh-header (custom child theme header)
   ═══════════════════════════════════════════════════════════ */

/* ─── TOP BAR ──────────────────────────────────────────────── */

.fh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.fh-topbar {
  background-color: #283148;
  height: 40px;
  display: flex;
  align-items: center;
}

.fh-topbar-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fh-topbar-msg {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.fh-topbar-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.fh-topbar-auth {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  color: #fff;
}

.fh-topbar-link {
  color: #fff !important;
  text-decoration: underline !important;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  transition: opacity 0.15s;
}

.fh-topbar-link:hover {
  opacity: 0.8;
}

.fh-topbar-or {
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
}

.fh-topbar-sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.25);
  margin: 0 1rem;
  vertical-align: middle;
}

.fh-topbar-lang {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.fh-topbar-lang svg {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .fh-topbar-msg {
    display: none;
  }
  .fh-topbar-inner {
    justify-content: flex-end;
  }
}


/* ─── MAIN NAV ─────────────────────────────────────────────── */

.fh-mainnav {
  background: #fff;
  border-bottom: 1px solid #E4E7E9;
  height: 72px;
  display: flex;
  align-items: center;
}

.fh-mainnav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


/* ─── MENU BUTTON ──────────────────────────────────────────── */

.fh-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F2F4F5;
  border: none;
  border-radius: 2px;
  padding: 0.75rem 1.25rem;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #191C1F;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.fh-menu-btn:hover {
  background: #E4E7E9;
}

.fh-menu-btn svg {
  transition: transform 0.2s ease;
}

.fh-menu-btn.is-open svg {
  transform: rotate(180deg);
}


/* ─── LOGO ─────────────────────────────────────────────────── */

.fh-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  flex-shrink: 0;
}

.fh-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.fh-logo-wordmark {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #191C1F;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.fh-logo:hover .fh-logo-wordmark {
  color: #FA8232;
}


/* ─── SEARCH BAR ───────────────────────────────────────────── */

.fh-search-bar {
  flex: 1;
  min-width: 0;
}

.fh-search-bar form {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(14,28,45,0.4);
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.fh-search-bar form:focus-within {
  border-color: #FA8232;
  box-shadow: 0 0 0 2px rgba(250,130,50,0.12);
}

.fh-search-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  padding: 0.75rem 1rem;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #191C1F;
  background: transparent;
  min-width: 0;
  appearance: none;
}

.fh-search-input::placeholder {
  color: #C7C7C7;
}

.fh-search-input::-webkit-search-decoration,
.fh-search-input::-webkit-search-cancel-button {
  display: none;
}

.fh-search-btn {
  border: none !important;
  background: transparent;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #FA8232;
  flex-shrink: 0;
  transition: color 0.15s;
}

.fh-search-btn:hover {
  color: #d96b1e;
}


/* ─── NAV ICONS ────────────────────────────────────────────── */

.fh-nav-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.fh-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #191C1F;
  text-decoration: none !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}

.fh-icon-btn:hover {
  background: #F2F4F5;
  color: #FA8232;
}

.fh-icon-btn svg {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .fh-logo-wordmark {
    font-size: 1.375rem;
  }
  .fh-mainnav-inner {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .fh-mainnav {
    height: auto;
    padding: 0.625rem 0;
  }
  .fh-mainnav-inner {
    flex-wrap: wrap;
    gap: 0.625rem;
    padding: 0.25rem 1rem;
  }
  .fh-logo {
    order: 1;
    flex-shrink: 0;
  }
  .fh-search-bar {
    order: 2;
    flex: 0 0 100%;
  }
}


/* ─── NAV CATEGORIE (inline nel mainnav) ─────────────────────── */

.fh-nav-cats {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.fh-nav-cats::-webkit-scrollbar {
  display: none;
}

.fh-nav-cat-link {
  display: inline-block;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475156;
  text-decoration: none !important;
  padding: 5px 12px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.fh-nav-cat-link:hover {
  background: #FFF3EB;
  color: #FA8232;
}

/* ─── Link sito ufficiale ───────────────────────────────────── */

.fh-nav-site-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #191C1F;
  text-decoration: none !important;
  white-space: nowrap;
  padding: 7px 14px;
  border: 1.5px solid #E4E7E9;
  border-radius: 2px;
  transition: border-color 0.15s, color 0.15s;
}

.fh-nav-site-link:hover {
  border-color: #FA8232;
  color: #FA8232;
}

.fh-nav-site-link svg {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .fh-nav-cats {
    display: none;
  }
  .fh-nav-site-link {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════ */

.fh-breadcrumb {
  height: 41px;
  background: #fff;
  border-bottom: 1px solid #E4E7E9;
}

.fh-breadcrumb-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.fh-breadcrumb-home {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2484C2;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.fh-breadcrumb-home:hover {
  color: #FA8232;
}

.fh-breadcrumb-home svg {
  width: 20px;
  height: 20px;
  color: inherit;
  flex-shrink: 0;
}

.fh-breadcrumb-arrow {
  color: #ADB7BC;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.fh-breadcrumb-cat {
  color: #5F6C72;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.fh-breadcrumb-cat:hover {
  color: #FA8232;
}

.fh-breadcrumb-current {
  color: #5F6C72;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGE LAYOUT
   ═══════════════════════════════════════════════════════════ */

.fh-article-page {
  background: #fff;
}

.fh-article-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.fh-hero-image {
  margin-bottom: 3rem;
}

.fh-hero-image img {
  width: 100%;
  height: 740px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.fh-article-grid {
  gap: 48px;
  align-items: flex-start;
}

.fh-article-main {
  flex: 0 0 auto;
  width: 872px;
  min-width: 0;
  margin: 0 auto;
}

.fh-article-aside {
  flex: 1;
}


/* ─── ARTICLE META ─────────────────────────────────────────── */

.fh-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1rem;
}

.fh-meta-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #475156;
  text-decoration: none;
  transition: color 0.15s;
}

.fh-meta-cat:hover {
  color: #FA8232;
}

.fh-meta-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #475156;
}

.fh-meta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


/* ─── ARTICLE TITLE ────────────────────────────────────────── */

.fh-article-title {
  font-family: 'Public Sans', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  color: #191C1F;
  margin: 0.75rem 0 1.25rem;
}


/* ─── BYLINE ───────────────────────────────────────────────── */

.fh-byline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E4E7E9;
}

.fh-byline-author {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.fh-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.fh-author-avatar--placeholder {
  display: block;
  background: #E4E7E9;
}

.fh-author-name {
  font-family: 'Public Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #191C1F;
  transition: color 0.15s;
}

.fh-byline-author:hover .fh-author-name {
  color: #FA8232;
}


/* ─── SHARE BUTTONS ────────────────────────────────────────── */

.fh-share {
  display: flex;
  gap: 8px;
  align-items: center;
}

.fh-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}

.fh-share-wa  { background: #25D366; color: #fff; }
.fh-share-fb  { background: #3B5998; color: #fff; }
.fh-share-tw  { background: #1DA1F2; color: #fff; }
.fh-share-li  { background: #0077B5; color: #fff; }
.fh-share-copy { background: #77878F; color: #fff; }

.fh-share-btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.fh-share-btn.is-copied {
  background: #FA8232;
}


/* ─── BLOG CONTENT ─────────────────────────────────────────── */

.blog-content {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  margin-bottom: 2.5rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #191C1F;
  margin: 2.5rem 0 0.875rem;
}

.blog-content h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: #191C1F;
  margin: 2rem 0 0.625rem;
}

.blog-content h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #191C1F;
  margin: 1.75rem 0 0.5rem;
}

.blog-content a {
  color: #2484C2;
  text-decoration: underline;
  transition: color 0.15s;
}

.blog-content a:hover {
  color: #FA8232;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content hr {
  border: none;
  border-top: 1px solid #E4E7E9;
  margin: 3rem 0;
}

.blog-content img {
  max-width: 100%;
  border-radius: 3px;
  display: block;
}

.blog-content figure {
  margin: 2rem 0;
}

.blog-content figcaption,
.blog-content .hs-image-caption {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.8125rem;
  color: #77878F;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.blog-content strong,
.blog-content b {
  font-weight: 600;
}

.blog-content em,
.blog-content i {
  font-style: italic;
}


/* ─── BLOCKQUOTE ───────────────────────────────────────────── */

.blog-content blockquote {
  position: relative;
  background: #FFF3EB;
  border-left: 4px solid #FA8232;
  border-radius: 0 4px 4px 0;
  padding: 2.5rem 2.5rem 2.5rem 5rem;
  margin: 2.5rem 0;
}

.blog-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  color: #FA8232;
  line-height: 1;
  opacity: 0.7;
}

.blog-content blockquote p {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7778;
  color: #191C1F;
  margin: 0;
}


/* ─── TWO-IMAGE GRID ───────────────────────────────────────── */

.fh-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.fh-img-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
}

@media (max-width: 575px) {
  .fh-img-grid {
    grid-template-columns: 1fr;
  }
}


/* ─── TAGS ROW ─────────────────────────────────────────────── */

.fh-tags-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2rem 0;
}

.fh-tags-label {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #5F6C72;
  margin-right: 4px;
}

.fh-tag {
  display: inline-flex;
  align-items: center;
  background: #F2F4F5;
  color: #475156;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 2px;
  border: 1px solid #E4E7E9;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.fh-tag:hover {
  background: #FFF3EB;
  color: #FA8232;
  border-color: #FA8232;
}


/* ─── AUTHOR BOX ───────────────────────────────────────────── */

.fh-author-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid #E4E7E9;
  border-radius: 4px;
  background: #F2F4F5;
  margin: 2rem 0;
}

.fh-author-box-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.fh-author-box-info {
  min-width: 0;
}

.fh-author-box-name {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #191C1F;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.15s;
}

.fh-author-box-name:hover {
  color: #FA8232;
}

.fh-author-box-bio {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #5F6C72;
  margin: 0;
  line-height: 1.5;
}


/* ─── RELATED POSTS ────────────────────────────────────────── */

.fh-related {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #E4E7E9;
}

.fh-related-heading {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #77878F;
  margin-bottom: 1.5rem;
}

.fh-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.fh-related-card {
  display: block;
  border: 1px solid #E4E7E9;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}

.fh-related-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.fh-related-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.fh-related-body {
  padding: 0.75rem 1rem 1rem;
}

.fh-related-cat {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #FA8232;
  display: block;
  margin-bottom: 0.5rem;
}

.fh-related-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #191C1F;
  margin: 0 0 0.5rem;
  transition: color 0.15s;
}

.fh-related-card:hover .fh-related-title {
  color: #FA8232;
}

.fh-related-date {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.75rem;
  color: #77878F;
}


/* ─── COMMENTS ─────────────────────────────────────────────── */

.fh-comments {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #E4E7E9;
}


/* ═══════════════════════════════════════════════════════════
   BLOG POST — LEGACY HERO / SR WRAPPER STYLES
   (kept for backward compatibility with existing templates)
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO SECTION ─────────────────────────────────────────── */

.featured-image-hero {
  position: relative !important;
  min-height: 480px !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.featured-image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.20) 40%,
    rgba(0,0,0,0.72) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.featured-image-hero .hero-container,
.featured-image-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.featured-image-hero .hero-row,
.featured-image-hero .hero-row.sr-spacer-50 {
  padding-top: 3rem !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.featured-image-hero .hero-content {
  padding: 1rem 1rem 2.5rem !important;
}

.featured-image-hero .container.hero-container,
.featured-image-hero .hero-container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.featured-image-hero .hero-content .tags {
  margin-bottom: 0.75rem;
}

.featured-image-hero .hero-content .tags a {
  display: inline-block;
  background: var(--color-primary);
  color: #fff !important;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  text-decoration: none !important;
}

.featured-image-hero .hero-content .heading,
.featured-image-hero .hero-content h1,
.featured-image-hero .hero-content h2 {
  font-family: 'Urbanist', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #fff !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.featured-image-hero .hero-content .author.author-inline {
  margin-top: 0 !important;
  margin-bottom: 0;
}

.featured-image-hero .hero-content .author.author-inline .d-flex {
  align-items: center;
  gap: 0.5rem;
}

.featured-image-hero .hero-content .avatar img {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.6);
}

.featured-image-hero .hero-content .author-link {
  font-family: 'Urbanist', sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.featured-image-hero .hero-content .author-link:hover {
  text-decoration: underline !important;
}

.featured-image-hero .hero-content .author-inline div,
.featured-image-hero .hero-content .author-inline > div > div > div {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.80);
}

.featured-image-hero .hero-content .author-inline > div > div {
  color: rgba(255,255,255,0.80);
  font-size: 0.875rem;
  font-family: 'Public Sans', sans-serif;
}

@media (max-width: 767px) {
  .featured-image-hero {
    min-height: 320px !important;
  }
  .featured-image-hero .hero-content .heading,
  .featured-image-hero .hero-content h1,
  .featured-image-hero .hero-content h2 {
    font-size: 1.625rem !important;
  }
  .featured-image-hero .hero-content {
    padding-bottom: 1.5rem;
  }
}


/* ─── SR-BLOG-POST WRAPPER ─────────────────────────────────── */

.sr-blog-post {
  background: #fff;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.sr-blog-post .container {
  max-width: 1140px;
}

.sr-blog-post .col-md-8.offset-md-2,
.sr-blog-post .col-lg-8.offset-lg-2 {
  position: relative !important;
  box-sizing: border-box !important;
}

.sr-blog-post .row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-right: -15px !important;
  margin-left: -15px !important;
}

.sr-blog-post .row > [class*="col-"] {
  position: relative;
  box-sizing: border-box;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .sr-blog-post .col-md-8 {
    flex: 0 0 66.6667% !important;
    max-width: 66.6667% !important;
  }
  .sr-blog-post .offset-md-2 {
    margin-left: 16.6667% !important;
  }
  .sr-blog-post .col-lg-8 {
    flex: 0 0 66.6667% !important;
    max-width: 66.6667% !important;
  }
  .sr-blog-post .offset-lg-2 {
    margin-left: 16.6667% !important;
  }
  .sr-blog-post .col-md-10 {
    flex: 0 0 83.3333% !important;
    max-width: 83.3333% !important;
  }
  .sr-blog-post .offset-md-1 {
    margin-left: 8.3333% !important;
  }
}

@media (max-width: 767px) {
  .sr-blog-post .col-md-8,
  .sr-blog-post .col-lg-8,
  .sr-blog-post .col-md-10 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}


/* ─── TAG / CATEGORIA (nel corpo articolo) ─────────────────── */

.sr-blog-post article .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.sr-blog-post article .tags a {
  display: inline-flex;
  align-items: center;
  background: var(--color-gray-50);
  color: var(--color-gray-700);
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s;
  border: 1px solid var(--color-border) !important;
}

.sr-blog-post article .tags a:hover {
  background: var(--color-primary-50);
  color: var(--color-primary);
  border-color: var(--color-primary) !important;
}


/* ─── SEZIONE AUTORE ───────────────────────────────────────── */

.sr-blog-post .author-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-gray-50);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.sr-blog-post .author-section .d-flex {
  align-items: center;
  gap: 0.875rem;
}

.sr-blog-post .author-section .avatar img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover;
  flex-shrink: 0;
}

.sr-blog-post .author-section .meta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.sr-blog-post .author-section .author-link,
.sr-blog-post .author-section .meta .author-link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-gray-900) !important;
  text-decoration: none !important;
}

.sr-blog-post .author-section .author-link:hover {
  color: var(--color-primary) !important;
}

.sr-blog-post .author-section .author-social-links {
  display: flex;
  gap: 8px;
  margin-top: 0.25rem;
}

.sr-blog-post .author-section .author-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-gray-600);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sr-blog-post .author-section .author-social-links a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.sr-blog-post .author.author-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.sr-blog-post .author.author-inline .avatar img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  object-fit: cover;
}

.sr-blog-post .author.author-inline .author-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-gray-900) !important;
  text-decoration: none !important;
}

.sr-blog-post .author.author-inline .author-link:hover {
  color: var(--color-primary) !important;
}

.sr-blog-post .author.author-inline > div > div > div,
.sr-blog-post .author.author-inline > div > div {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-gray-500);
}


/* ─── RELATED POSTS (legacy) ───────────────────────────────── */

.related-posts-section,
.sr-blog-post .related-posts-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.related-posts-section .heading,
.related-posts-section h3,
.related-posts-section h4 {
  font-family: var(--font-ui) !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: var(--color-gray-500) !important;
  margin-bottom: 1.5rem !important;
}

.related-posts-container.row {
  row-gap: 1.25rem;
}

.related-post-link.sr-border {
  display: block;
  border: 1px solid var(--color-border) !important;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none !important;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
  height: 100%;
}

.related-post-link.sr-border:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.related-post-meta .featured-image img,
.related-post-meta .featured-image.mb-3 img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin: 0 !important;
}

.related-post-meta .meta {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.75rem 1rem 0.375rem;
  flex-wrap: wrap;
}

.related-post-meta .meta .tag.sr-border {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-primary);
  background: var(--color-primary-50);
  border: none !important;
  border-radius: 2px;
  padding: 2px 8px;
  white-space: nowrap;
}

.related-post-meta .meta small.date,
.related-post-meta .meta .date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

.related-post-link h5 {
  font-family: var(--font-ui) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  color: var(--color-gray-900) !important;
  padding: 0.375rem 1rem 0.25rem !important;
  margin: 0 !important;
  transition: color 0.15s;
}

.related-post-link:hover h5 {
  color: var(--color-primary) !important;
}

.related-post-link > p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  padding: 0 1rem 1rem !important;
  margin: 0 !important;
}


/* ─── COMMENTI (legacy) ────────────────────────────────────── */

.blog-comments {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.blog-comments .heading,
.blog-comments h3 {
  font-family: var(--font-ui) !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: var(--color-gray-500) !important;
  margin-bottom: 1.5rem !important;
}


/* ═══════════════════════════════════════════════════════════
   BLOG LISTING — PAGINA LISTA ARTICOLI
   ═══════════════════════════════════════════════════════════ */

/* ─── GRIGLIA ──────────────────────────────────────────────── */

.articles-list {
  width: 100%;
}

.articles-list .row.latest-posts {
  row-gap: 1.5rem;
}


/* ─── CARD ARTICOLO ────────────────────────────────────────── */

.article-panel {
  border: 1px solid var(--color-border) !important;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.article-panel:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.article-panel > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.article-panel .article-img     { order: 0; }
.article-panel .article-meta    { order: 1; }
.article-panel .article-content { order: 2; }

.article-panel .article-img {
  overflow: hidden;
  flex-shrink: 0;
}

.article-panel .article-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.article-panel:hover .article-img img {
  transform: scale(1.04);
}

.article-panel .article-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem 0;
}

.article-panel .article-meta .date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-gray-500);
}

.article-panel .article-meta .bull {
  color: var(--color-gray-300);
  font-size: 0.75rem;
}

.article-panel .article-meta .reading-minutes {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

.article-panel .article-content {
  padding: 0.625rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.article-panel .article-content h6.heading {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-gray-900);
  margin: 0;
  max-height: 4.35rem;
  overflow: hidden;
}

.article-panel:hover .article-content h6.heading {
  color: var(--color-primary);
}

.article-panel .article-content .data.small {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-gray-600);
  margin-top: auto;
}


/* ─── PAGINAZIONE ──────────────────────────────────────────── */

.blog-pagination,
.sr-blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span,
.sr-blog-pagination a,
.sr-blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-700);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.blog-pagination a:hover,
.sr-blog-pagination a:hover {
  background: var(--color-gray-50);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.blog-pagination .active,
.blog-pagination a.active,
.sr-blog-pagination .active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}


/* ─── SEZIONI LAYOUT ───────────────────────────────────────── */

.blog-middle {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.blog-top {
  padding-top: 0;
  padding-bottom: 0;
}

.blog-bottom {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

body.blog-listing .blog-middle {
  background-color: #fff;
}

.body_dnd_area {
  width: 100%;
}


/* ─── SIDEBAR LISTING ──────────────────────────────────────── */

.right-sidebar { padding-left: 2rem; }
.left-sidebar  { padding-right: 2rem; }

.sidebar-sticky {
  position: sticky;
  top: var(--sticky-offset, 80px);
}

.right-sidebar .sidebar-widget,
.left-sidebar  .sidebar-widget {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  background: #fff;
}

.right-sidebar .sidebar-widget .heading,
.left-sidebar  .sidebar-widget .heading {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.right-sidebar .sidebar-widget:last-child,
.left-sidebar  .sidebar-widget:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .right-sidebar,
  .left-sidebar {
    padding-left: 0;
    padding-right: 0;
    margin-top: 2rem;
  }
  .sidebar-sticky {
    position: static;
  }
}


/* ─── PAGINE SPECIALI: AUTORE / TAG ────────────────────────── */

.blog-author-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.blog-author-header .avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author-header .author-name {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.blog-author-header .author-bio {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.6;
}

.blog-tag-header {
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.blog-tag-header h1,
.blog-tag-header .heading {
  font-family: var(--font-ui);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-900);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-tag-header .tag-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary-50);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 2px;
}


/* ─── SR LAYOUT CLASSI ─────────────────────────────────────── */

.bg-col {
  padding: 2rem 1.5rem;
}

@media (max-width: 767px) {
  .bg-col {
    padding: 1.5rem 1rem;
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — ARTICLE PAGE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1400px) {
  .fh-article-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 1100px) {
  .fh-article-main { width: 100%; }
  .fh-article-aside { display: none; }
  .fh-article-grid { display: block; }
  .fh-hero-image img { height: auto; aspect-ratio: 16/9; }
}

@media (max-width: 767px) {
  .fh-article-container { padding-top: 2rem; padding-bottom: 2rem; }
  .fh-hero-image img { border-radius: 0; }
  .fh-article-title { font-size: 1.5rem; }
  .fh-byline { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .fh-share { flex-wrap: wrap; }
}


/* ═══════════════════════════════════════════════════════════
   BLOG LISTING PAGE
   ═══════════════════════════════════════════════════════════ */

/* ─── Contenitore ──────────────────────────────────────────── */

.fh-listing-page {
  background: #fff;
}

.fh-listing-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 4.5rem;
}

/* ─── Titolo sezione ───────────────────────────────────────── */

.fh-listing-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 2rem;        /* 32px */
  font-weight: 600;
  line-height: 1;
  color: #000;
  margin: 0 0 2.5rem;
}

/* ─── Griglia card ─────────────────────────────────────────── */

.fh-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
}

/* ─── Singola card ─────────────────────────────────────────── */

.fh-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 32px;
  gap: 24px;
}

.fh-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

/* Immagine card */
.fh-card-img {
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  margin: -32px -32px 0;  /* fuoriesce dal padding per toccare i bordi */
}

.fh-card-img img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.fh-card:hover .fh-card-img img {
  transform: scale(1.04);
}

.fh-card-img--placeholder {
  height: 248px;
  background: var(--color-gray-50);
}

/* Body card */
.fh-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Meta: autore • data • commenti */
.fh-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.fh-card-author,
.fh-card-date,
.fh-card-comments {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.875rem;  /* 14px */
  font-weight: 400;
  line-height: 1.43;
  color: var(--color-gray-700);
}

.fh-card-author svg,
.fh-card-date svg,
.fh-card-comments svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Titolo card */
.fh-card-title {
  font-family: 'Public Sans', sans-serif;
  font-size: 1.125rem;   /* 18px */
  font-weight: 500;
  line-height: 1.33;     /* 24/18 */
  color: var(--color-gray-900);
  margin: 0;
  transition: color 0.15s;
}

.fh-card:hover .fh-card-title {
  color: var(--color-primary);
}

/* Excerpt */
.fh-card-excerpt {
  font-family: 'Public Sans', sans-serif;
  font-size: 1rem;       /* 16px */
  font-weight: 400;
  line-height: 1.5;      /* 24px */
  color: var(--color-gray-500);
  margin: 0;
}

/* ─── Paginazione ──────────────────────────────────────────── */

.fh-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

/* Frecce prev / next */
.fh-pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-primary);
  border-radius: 100px;
  color: var(--color-primary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.fh-pagination-arrow:hover {
  background: var(--color-primary);
  color: #fff;
}

.fh-pagination-arrow.disabled {
  border-color: var(--color-border);
  color: var(--color-gray-300);
  cursor: default;
  pointer-events: none;
}

/* Numeri pagina */
.fh-pagination-pages {
  display: flex;
  gap: 8px;
  align-items: center;
}

.fh-pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-gray-900);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.fh-pagination-item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.fh-pagination-item.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}

/* ─── Responsive listing ───────────────────────────────────── */

@media (max-width: 1100px) {
  .fh-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .fh-listing-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .fh-listing-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .fh-cards-grid {
    grid-template-columns: 1fr;
  }
  .fh-pagination-pages {
    gap: 4px;
  }
  .fh-pagination-item,
  .fh-pagination-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.fh-footer {
  background-color: #283148;
  color: #fff;
}

.fh-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* ── Colonna 1: brand ──────────────────────────────────── */

.fh-footer-brand {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fh-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fh-footer-logo-text {
  font-family: 'Urbanist', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.fh-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fh-footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fh-footer-contact-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #77878F;
  margin: 0;
}

.fh-footer-contact-link {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.fh-footer-contact-link:hover {
  color: #FA8232;
}

.fh-footer-address {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ADB7BC;
  line-height: 1.5;
  margin: 0;
}

.fh-footer-email {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.fh-footer-email:hover {
  color: #FA8232;
}

/* ── Colonne 2-5: link ─────────────────────────────────── */

.fh-footer-col {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fh-footer-col-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
}

.fh-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.fh-footer-links li a {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #C7C7C7;
  text-decoration: none;
  display: block;
  padding: 6px 0;
  line-height: 1.43;
  transition: color 0.15s;
}

.fh-footer-links li a:hover {
  color: #FA8232;
}

.fh-footer-all-cats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FA8232;
  text-decoration: none;
  padding: 6px 0;
  transition: opacity 0.15s;
}

.fh-footer-all-cats:hover {
  opacity: 0.8;
}

.fh-footer-all-cats svg {
  flex-shrink: 0;
}

/* ── Copyright bar ─────────────────────────────────────── */

.fh-footer-copyright {
  background: #fff;
  border-top: 1px solid #303639;
  padding: 1.5rem;
}

.fh-footer-copyright p {
  max-width: 1320px;
  margin: 0 auto;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  line-height: 1.43;
}

/* ── Footer responsive ─────────────────────────────────── */

@media (max-width: 1100px) {
  .fh-footer-inner {
    gap: 2rem;
  }
  .fh-footer-col {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .fh-footer-inner {
    flex-direction: column;
    padding: 2.5rem 1.25rem;
    gap: 2rem;
  }
  .fh-footer-brand {
    flex: none;
    width: 100%;
  }
  .fh-footer-col {
    flex: none;
    width: 100%;
  }
  .fh-footer-copyright {
    padding: 1rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   BLOG LISTING PAGE
   ═══════════════════════════════════════════════════════════ */

/* ─── Listing page layout ──────────────────────────────────── */

.fh-listing-page {
  background: #fff;
}

.fh-listing-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 6.625rem 1.5rem 4.5rem;
}

.fh-listing-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  margin-bottom: 2.5rem;
}

/* ─── Cards grid ───────────────────────────────────────────── */

.fh-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .fh-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fh-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Card ─────────────────────────────────────────────────── */

.fh-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border: 1px solid #E4E7E9;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.fh-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.fh-card-img {
  margin: -32px -32px 0;
  overflow: hidden;
  height: 248px;
}

.fh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.fh-card:hover .fh-card-img img {
  transform: scale(1.04);
}

.fh-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ─── Card meta ────────────────────────────────────────────── */

.fh-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
  margin-bottom: 4px;
}

.fh-card-author,
.fh-card-date,
.fh-card-comments {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #475156;
  white-space: nowrap;
}

.fh-card-meta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #475156;
}

/* ─── Card title and excerpt ───────────────────────────────── */

.fh-card-title {
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #191C1F;
  margin: 0;
}

.fh-card:hover .fh-card-title {
  color: #FA8232;
  transition: color 0.15s;
}

.fh-card-excerpt {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #77878F;
  margin: 0;
}

/* ─── Pagination ───────────────────────────────────────────── */

.fh-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 3rem;
  padding-top: 2.5rem;
}

.fh-pagination-pages {
  display: flex;
  gap: 8px;
}

.fh-pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #191C1F;
  text-decoration: none;
  background: #fff;
  border: 1px solid #E4E7E9;
  transition: all 0.15s;
}

.fh-pagination-item.active {
  background: #FA8232;
  color: #fff;
  font-weight: 600;
  border-color: #FA8232;
}

.fh-pagination-item:not(.active):hover {
  border-color: #FA8232;
  color: #FA8232;
}

.fh-pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1.5px solid #FA8232;
  color: #FA8232;
  text-decoration: none;
  transition: all 0.15s;
  background: transparent;
}

.fh-pagination-arrow:hover {
  background: #FA8232;
  color: #fff;
}

.fh-pagination-arrow.disabled,
span.fh-pagination-arrow {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.fh-pagination-arrow svg {
  width: 20px;
  height: 20px;
}

/* ─── Responsive ───────────────────────────────────────────── */

@media (max-width: 767px) {
  .fh-listing-container { padding-top: 2.5rem; padding-bottom: 2rem; }
  .fh-listing-title { font-size: 1.5rem; }
  .fh-card { padding: 20px; }
  .fh-card-img { margin: -20px -20px 0; }
}


/* ═══════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════════════════ */

/* ─── Wrapper ──────────────────────────────────────────────── */

.fh-lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* ─── Toggle button ────────────────────────────────────────── */

.fh-lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
  transition: opacity 0.15s;
}

.fh-lang-switch-btn:hover {
  opacity: 0.75;
}

.fh-lang-switch-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.fh-lang-switch-btn.is-open svg {
  transform: rotate(180deg);
}

/* ─── Dropdown list ────────────────────────────────────────── */

.fh-lang-switch-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid #E4E7E9;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  min-width: 148px;
  z-index: 200;
}

.fh-lang-switch-dropdown[hidden] {
  display: none;
}

/* ─── Individual items ─────────────────────────────────────── */

.fh-lang-switch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #191C1F;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}

.fh-lang-switch-item:hover {
  background: #FFF3EB;
  color: #FA8232;
}

.fh-lang-switch-item.is-active {
  color: #FA8232;
  font-weight: 600;
}

.fh-lang-switch-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  border-radius: 3px;
  background: #F2F4F5;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #4751