2026-02-02 20:34:35 +00:00
|
|
|
.footer {
|
2026-08-06 15:38:31 +01:00
|
|
|
background: var(--surface-sunken);
|
|
|
|
|
color: var(--on-sunken);
|
2026-02-02 20:34:35 +00:00
|
|
|
margin-top: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
2026-03-25 20:28:03 +00:00
|
|
|
max-width: 1400px;
|
2026-02-02 20:34:35 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 3rem 1.5rem 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
display: grid;
|
2026-04-14 21:02:18 +01:00
|
|
|
grid-template-columns: 1.5fr 1fr 1fr;
|
|
|
|
|
gap: 2rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
margin-bottom: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
font-weight: 700;
|
2026-08-06 15:38:31 +01:00
|
|
|
color: var(--on-sunken);
|
2026-08-06 12:13:04 +01:00
|
|
|
font-family: var(--font-display);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.description {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
line-height: 1.6;
|
2026-08-06 15:38:31 +01:00
|
|
|
color: var(--on-sunken-muted);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sectionTitle {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 600;
|
2026-08-06 15:38:31 +01:00
|
|
|
color: var(--on-sunken-muted);
|
2026-02-02 20:34:35 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.links {
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link {
|
|
|
|
|
font-size: 0.875rem;
|
2026-08-06 15:38:31 +01:00
|
|
|
color: var(--on-sunken-muted);
|
2026-02-02 20:34:35 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
transition: color 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link:hover {
|
2026-08-06 15:38:31 +01:00
|
|
|
color: var(--on-sunken);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.linkDisabled {
|
|
|
|
|
font-size: 0.875rem;
|
2026-08-06 15:38:31 +01:00
|
|
|
color: var(--on-sunken-faint);
|
2026-02-02 20:34:35 +00:00
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
|
padding-top: 2rem;
|
2026-08-06 15:38:31 +01:00
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
2026-02-02 20:34:35 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.copyright,
|
|
|
|
|
.disclaimer {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 0.875rem;
|
2026-08-06 15:38:31 +01:00
|
|
|
color: var(--on-sunken-muted);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.disclaimer .link {
|
2026-08-06 15:38:31 +01:00
|
|
|
color: var(--on-sunken-link);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.disclaimer .link:hover {
|
2026-08-06 15:38:31 +01:00
|
|
|
color: var(--on-sunken);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.container {
|
|
|
|
|
padding: 2rem 1rem 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
gap: 2rem;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|