2026-02-14 17:03:03 +01:00
|
|
|
|
2026-02-18 18:17:48 +01:00
|
|
|
#investigation__content {
|
2026-02-14 17:03:03 +01:00
|
|
|
|
2026-02-18 18:17:48 +01:00
|
|
|
padding-top: calc(var(--spacing) * 4);
|
2026-02-23 17:34:16 +01:00
|
|
|
|
|
|
|
|
|
2026-02-14 17:03:03 +01:00
|
|
|
|
2026-02-19 14:35:53 +01:00
|
|
|
.section-title-only{
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2026-02-14 17:03:03 +01:00
|
|
|
|
|
|
|
|
|
2026-02-19 15:15:47 +01:00
|
|
|
|
|
|
|
|
|
2026-02-19 14:35:53 +01:00
|
|
|
.section-txt{
|
|
|
|
|
max-width: var(--max-w-content);
|
|
|
|
|
margin-inline: auto;
|
2026-02-19 15:15:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-02-14 17:03:03 +01:00
|
|
|
|
2026-02-19 15:15:47 +01:00
|
|
|
.subsection-txt .insert{
|
|
|
|
|
margin-top: calc(var(--spacing)*2);
|
|
|
|
|
margin-bottom: calc(var(--spacing)*2);
|
|
|
|
|
padding: calc(var(--padding-inner)*2) calc(var(--padding-inner)*1.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2026-02-23 17:34:16 +01:00
|
|
|
.subsection-txt {
|
|
|
|
|
max-width: var(--max-w-content);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media #{$small-up}{
|
|
|
|
|
|
|
|
|
|
.section-content {
|
|
|
|
|
margin-bottom: calc(var(--spacing)*4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subsection-w-media{
|
2026-02-14 17:03:03 +01:00
|
|
|
display: grid;
|
2026-02-23 17:34:16 +01:00
|
|
|
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
|
2026-02-14 17:03:03 +01:00
|
|
|
gap: var(--padding-body);
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
|
2026-02-23 17:34:16 +01:00
|
|
|
.media{
|
|
|
|
|
margin-inline: auto;
|
|
|
|
|
max-width: var(--max-w-content);
|
2026-02-23 18:12:04 +01:00
|
|
|
min-width: 0;
|
2026-02-23 17:34:16 +01:00
|
|
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: calc(var(--header-h) + var(--spacing));
|
|
|
|
|
align-self: start;
|
|
|
|
|
|
|
|
|
|
@media #{$medium-up}{
|
|
|
|
|
padding-left: var(--padding-inner);
|
|
|
|
|
padding-right: var(--padding-inner);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subsection-txt {
|
|
|
|
|
min-height: calc(100vh - var(--header-h));
|
2026-02-14 17:03:03 +01:00
|
|
|
padding-left: var(--padding-inner);
|
|
|
|
|
padding-right: var(--padding-inner);
|
2026-02-23 17:34:16 +01:00
|
|
|
padding-bottom: calc(var(--spacing)*6);
|
|
|
|
|
}
|
2026-02-14 17:03:03 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2026-02-23 17:34:16 +01:00
|
|
|
@media #{$small}{
|
|
|
|
|
|
|
|
|
|
.section-content:not(.section-title-only) {
|
|
|
|
|
padding-bottom: calc(var(--spacing)*1);
|
|
|
|
|
margin-bottom: calc(var(--spacing)*2);
|
|
|
|
|
border-bottom: var(--border-light);
|
2026-02-14 17:03:03 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-23 17:34:16 +01:00
|
|
|
.section-title-only{
|
|
|
|
|
margin-bottom: calc(var(--spacing)*1.5);
|
|
|
|
|
}
|
|
|
|
|
.media{
|
|
|
|
|
margin-bottom: calc(var(--spacing)*2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3{
|
|
|
|
|
margin-top: calc(var(--spacing)*3);
|
|
|
|
|
margin-bottom: calc(var(--spacing)*1.5);
|
|
|
|
|
font-size: 1.35em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h4{
|
2026-02-24 17:42:51 +01:00
|
|
|
margin-top: calc(var(--spacing)*3);
|
2026-02-23 17:34:16 +01:00
|
|
|
margin-bottom: calc(var(--spacing)*1);
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h4, h5{
|
|
|
|
|
margin-top: calc(var(--spacing)*3);
|
|
|
|
|
margin-bottom: calc(var(--spacing)*1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subsection-txt .insert{
|
|
|
|
|
margin-top: calc(var(--spacing)*1.5);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-02-14 17:03:03 +01:00
|
|
|
.subsection-w-hscroll{
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-bottom: calc(var(--spacing)*4);
|
|
|
|
|
|
|
|
|
|
.horizontal-scroll{
|
|
|
|
|
height: 100vh;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.horizontal-scroll-wrapper{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
will-change: transform;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.horizontal-scroll-slide{
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 90vw;
|
|
|
|
|
max-width: 700px;
|
|
|
|
|
padding: 0 calc(var(--spacing) * 1);
|
|
|
|
|
|
|
|
|
|
figure, img{
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.horizontal-scroll-pagination{
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: calc(var(--spacing) * 2);
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-02-24 17:42:51 +01:00
|
|
|
|
2026-02-19 14:35:53 +01:00
|
|
|
|
|
|
|
|
|
2026-02-19 15:15:47 +01:00
|
|
|
.insert--inner > :last-child{
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
}
|
|
|
|
|
.insert--inner > :first-child,
|
2026-02-19 14:35:53 +01:00
|
|
|
.subsection-txt > :first-child,
|
|
|
|
|
.section-content > :first-child{
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
}
|
2026-02-14 17:03:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.investigation__content:target {
|
|
|
|
|
padding-top: calc(var(--header-h)*2 + var(--spacing)) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.media{
|
|
|
|
|
|
|
|
|
|
video{
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
figure{
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|