File size: 1,686 Bytes
fcf8749 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | .footer {
border-top: 1px solid var(--border);
background: var(--bg-card);
padding-top: 64px;
}
.footer__inner {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 48px;
padding-bottom: 48px;
align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo {
display: flex;
align-items: center;
gap: 8px;
font-size: 17px;
font-weight: 700;
color: var(--text);
}
.footer__brand p { font-size: 14px; color: var(--text-dim); line-height: 1.5; max-width: 260px; }
.footer__status {
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
color: var(--green);
}
.footer__status-dot {
width: 6px; height: 6px;
background: var(--green);
border-radius: 50%;
animation: pulse-glow 2s ease infinite;
}
.footer__links {
display: contents;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.07em;
text-transform: uppercase;
color: var(--text-dim);
margin-bottom: 4px;
}
.footer__col a {
font-size: 14px;
color: var(--text-muted);
transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
border-top: 1px solid var(--border);
padding: 16px 0;
}
.footer__bottom .container {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
color: var(--text-dim);
}
@media (max-width: 768px) {
.footer__inner { grid-template-columns: 1fr 1fr; }
.footer__brand { grid-column: 1 / -1; }
.footer__links { display: contents; }
.footer__bottom .container { flex-direction: column; gap: 4px; text-align: center; }
}
|