/* ==========================================================================
   Footer Layout: Builder (WPBakery)
   JIT loaded only when the builder-footer layout is active.
   Base width/padding: `.footer-container` in style.css.
   Scope custom rules to `.site-footer.layout-builder-footer` where possible.
   @package Celeste
   @since   2.9.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BUILDER FOOTER — optional layout overrides
   Background token from ACF `bf_bg_footer` via inline --bf-bg-footer on
   .site-footer.layout-builder-footer (see layout-builder-footer.php).
   -------------------------------------------------------------------------- */

   .site-footer.layout-builder-footer {
      background-color: var(--bf-bg-footer, #1a1a1a);
      padding: 3rem 0 1rem;
   }

   .footer-credit a {
      margin: 20px 0 0 0;
      transform: scale(0.8);
      color: var(--footer-body-color, #f8f7f2);
      font-weight: var(--footer-body-font-weight, 400);
      line-height: var(--footer-body-line-height, 1.6);
      text-decoration: none;
      text-transform: var(--footer-body-text-transform, none);
      font-size: var(--footer-body-size-mobile, 14px);
      transition: color 0.2s ease;
      font-family: var(--footer-body-font-family, var(--font-body));
      text-align: center;
      opacity: 1;
      transition: opacity 0.2s ease;
   }
   .footer-credit a:hover {
      opacity: 0.6;
   }