/* ==========================================================================
   Alternative Mobile Footer Component Styling (2-Column Grid)
   ========================================================================== */

/* Hide mobile alt footer on desktop by default */
.site-footer-mobile-alt {
  display: none;
}

/* Breakpoint for mobile viewport */
@media (max-width: 768px) {
  
  /* Hide the desktop footer layout completely */
  .site-footer {
    display: none !important;
  }

  .site-footer-mobile-alt {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 48px 24px 32px;
    border-top: 1px solid #eef1f6;
  }

  .footer-mob-alt__inner {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* Left-aligned Brand Section */
  .footer-mob-alt-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    width: 100%;
  }

  .footer-mob-alt-logo img {
    height: 36px;
    width: auto;
    display: block;
  }

  .footer-mob-alt-description {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0;
    max-width: 320px;
  }

  .footer-mob-alt-bacen {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #9b876b; /* Gold/Bronze accent matching Bacen badge */
    background-color: #fcf9f2;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
  }

  /* Vertical Column Stack for Links */
  .footer-mob-alt-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
  }

  .footer-mob-alt-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
  }

  /* Column Titles */
  .footer-mob-alt-col__title {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c1e;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: left;
  }

  /* Links styling */
  .footer-mob-alt-col__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-mob-alt-col__links a {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #555557;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    width: fit-content;
  }

  .footer-mob-alt-col__links a:active {
    color: #9b876b;
  }

  /* Bottom copyright text and divider (Left-aligned) */
  .footer-mob-alt-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .footer-mob-alt-divider {
    border: none;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 0;
    width: 100%;
  }

  .footer-mob-alt-copy {
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    line-height: 1.45;
    color: #8e8e93;
    margin: 0;
    text-align: left;
  }

  .footer-mob-alt-col__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .footer-mob-alt-info-text {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #555557;
    margin: 0;
  }

  .footer-mob-alt-info-text a {
    color: #1c2545;
    text-decoration: none;
    font-weight: 600;
  }

  .footer-mob-alt-info-text a:active {
    color: #9b876b;
  }

  .footer-mob-alt-bottom__links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    margin-top: 4px;
    gap: 16px;
  }

  .footer-mob-alt-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-mob-alt-links-col--left {
    align-items: flex-start;
    text-align: left;
  }

  .footer-mob-alt-links-col--right {
    align-items: flex-end;
    text-align: right;
  }

  .footer-mob-alt-links-col a {
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    color: #8e8e93;
    text-decoration: none;
    line-height: 1.4;
  }

  .footer-mob-alt-links-col a:active {
    color: #1c2545;
  }
}
