/* =========================================================================
   ONE BOOST — footer.css
   ========================================================================= */

.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--bg-soft); }
.footer-logo { width: 150px; height: auto; display: block; margin-bottom: 2px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.footer .brand-col p { color: var(--text-2); font-size: 14.5px; margin-top: 16px; max-width: 30ch; }
.footer h5 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--text-2); font-size: 14.5px; transition: color .18s; }
.footer ul a:hover { color: var(--red-ink); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-3); font-size: 13.5px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text-2); transition: all .18s; }
/* social channels are shown only when the owner sets a link from the panel;
   [hidden] alone is overridden by the display:grid above, so force it. */
.footer-social a[hidden] { display: none !important; }
.footer-social a:hover { color: #fff; border-color: var(--red); background: var(--surface-2); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
