/* GENERATED FILE — DO NOT EDIT.
   Source: shared/design-system/footer.css
   Regenerate: node shared/design-system/sync.mjs
   Edits here are overwritten and will silently desync the other targets. */

/* ============================================================
   Focus Media Services — FOOTER
   ------------------------------------------------------------
   Both footers: the base .site-footer and the --fms brand/wayfinding
   footer used by the marketing site and /thoughts.

   Canonical source — edit here, then run:
       node shared/design-system/sync.mjs
   Never edit the generated copies in each target's ds folder.
   ============================================================ */

/* ---------- Footer ---------- */
.site-footer {
    padding: 30px;
    background: var(--surface-card);
    font-size: .875rem;
    line-height: 2;
    text-align: center;
}
@media (min-width: 960px) {
    .site-footer { text-align: left; }
}
/* The .site-footer__tagline / __address / __sep / __phone / __copyright
   elements went with the CMS's old centred footer -- every target now renders
   the --fms footer below, so those rules are gone. */

/* ============================================================
   SITE FOOTER — brand block + wayfinding
   Scoped with a --fms modifier so the base .site-footer rule above
   stays untouched. Ink rather than --primary: index.html closes on a
   bg-primary CTA band, and two navies would merge into one slab.
   ============================================================ */
.site-footer--fms {
    padding: 0;
    background: #10222f;
    color: #cfe0ec;
    text-align: left;
    line-height: 1.7;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 36px;
}
/* brand block + three link sections (Learn / Work With Us / More) */
@media (min-width: 640px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid .footer-brand { grid-column: 1 / -1; }
}
@media (min-width: 960px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
        gap: 40px;
    }
    .footer-grid .footer-brand { grid-column: auto; }
}
.footer-brand__logo { display: block; width: 240px; max-width: 100%; height: auto; }
.footer-brand__tagline {
    margin: 16px 0 14px;
    max-width: 26em;
    font-size: 14.5px;
    color: var(--emphasis);
}
.footer-brand__contact { margin: 0; font-size: 13.5px; color: #9db8cf; }
.footer-brand__contact a { color: #e3edf5; text-decoration: none; }
.footer-brand__contact a:hover { color: #fff; text-decoration: underline; }
.footer-col__title {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #8fb2cd;
}
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
    color: #e3edf5;
    font-size: 14.5px;
    text-decoration: none;
    transition: color .2s ease-in-out;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col a[aria-current="page"] { color: var(--emphasis); font-weight: 600; }
/* The "leaves the site" arrow, from Lucide (arrow-up-right, ISC).
   A CSS mask rather than 61 inline SVGs across a dozen pages: the shape lives
   in one place, and painting it with currentColor means it follows the link
   colour through every theme and hover state, which a text glyph did for free
   and a hard-coded fill would not. */
.footer-ext {
    display: inline-block;
    width: .78em;
    height: .78em;
    margin-left: .28em;
    vertical-align: -.02em;
    opacity: .7;
    background-color: currentColor;
    -webkit-mask: var(--icon-arrow-up-right) center / contain no-repeat;
    mask: var(--icon-arrow-up-right) center / contain no-repeat;
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px 24px;
    padding-top: 20px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 12.5px;
    color: #8fb2cd;
}
.footer-bottom p { margin: 0; }

/* Legal links, right-hand end of the copyright row. .footer-bottom is already
   a space-between flex row, so this sits opposite the copyright line and wraps
   under it on a phone. Quieter than the column links above -- these are the
   links you go looking for, not ones we want to pull the eye. */
.footer-legal a { color: #9db8cf; text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }
.footer-legal span { padding: 0 6px; color: #5d7f9b; }
