.wp-block-site-title a:hover {
    color: inherit !important;
    text-decoration: none !important;
  }

  .wp-block-navigation a.wp-block-navigation-item__content {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.2s;
  }

  .wp-block-navigation a.wp-block-navigation-item__content:hover,
  .wp-block-navigation .current-menu-item > a,
  body.home .menu-home a {
    border-bottom-color: rgb(163, 78, 0);
  }

 @media (max-width: 600px) {
    footer.wp-block-template-part .wp-block-group {
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      text-align: center !important;
      gap: 0.5rem !important;
      padding: 1.5rem 1rem !important;
    }
  }

.wp-block-jetpack-contact-form .wp-block-button .wp-block-button__link{
		min-height: 0;
		padding-top:1em;
		padding-bottom:1em;
}		
		
  .banner-tree {
    /* Dimensions et background */
    min-height: clamp(280px, 38vw, 540px) !important;
    background-position: center 60% !important;
    background-repeat: no-repeat !important;

    /* Effet visuel sur l'image */
    filter: saturate(1.15) contrast(1.05);

    /* Fondus doux : haut/bas + court fondu gauche/droit */
    -webkit-mask-image:
      linear-gradient(to bottom, transparent, black 20%, black 80%, transparent),
      linear-gradient(to right,  transparent 0%, black 6%, black 90%, transparent) !important;
    mask-image:
      linear-gradient(to bottom, transparent, black 20%, black 80%, transparent),
      linear-gradient(to right,  transparent 0%, black 6%, black 90%, transparent) !important;
    -webkit-mask-composite: source-in;
    mask-composite: intersect;

    /* Layout : H1 + signature empilés et centrés */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    overflow: hidden;
  }

  .banner-tree::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      ellipse 50% 50% at center 60%,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.50) 40%,
      rgba(0, 0, 0, 0)    78%
    );
    pointer-events: none;
    z-index: 1;
  }

  @media (max-width: 600px) {
    .banner-tree::before {
      background: radial-gradient(
        ellipse 90% 70% at center 55%,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0)    85%
      );
    }
  }

  .banner-title {
    position: relative;
    z-index: 2;
    margin: 0 !important;
    text-align: center !important;
    color: #fff;
    max-width: min(90%, 22ch);
    padding: 0 1rem;

    font-size: clamp(3.25rem, 9.5vw, 6.75rem) !important;
    letter-spacing: 0 !important;
    line-height: 1.05;
    text-transform: none !important;
    text-wrap: balance;

    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  }

  .banner-author {
    position: relative;
    z-index: 2;
    margin: 0 !important;
    padding: 0 1rem !important;
    max-width: min(95%, 40ch);
    text-align: center !important;

    font-size: clamp(0.78rem, 1.2vw, 1.1rem) !important;
    font-weight: 400 !important;
    letter-spacing: clamp(0.18em, 0.5vw, 0.3em) !important;
    text-transform: uppercase !important;
    color: #D4B060 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6) !important;
  }

 .banner-author::before {
    content: "";
    display: block;
    width: clamp(32px, 5vw, 56px);
    height: 1px;
    background: #D4B060;
		margin: 0 auto clamp(0.3rem, 0.6vw, 0.6rem);
  }

/* === Effets pour les grilles d'articles marquées .themes-grid === */
 @keyframes adr-fadeUp {
    from {
      opacity: 0;
      transform: translateY(60px) scale(.92);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .themes-grid .wp-block-post {
    opacity: 0;
    animation: adr-fadeUp 1.1s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc((sibling-index() - 1) * .2s);
  }

  .themes-grid .wp-block-post-featured-image {
    overflow: hidden;
    transition: box-shadow .5s ease;
  }
  .themes-grid .wp-block-post-featured-image img {
    display: block;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
  }
  .themes-grid .wp-block-post:hover .wp-block-post-featured-image {
    box-shadow: 0 14px 32px -16px rgba(0,0,0,.25);
  }
  .themes-grid .wp-block-post:hover .wp-block-post-featured-image img {
    transform: scale(1.06);
  }

  @media (prefers-reduced-motion: reduce) {
    .themes-grid .wp-block-post {
      opacity: 1;
      animation: none;
    }
    .themes-grid .wp-block-post-featured-image,
    .themes-grid .wp-block-post-featured-image img {
      transition: none;
    }
    .themes-grid .wp-block-post:hover .wp-block-post-featured-image img {
      transform: none;
    }
  }