/* =========================================
   MOBILE FOOTER STYLES (≤ 767px)
   ========================================= */
@media (max-width: 767px) {

  .site-footer {
    background: linear-gradient(135deg, #1273de 0%, #20a4ff 100%);
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.15);
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr;  /* stack the three blocks */
    gap: 1rem;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .footer-logo-img {
    height: 58px;
    width: auto;
    display: block;
  }

  .footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
  }

  .footer-tagline {
    margin: 0.5rem 0 1rem;
    line-height: 1.5;
    color: #dce3f0;
  }

  .footer-socials {
    margin-top: 0;
  }

  .footer-socials a {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 0.45rem;
    transition: color 0.2s ease;
  }

  .footer-socials a:hover {
    color: #ffd43b;
  }

  .footer-links h4 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links a {
    color: #dce3f0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: #ffd43b;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #dce3f0;
    font-size: 0.8rem;
  }
}
