2026-01-28 01:03:42 +01:00
|
|
|
|
|
|
|
|
|
2026-01-27 16:55:02 +01:00
|
|
|
main .page__header {
|
2026-01-27 23:52:25 +01:00
|
|
|
margin-top: calc(var(--spacing) * 3);
|
2026-01-27 16:55:02 +01:00
|
|
|
margin-bottom: calc(var(--spacing) * 2);
|
2026-02-24 17:05:22 +01:00
|
|
|
|
2026-01-27 16:55:02 +01:00
|
|
|
|
2026-01-28 00:05:06 +01:00
|
|
|
@media #{$small} {
|
2026-02-23 17:34:16 +01:00
|
|
|
margin-top: calc(var(--spacing) * 1);
|
2026-01-27 23:52:25 +01:00
|
|
|
|
|
|
|
|
}
|
2026-01-27 16:55:02 +01:00
|
|
|
|
2026-02-24 18:00:22 +01:00
|
|
|
.page__type{
|
|
|
|
|
margin-bottom: calc(var(--spacing) * 1);
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-27 16:55:02 +01:00
|
|
|
.page__title {
|
|
|
|
|
max-width: var(--max-w-content);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-weight: normal;
|
2026-02-06 15:10:27 +01:00
|
|
|
font-size: var(--fs-medium);
|
|
|
|
|
font-weight: 500;
|
2026-02-07 15:59:34 +01:00
|
|
|
line-height: var(--leading-title);
|
2026-02-24 18:00:22 +01:00
|
|
|
margin-bottom: calc(var(--spacing) * 2);
|
2026-02-23 17:34:16 +01:00
|
|
|
|
|
|
|
|
@media #{$small-up} {
|
2026-01-27 16:55:02 +01:00
|
|
|
text-wrap: balance;
|
2026-02-23 17:34:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media #{$small} {
|
|
|
|
|
margin-bottom: calc(var(--spacing) * 1);
|
|
|
|
|
}
|
2026-02-06 15:10:27 +01:00
|
|
|
|
2026-01-27 16:55:02 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-25 19:05:22 +01:00
|
|
|
.page__cover{
|
|
|
|
|
margin-top: calc(var(--spacing) * 2);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-24 17:05:22 +01:00
|
|
|
.date{
|
|
|
|
|
display: block;
|
2026-02-24 18:00:22 +01:00
|
|
|
margin-top: calc(var(--spacing) * -1.5);
|
|
|
|
|
margin-bottom: calc(var(--spacing) * 2);
|
2026-02-24 17:05:22 +01:00
|
|
|
color: var(--color-txt-light);
|
2026-02-25 14:14:37 +01:00
|
|
|
@media #{$small} {
|
|
|
|
|
margin-bottom: calc(var(--spacing) * 1);
|
|
|
|
|
margin-top: calc(var(--spacing) * -0.75);
|
|
|
|
|
}
|
2026-02-24 17:05:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page__description {
|
2026-02-18 16:40:20 +01:00
|
|
|
font-size: var(--fs-text);
|
2026-02-23 17:34:16 +01:00
|
|
|
margin-bottom: calc(var(--spacing) * 3);
|
2026-02-25 14:14:37 +01:00
|
|
|
@media #{$small} {
|
|
|
|
|
margin-bottom: calc(var(--spacing) * 1.5);
|
|
|
|
|
}
|
2026-02-24 17:42:51 +01:00
|
|
|
max-width: var(--max-w-content);
|
2026-01-27 16:55:02 +01:00
|
|
|
}
|
2026-02-25 18:22:13 +01:00
|
|
|
|
2026-02-26 17:54:47 +01:00
|
|
|
ul.list-nav{
|
2026-02-25 18:22:13 +01:00
|
|
|
display: flex;
|
2026-02-26 17:54:47 +01:00
|
|
|
// justify-content: space-between;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
// gap: 3ch;
|
2026-02-25 18:22:13 +01:00
|
|
|
list-style: none;
|
|
|
|
|
margin-top: calc(var(--spacing) * -1.5);
|
2026-02-26 17:54:47 +01:00
|
|
|
@media #{$small} {
|
|
|
|
|
margin-top: calc(var(--spacing) * -0.5);
|
|
|
|
|
}
|
2026-02-25 18:22:13 +01:00
|
|
|
color: var(--color-txt-light);
|
|
|
|
|
|
2026-02-26 17:54:47 +01:00
|
|
|
li{
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
margin-right: 2ch;
|
|
|
|
|
&:last-of-type{
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
@media #{$small} {
|
|
|
|
|
width: 12ch;
|
|
|
|
|
}
|
|
|
|
|
margin-bottom: calc(var(--spacing) * 0.25);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-25 18:22:13 +01:00
|
|
|
a{
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: lowercase;
|
|
|
|
|
&::after{
|
|
|
|
|
content: " ↓";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
li:hover{
|
|
|
|
|
color: var(--color-txt)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2026-02-25 19:05:22 +01:00
|
|
|
|
|
|
|
|
|
2026-02-24 17:42:51 +01:00
|
|
|
|
2026-01-27 16:55:02 +01:00
|
|
|
}
|