/* =========================================
   DESKTOP FOOTER STYLES (≥ 768px)
   ========================================= */
@media (min-width: 768px) {

  .site-footer {
    background: linear-gradient(135deg, #1273de 0%, #20a4ff 100%);
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.15);
    padding: 4rem 2rem 1rem;
  }

  .footer-container {
    display: grid;
     grid-template-columns: 0.5fr 0.5fr 0.5fr; /* left, center, right */
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* LEFT COLUMN: logo, title, tagline, socials */

  .footer-logo {
    display: flex;
    flex-direction: column;  /* logo on top, then WebStroy */
    align-items: center;
    gap: 0.25rem;
  }

  .footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
  }

  .footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
  }

  .footer-tagline {
    margin: 0.5rem 0 1rem;
    line-height: 1.5;
    max-width: 320px;
    color: #dce3f0;
  }

  .footer-socials {
    margin-top: 0;
  }

  .footer-socials a {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0.4rem;
    transition: color 0.2s ease;
  }

  .footer-socials a:hover {
    color: #ffd43b;
  }

  /* CENTER + RIGHT COLUMNS: Site Map / Legal */

  .footer-links h4 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links a {
    color: #dce3f0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: #ffd43b;
  }

  /* Bottom line */

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 1rem;
    text-align: center;
    color: #dce3f0;
    font-size: 0.9rem;
  }
}
