index-main/assets/css/style.css

2541 lines
56 KiB
CSS
Raw Normal View History

2025-11-04 08:33:39 +01:00
@charset "UTF-8";
:root {
2026-01-06 11:19:25 +01:00
--font: "Executive", Arial, sans-serif;
--title: "System", Arial, sans-serif;
--fs-xsmall: 10px;
--fs-small: 12px;
--fs-normal: 16px;
--fs-medium: 20px;
--fs-big: 30px;
--fs-xbig: 38px;
--fs-button-bold: 22px;
2026-01-23 17:38:08 +01:00
--max-w-content: 640px;
--max-w-cards: 1000px;
2026-01-06 17:14:32 +01:00
--max-w-container: 1280px;
2026-01-23 17:38:08 +01:00
--z-header: 2000;
--panel-w: 310px;
2026-01-06 11:19:25 +01:00
--leading-tight: 1.05;
2026-01-08 18:41:26 +01:00
--leading-normal: 1.3;
2025-11-04 08:33:39 +01:00
--fw-normal: 400;
2026-01-06 11:19:25 +01:00
--fw-medium: 500;
--fw-bold: 600;
2025-11-04 08:33:39 +01:00
--grey-100: #d8d8d8;
2026-01-06 11:19:25 +01:00
--grey-200: #c8c8c8;
--grey-300: #b9b9b9;
2025-11-04 08:33:39 +01:00
--grey-400: #969696;
2026-01-06 11:19:25 +01:00
--grey-600: #6d6d6d;
2025-11-04 08:33:39 +01:00
--grey-800: #383838;
2026-01-06 11:19:25 +01:00
--color-bg: #161616;
--color-txt: #ffffff;
--color-txt-light: var(--grey-400);
--color-accent: #00ff00;
--color-accent-50: #e9ffe9;
--color-accent-100: #d8fdd8;
--dark: black;
2026-01-06 16:15:49 +01:00
--color-form: white;
2025-11-04 08:33:39 +01:00
--border: 1px solid var(--color-txt);
2026-01-06 15:43:31 +01:00
--border-medium: 1px solid var(--grey-600);
2026-01-06 11:19:25 +01:00
--border-light: 1px solid var(--grey-800);
--header-h: 80px;
--header-h-shrinked: 50px;
--menu-w: 420px;
--banner-medium: 220px;
--padding-body: 26px;
--padding-inner: 14px;
2025-11-04 08:33:39 +01:00
--radius-small: 4px;
2026-01-06 11:19:25 +01:00
--radius-btn: 4px;
--spacing: 30px;
--h-block: 30px;
--curve: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media screen and (max-width: 768px) {
:root {
--fs-medium: 20px;
--fs-big: 26px;
}
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
@media screen and (max-width: 768px) {
:root {
--fs-xsmall: 10px;
2026-01-06 15:43:31 +01:00
--fs-small: 12px;
2026-01-06 11:19:25 +01:00
--fs-normal: 14px;
--fs-medium: 18px;
--fs-big: 28px;
--fs-xbig: 32px;
--header-h: 60px;
2026-01-08 14:53:08 +01:00
--padding-body: 16px;
2026-01-06 11:19:25 +01:00
}
}
2026-01-06 16:15:49 +01:00
:root[data-theme=light] {
--grey-100: #1f1f1f;
--grey-200: #2f2f2f;
--grey-300: #4a4a4a;
--grey-400: #6a6a6a;
--grey-600: #9a9a9a;
--grey-800: #cfcfcf;
--color-bg: #efefef;
2026-01-23 17:38:08 +01:00
--color-txt: #161616;
2026-01-06 16:15:49 +01:00
--color-txt-light: var(--grey-400);
--color-accent: #ff00ff;
--color-accent-50: #ffe9ff;
--color-accent-100: #fdd8fd;
--dark: white;
--color-form: var(--color-bg);
}
2025-11-04 08:33:39 +01:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
2026-01-06 11:19:25 +01:00
scroll-behavior: smooth;
2025-11-04 08:33:39 +01:00
}
a {
color: currentColor;
}
button {
background: none;
outline: none;
border: none;
color: var(--color-txt);
}
iframe {
border: none;
}
body {
font-family: var(--font);
line-height: var(--leading-normal);
font-size: var(--fs-normal);
color: var(--color-txt);
background-color: var(--color-bg);
}
2026-01-06 11:19:25 +01:00
img {
max-width: 100%;
}
2026-01-06 15:43:31 +01:00
.link-block {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
cursor: pointer;
}
2026-01-06 16:15:49 +01:00
body, #site-header, #site-footer {
transition: background-color 0.3s ease, color 0.3s ease;
}
2026-01-25 19:40:55 +01:00
body.menu-open,
body.is-hidden {
overflow-y: hidden;
}
body.menu-open main, body.menu-open footer, body.menu-open #nav-highlight, body.menu-open .btn--back-to-top,
body.is-hidden main,
body.is-hidden footer,
body.is-hidden #nav-highlight,
body.is-hidden .btn--back-to-top {
transition: opacity 0.3s ease-in;
opacity: 0.1;
}
2026-01-06 11:19:25 +01:00
#site-header {
2026-01-23 17:38:08 +01:00
z-index: var(--z-header);
2026-01-06 11:19:25 +01:00
--gap: 3ch;
2026-01-22 14:46:05 +01:00
position: fixed;
top: 0;
left: 0;
2026-01-06 11:19:25 +01:00
width: 100vw;
height: var(--header-h);
background-color: var(--color-bg);
padding: 0 var(--padding-body);
2026-01-23 17:38:08 +01:00
box-shadow: -1px 4px 10px 0px var(--color-bg);
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header .site-header__inner {
width: 100%;
height: 100%;
2026-01-22 14:46:05 +01:00
border-bottom: 1px solid var(--color-bg);
transition: border-color ease-in 0.5s;
2026-01-06 11:19:25 +01:00
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--gap);
}
#site-header a {
text-decoration: none;
}
#site-header a:hover {
color: var(--grey-200);
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header #site-title {
flex-grow: 2;
2026-01-27 16:55:02 +01:00
opacity: 0;
2026-01-06 11:19:25 +01:00
}
#site-header #site-title svg {
width: 100px;
}
@media screen and (max-width: 768px) {
#site-header #site-title svg {
width: 80px;
}
}
2026-01-08 14:53:08 +01:00
#site-header .header__title-page {
2026-01-06 11:19:25 +01:00
display: none;
flex-grow: 2;
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-transform: uppercase;
2025-11-04 08:33:39 +01:00
font-size: var(--fs-small);
2026-01-06 11:19:25 +01:00
line-height: 2;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header ul {
list-style-type: none;
display: flex;
align-items: center;
gap: var(--gap);
text-transform: uppercase;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header #theme-toggle {
width: var(--h-block);
height: var(--h-block);
2025-11-04 08:33:39 +01:00
display: flex;
align-items: center;
justify-content: center;
}
2026-01-06 11:19:25 +01:00
#site-header #theme-toggle svg {
width: 18px;
position: relative;
top: -2px;
}
#site-header #lang-toggle {
display: flex;
gap: 1ch;
}
#site-header #lang-toggle button:disabled {
color: var(--color-txt-light);
}
#site-header #menu-toggle {
cursor: pointer;
}
#site-header #menu-toggle svg {
width: 30px;
2026-01-25 22:25:08 +01:00
fill: var(--color-txt);
2026-01-06 11:19:25 +01:00
}
#site-header #menu-toggle .close {
display: none;
}
#site-header button:hover svg {
fill: var(--grey-200) !important;
}
@media screen and (max-width: 1080px) {
#nav-highlight {
display: none;
}
}
button {
cursor: pointer;
font-family: var(--font);
font-size: var(--fons-normal);
color: var(--color-txt);
}
2026-01-27 18:33:27 +01:00
button svg {
fill: var(--color-txt);
}
2026-01-06 11:19:25 +01:00
button:hover {
color: var(--grey-100);
}
2026-01-08 14:53:08 +01:00
button:hover svg {
fill: var(--grey-100);
}
2026-01-06 11:19:25 +01:00
button a {
text-decoration: none;
width: 100%;
height: 100%;
}
button:disabled {
cursor: auto;
}
.soutenir a {
color: var(--color-accent);
}
.soutenir a:hover {
color: var(--color-accent) !important;
text-decoration: underline !important;
}
2026-01-08 14:53:08 +01:00
.btn--small {
height: calc(var(--h-block) * 0.75);
2026-01-21 16:33:15 +01:00
border: var(--border-light);
2026-01-08 14:53:08 +01:00
border-radius: var(--radius-btn);
font-size: var(--fs-small);
line-height: 1;
overflow: hidden;
white-space: nowrap;
}
.btn--small a {
display: flex;
align-items: center;
justify-content: center;
2026-01-21 16:33:15 +01:00
gap: 1ch;
2026-01-08 14:53:08 +01:00
width: 100%;
height: 100%;
padding: 0 1ch;
padding-top: 2px;
}
2026-01-21 16:33:15 +01:00
.btn--small .icon {
--size: 10px;
height: var(--size);
width: var(--size);
position: relative;
top: -8px;
}
.btn--small .icon svg {
width: 100%;
fill: var(--color-txt);
}
2026-01-08 14:53:08 +01:00
.btn--small.no-link {
display: flex;
align-items: center;
justify-content: center;
2026-01-21 16:33:15 +01:00
gap: 1ch;
2026-01-08 14:53:08 +01:00
padding: 0 1ch;
padding-top: 2px;
}
2026-01-21 16:33:15 +01:00
.btn--small:hover {
color: currentColor;
border-color: currentColor;
background-color: var(--grey-800);
}
.btn--small.is-selected {
background-color: var(--color-txt);
border-color: var(--color-txt);
color: var(--color-bg);
}
.btn--small.is-selected a {
color: var(--color-bg);
}
.btn--small.is-selected svg {
fill: var(--color-bg);
}
2026-01-08 14:53:08 +01:00
2026-01-06 11:19:25 +01:00
.btn--bold,
.btn--bold-inline {
display: block;
height: calc(var(--h-block) * 1);
border: var(--border);
border-radius: var(--radius-btn);
font-size: var(--fs-small);
text-transform: uppercase;
2025-11-04 08:33:39 +01:00
line-height: 1;
2026-01-06 11:19:25 +01:00
overflow: hidden;
white-space: nowrap;
}
2026-01-09 14:19:23 +01:00
.btn--bold svg,
.btn--bold-inline svg {
width: 18px;
height: 18px;
position: relative;
top: -1px;
}
2026-01-06 11:19:25 +01:00
.btn--bold a,
.btn--bold-inline a {
display: flex;
align-items: center;
justify-content: center;
2026-01-09 14:19:23 +01:00
gap: 1ch;
2026-01-06 11:19:25 +01:00
width: 100%;
height: 100%;
padding: 0 2ch;
padding-top: 4px;
}
.btn--bold.no-link,
.btn--bold-inline.no-link {
display: flex;
align-items: center;
justify-content: center;
2026-01-09 14:19:23 +01:00
gap: 1ch;
2026-01-06 11:19:25 +01:00
padding: 0 2ch;
padding-top: 4px;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.btn--bold {
background-color: var(--color-txt);
color: var(--color-bg);
}
2026-01-09 14:19:23 +01:00
.btn--bold svg {
fill: var(--color-bg);
}
2026-01-06 11:19:25 +01:00
.btn--bold:hover {
background-color: var(--color-accent);
border-color: var(--color-accent);
}
.btn--bold:hover a {
color: var(--color-bg);
}
2026-01-09 14:19:23 +01:00
.btn--bold:hover svg {
fill: var(--color-bg);
}
2026-01-06 11:19:25 +01:00
.btn--bold-inline {
background-color: var(--color-bg);
}
2026-01-09 14:19:23 +01:00
.btn--bold-inline svg {
fill: var(--color-txt);
}
2026-01-06 11:19:25 +01:00
.btn--bold-inline:hover {
background-color: var(--grey-800);
color: var(--color-txt);
}
.btn--bold-inline:hover a {
background-color: var(--grey-800);
color: var(--color-txt);
}
2026-01-25 19:40:55 +01:00
.btn--toc svg {
width: 15px;
height: 15px;
top: 0px;
}
2026-01-25 22:25:08 +01:00
@keyframes wiggle-left {
0% {
transform: translateX(0);
}
40% {
transform: translateX(-10px);
}
80% {
transform: translateX(0);
}
100% {
transform: translateX(0);
}
}
.btn--back-to-top {
2025-11-04 08:33:39 +01:00
display: flex;
border-color: var(--color-txt);
width: -moz-fit-content;
width: fit-content;
2026-01-25 19:40:55 +01:00
margin: var(--spacing) auto;
}
@media screen and (max-width: 768px) {
.btn--back-to-top {
margin-bottom: calc(var(--spacing) * 2);
}
2025-11-04 08:33:39 +01:00
}
.btn--back-to-top .icon {
width: 12px;
height: 12px;
transform: rotate(-90deg);
transform-origin: center;
position: relative;
top: -1px;
2025-11-04 08:33:39 +01:00
}
.btn--back-to-top .icon svg {
width: 12px;
height: 12px;
2025-11-04 08:33:39 +01:00
}
2026-01-06 15:43:31 +01:00
.tag {
height: calc(var(--h-block) * 0.75);
2026-01-08 14:53:08 +01:00
border-radius: var(--radius-small);
2026-01-08 18:41:26 +01:00
display: inline-flex;
2026-01-06 15:43:31 +01:00
align-items: center;
justify-content: center;
padding: 0 1.5ch;
padding-top: 3px;
font-size: var(--fs-small);
line-height: 1;
background-color: var(--color-txt);
color: var(--color-bg);
overflow: hidden;
white-space: nowrap;
}
2026-01-06 11:19:25 +01:00
.keywords {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 0.75ch;
2025-11-04 08:33:39 +01:00
}
.keywords a {
display: inline-flex;
align-items: center;
justify-content: center;
height: calc(var(--h-block) * 0.75);
padding: 0 1ch;
padding-top: 2px;
border: var(--border-light);
border-radius: var(--radius-btn);
font-size: var(--fs-small);
line-height: 1;
white-space: nowrap;
text-decoration: none;
}
.keywords a::before {
content: "#";
padding-right: 0.25ch;
}
.keywords a:hover {
border-color: currentColor;
background-color: var(--grey-800);
2025-11-04 08:33:39 +01:00
}
.keywords--small {
list-style: none;
}
.keywords--small li {
display: inline;
}
.keywords--small a {
2026-01-06 11:19:25 +01:00
text-decoration: none;
2025-11-04 08:33:39 +01:00
}
.keywords--small a::before {
2026-01-06 15:43:31 +01:00
content: "#";
padding-right: 0.25ch;
2025-11-04 08:33:39 +01:00
}
.keywords--small a::after {
content: " ";
}
2025-11-04 08:33:39 +01:00
2026-01-21 16:33:15 +01:00
button.sort .arrow {
2026-01-08 14:53:08 +01:00
line-height: 0;
--size: 12px;
height: var(--size);
width: var(--size);
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
top: -2px;
transform: rotate(90deg);
transition: transform 0.2s ease-in;
}
2026-01-21 16:33:15 +01:00
button.sort .arrow svg {
2026-01-08 16:27:21 +01:00
width: 100%;
fill: var(--color-txt);
2026-01-08 14:53:08 +01:00
}
2026-01-21 16:33:15 +01:00
button.sort[data-sort-type=up] .arrow {
2026-01-08 16:27:21 +01:00
transform: rotate(-90deg);
2026-01-08 14:53:08 +01:00
}
2026-01-27 16:55:02 +01:00
.page__sort {
margin-bottom: calc(var(--spacing) * 1);
display: flex;
justify-content: right;
grid-gap: var(--padding-inner);
width: 100%;
max-width: var(--max-w-cards);
margin-inline: auto;
}
2026-01-25 19:40:55 +01:00
.btn--group__mobile {
z-index: calc(var(--z-header) - 10);
opacity: 0;
transition: opacity 0.3s ease-in;
position: fixed;
bottom: 0;
left: 0;
width: 100vw;
height: calc(var(--h-block) * 3);
padding: calc(var(--spacing) * 0.75) var(--padding-body);
background-color: var(--color-bg);
background: linear-gradient(0deg, var(--color-bg) 0%, var(--color-bg) 75%, transparent 100%);
display: flex;
align-items: flex-end;
gap: var(--padding-inner);
}
.btn--group__mobile.is-visible {
opacity: 1;
}
.btn--group__mobile button, .btn--group__mobile .dropdown {
flex-grow: 1;
width: 100%;
}
@media screen and (min-width: 768px) {
.btn--group__mobile {
display: none;
opacity: 0 !important;
}
}
2026-01-08 16:12:39 +01:00
#hero {
width: 100%;
2026-01-08 16:12:39 +01:00
position: relative;
2026-01-13 10:29:55 +01:00
left: 0;
2026-01-08 18:41:26 +01:00
}
2026-01-08 16:12:39 +01:00
#hero figcaption {
color: var(--color-txt-light);
font-size: var(--fs-small);
padding: calc(var(--spacing) * 0.5) var(--padding-body);
padding-bottom: 0;
}
@media screen and (max-width: 560px) {
#hero figcaption {
font-size: var(--fs-xsmall);
}
}
#hero figure {
width: 100%;
position: relative;
}
#hero figure img {
width: 100%;
aspect-ratio: 2/1;
-o-object-fit: cover;
object-fit: cover;
}
#hero .swiper-slide {
position: relative;
}
#hero .swiper-button-prev, #hero .swiper-button-next {
--swiper-navigation-sides-offset: 32px;
--swiper-navigation-size: 32px;
opacity: 0.8;
top: calc(450vw - var(--swiper-navigation-size) * 0.5);
margin-top: 0;
}
@media screen and (max-width: 560px) {
#hero .swiper-button-prev, #hero .swiper-button-next {
--swiper-navigation-sides-offset: 15px;
--swiper-navigation-size: 15px;
}
}
#hero .swiper-button-prev svg, #hero .swiper-button-next svg {
color: white;
}
#hero .swiper-pagination {
position: static;
margin-top: calc(var(--spacing) * 0.5);
padding: 0 var(--padding-body);
text-align: center;
}
#hero .swiper-pagination .swiper-pagination-bullet {
width: 15px;
height: 4px;
border-radius: 2px;
background: var(--color-txt-light);
}
#hero .swiper-pagination .swiper-pagination-bullet-active {
background: var(--color-txt);
opacity: 0.8;
}
#hero .player-container {
width: 100%;
position: relative;
aspect-ratio: 2/1;
}
#hero .player-container .extract, #hero .player-container video {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
position: relative;
}
#hero .player-container .video-full {
width: 100%;
height: 100%;
display: none;
}
#hero .player-container .video-full iframe {
width: 100%;
height: 100%;
}
#hero .player-container #hero-play-video {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
text-transform: uppercase;
display: flex;
align-items: center;
justify-content: center;
}
#hero .player-container #hero-play-video .btn--bold {
display: flex;
align-items: center;
justify-content: center;
gap: 1ch;
padding: 0 1ch;
opacity: 0.8;
}
#hero .player-container #hero-play-video .btn--bold:hover {
opacity: 1;
}
#hero .player-container #hero-play-video .text {
color: black;
line-height: 1;
padding-top: 4px;
}
#hero .player-container #hero-play-video svg {
width: 18px;
height: 18px;
fill: black;
opacity: 0.8;
}
2025-11-04 08:33:39 +01:00
.form__newsletter {
--size: 24px;
position: relative;
display: flex;
align-items: center;
2026-01-06 11:19:25 +01:00
position: relative;
2025-11-04 08:33:39 +01:00
}
.form__newsletter input[type=email] {
2026-01-06 11:19:25 +01:00
height: calc(var(--h-block) * 1.25);
2025-11-04 08:33:39 +01:00
width: 100%;
2026-01-06 11:19:25 +01:00
border-radius: calc(var(--h-block) * 0.625);
2025-11-04 08:33:39 +01:00
outline: none;
2026-01-06 16:15:49 +01:00
border: 1px solid var(--color-txt);
2026-01-06 11:19:25 +01:00
padding: 0 2ch;
font-family: var(--font);
font-size: var(--fs-normal);
2025-11-04 08:33:39 +01:00
z-index: 40;
2026-01-06 11:19:25 +01:00
padding-top: 4px;
2026-01-06 16:15:49 +01:00
background: var(--color-bg);
color: var(--color-txt);
2025-11-04 08:33:39 +01:00
}
.form__newsletter input[type=email]::-moz-placeholder {
2026-01-06 11:19:25 +01:00
font-family: var(--font);
font-size: var(--fs-normal);
2026-01-06 16:15:49 +01:00
color: var(--color-txt);
2025-11-04 08:33:39 +01:00
}
.form__newsletter input[type=email]::placeholder {
2026-01-06 11:19:25 +01:00
font-family: var(--font);
font-size: var(--fs-normal);
2026-01-06 16:15:49 +01:00
color: var(--color-txt);
2025-11-04 08:33:39 +01:00
}
.form__newsletter input[type=email]:focus {
2026-01-06 16:15:49 +01:00
border: 1px solid var(--color-accent);
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.form__newsletter button[type=submit].btn--newletter {
2025-11-04 08:33:39 +01:00
position: absolute;
2026-01-06 16:15:49 +01:00
right: 4px;
2026-01-06 11:19:25 +01:00
z-index: 100;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.form__newsletter button[type=submit].btn--newletter {
2026-01-06 16:15:49 +01:00
--size: calc(var(--h-block)*1.25 - 8px);
2026-01-06 11:19:25 +01:00
font-family: var(--font);
font-size: var(--fs-button-bold);
height: var(--size);
display: flex;
align-items: center;
gap: 0.75ch;
color: var(--color-accent);
font-weight: var(--fw-medium);
text-decoration: none;
cursor: pointer;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.form__newsletter button[type=submit].btn--newletter .icon, .form__newsletter button[type=submit].btn--newletter .txt {
z-index: 10;
}
.form__newsletter button[type=submit].btn--newletter .icon {
width: var(--size);
height: var(--size);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-bg);
text-align: center;
}
.form__newsletter button[type=submit].btn--newletter .icon svg {
fill: var(--color-bg);
width: 80%;
}
.form__newsletter button[type=submit].btn--newletter .txt {
position: relative;
top: 2px;
font-size: var(--fs-normal);
display: none;
padding-left: 1ch;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.form__newsletter button[type=submit].btn--newletter::after {
2025-11-04 08:33:39 +01:00
content: "";
display: block;
2026-01-06 11:19:25 +01:00
background-color: var(--color-accent);
border-radius: calc(var(--size) / 2);
width: var(--size);
height: var(--size);
2025-11-04 08:33:39 +01:00
position: absolute;
2026-01-06 11:19:25 +01:00
right: 0;
z-index: 0;
transition: width 0.2s;
}
.form__newsletter button[type=submit].btn--newletter:hover .txt {
color: var(--color-bg);
display: block;
}
.form__newsletter button[type=submit].btn--newletter:hover::after {
width: 100%;
2025-11-04 08:33:39 +01:00
}
2026-01-08 14:53:08 +01:00
.search-form {
--icon: 40px;
display: grid;
grid-template-columns: var(--icon) 1fr;
}
.search-form input {
grid-column: 1/3;
grid-row: 1;
height: calc(var(--h-block) * 1.5);
width: 100%;
background: var(--color-bg);
border: 1px solid var(--color-txt);
padding-left: var(--icon);
font-family: var(--font);
font-size: var(--fs-normal);
color: var(--color-txt);
padding-top: 3px;
}
.search-form input::-moz-placeholder {
font-family: var(--font);
font-size: var(--fs-normal);
color: var(--color-txt);
}
.search-form input::placeholder {
font-family: var(--font);
font-size: var(--fs-normal);
color: var(--color-txt);
}
.search-form input:focus {
border-color: var(--color-accent);
outline: none;
}
.search-form .icon {
grid-column: 1;
grid-row: 1;
z-index: 10;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.search-form .icon svg {
width: 20px;
}
2026-01-06 11:19:25 +01:00
.list-socials {
list-style: none;
2025-11-04 08:33:39 +01:00
display: flex;
2026-01-06 11:19:25 +01:00
justify-content: space-between;
align-items: center;
max-width: 400px;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.list-socials a {
display: flex;
align-items: center;
text-decoration: none;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.list-socials .icon {
2026-01-08 15:00:55 +01:00
width: 20px;
height: 20px;
2026-01-06 11:19:25 +01:00
position: relative;
top: -2px;
}
.list-socials svg {
display: flex;
align-items: center;
2026-01-08 15:00:55 +01:00
width: 20px;
height: 20px;
2026-01-06 11:19:25 +01:00
}
.list-socials .text {
2025-11-04 08:33:39 +01:00
display: none;
}
2026-01-06 11:19:25 +01:00
@media screen and (min-width: 768px) {
.footer__socials .list-socials {
display: block;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.footer__socials .list-socials li {
margin-bottom: calc(var(--spacing) * 0.5);
-moz-column-break-inside: avoid;
break-inside: avoid;
}
.footer__socials .list-socials a {
gap: 1ch;
height: calc(var(--spacing) * 1);
}
.footer__socials .list-socials a::after {
content: "↗";
color: var(--grey-300);
}
.footer__socials .list-socials .text {
display: block;
line-height: 1;
2025-11-04 08:33:39 +01:00
}
}
2026-01-06 11:19:25 +01:00
.modal--share {
2026-01-21 17:25:37 +01:00
width: 240px;
padding-bottom: var(--padding-inner);
2026-01-25 19:40:55 +01:00
background-color: var(--color-bg);
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.modal--share .socials {
display: block;
list-style: none;
}
.modal--share .socials li {
font-size: var(--fs-normal);
border-bottom: var(--border-light);
2026-01-21 17:25:37 +01:00
}
.modal--share .socials li:first-of-type {
border-top: var(--border-light);
2026-01-06 11:19:25 +01:00
}
.modal--share .socials li a {
2025-11-04 08:33:39 +01:00
display: flex;
2026-01-06 11:19:25 +01:00
align-items: center;
2026-01-21 17:25:37 +01:00
gap: 2ch;
2026-01-06 11:19:25 +01:00
text-decoration: none;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.modal--share .socials li .icon {
2026-01-08 15:00:55 +01:00
width: 16px;
height: 16px;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.modal--share .socials li .icon svg {
width: 100%;
height: 100%;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
.modal--share .socials li .text {
position: relative;
top: 2px;
}
.modal--share .copy-link {
display: flex;
gap: 0.5ch;
2026-01-21 17:25:37 +01:00
padding: 0 var(--padding-inner);
height: var(--h-block);
width: 100%;
2026-01-06 11:19:25 +01:00
}
.modal--share .copy-link .copy-link__field {
flex-grow: 1;
display: grid;
grid-template-columns: var(--h-block) 1fr;
}
.modal--share .copy-link .icon {
display: flex;
width: var(--h-block);
height: 100%;
align-items: center;
justify-content: center;
position: relative;
grid-row: 1;
grid-column: 1;
}
.modal--share .copy-link .icon svg {
width: 12px;
}
.modal--share .copy-link input {
font-size: var(--fs-small);
font-family: var(--font);
background: none;
2025-11-04 08:33:39 +01:00
border: none;
2026-01-06 11:19:25 +01:00
color: var(--color-txt);
padding-top: 2px;
grid-column: 1/end;
grid-row: 1;
padding-left: var(--h-block);
padding-right: 0.5ch;
border: var(--border-light);
border-radius: var(--radius-btn);
height: var(--h-block);
}
.modal--share .copy-link input:focus {
border-color: var(--color-txt);
outline: none;
}
2026-01-21 17:25:37 +01:00
.modal--share .copy-link input.is-copied {
color: var(--color-accent) !important;
}
2026-01-13 11:23:30 +01:00
.modal--share .copy-link .copy-link__btn {
2026-01-06 11:19:25 +01:00
background-color: var(--color-txt);
color: var(--color-bg);
border-radius: var(--radius-btn);
padding: 0 1ch;
font-size: var(--fs-small);
padding-top: 2px;
2026-01-13 11:23:30 +01:00
white-space: nowrap;
2026-01-23 17:38:08 +01:00
text-align: center;
width: 8ch !important;
2026-01-21 17:25:37 +01:00
}
.modal--share .copy-link .copy-link__btn::after {
content: " ";
2026-01-06 11:19:25 +01:00
}
2026-01-13 11:23:30 +01:00
.modal--share .copy-link .copy-link__btn:hover {
2026-01-06 11:19:25 +01:00
background-color: var(--color-accent);
2025-11-04 08:33:39 +01:00
}
2026-01-13 11:23:30 +01:00
#share-banner__content,
#share-banner__aside,
#share-banner__desktop {
display: none;
}
#share-banner__content ~ .modal--share,
#share-banner__aside ~ .modal--share,
#share-banner__desktop ~ .modal--share {
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease-in;
}
#share-banner__content:checked ~ .modal--share,
#share-banner__aside:checked ~ .modal--share,
#share-banner__desktop:checked ~ .modal--share {
opacity: 1;
pointer-events: auto;
}
2026-01-21 16:33:15 +01:00
.dropdown {
position: relative;
display: inline-block;
}
.dropdown__trigger {
cursor: pointer;
}
.dropdown__content {
position: absolute;
top: 100%;
left: 0;
min-width: 180px;
2026-01-21 16:43:10 +01:00
margin-top: var(--padding-inner);
2026-01-21 16:33:15 +01:00
background-color: var(--color-bg);
border: var(--border);
border-radius: var(--radius-btn);
opacity: 0;
visibility: hidden;
transform: translateY(-4px);
transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
z-index: 100;
}
2026-01-21 16:43:10 +01:00
.dropdown__content::before {
content: "◀";
transform: rotate(90deg);
font-size: 14px;
position: absolute;
top: -13px;
left: 16px;
}
2026-01-21 16:33:15 +01:00
.dropdown__content ul {
list-style: none;
margin: 0;
padding: var(--padding-inner);
}
.dropdown__content a, .dropdown__content button {
display: block;
width: 100%;
padding: 0.75em 1ch;
font-size: var(--fs-small);
text-align: left;
text-decoration: none;
color: var(--color-txt);
background: none;
border: none;
cursor: pointer;
}
.dropdown__content a:hover, .dropdown__content button:hover {
background-color: var(--grey-800);
}
.dropdown--align-right .dropdown__content {
left: auto;
right: 0;
}
2026-01-21 16:43:10 +01:00
.dropdown--align-right .dropdown__content::before {
left: auto;
right: 16px;
}
2026-01-21 16:33:15 +01:00
.dropdown.is-open .dropdown__content {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
2026-01-25 19:40:55 +01:00
.dropdown--position-mobile .dropdown__content {
top: auto;
bottom: calc(var(--h-block) + var(--padding-inner) * 2);
left: auto;
right: 0;
margin-top: 0;
margin-left: 4px;
}
.dropdown--position-mobile .dropdown__content::before {
font-family: Arial;
content: "◀";
transform: rotate(-90deg);
font-size: 14px;
position: absolute;
top: auto;
bottom: -13px;
left: auto;
right: 10%;
}
.dropdown--position-mobile.is-open .dropdown__content {
transform: translateX(0);
2026-01-23 17:38:08 +01:00
}
@media screen and (min-width: 768px) {
.dropdown--position-panel .dropdown__content {
top: auto;
bottom: 0;
left: calc(100% + var(--padding-inner));
margin-top: 0;
margin-left: 4px;
}
.dropdown--position-panel .dropdown__content::before {
font-family: Arial;
content: "◀";
transform: rotate(0deg);
font-size: 14px;
position: absolute;
top: auto;
bottom: 4px;
left: -11px;
}
.dropdown--position-panel.is-open .dropdown__content {
transform: translateX(0);
}
}
@media screen and (max-width: 560px) {
.dropdown .dropdown__content {
width: calc(100vw - var(--padding-body) * 2);
}
.dropdown .dropdown__content .modal--share {
width: 100%;
}
2026-01-21 16:33:15 +01:00
}
2026-01-27 16:55:02 +01:00
@media screen and (max-width: 1280px) {
[data-template=investigations] .dropdown .dropdown__content {
left: auto;
right: 0;
}
[data-template=investigations] .dropdown .dropdown__content::before {
left: auto;
right: 16px;
}
2026-01-06 11:19:25 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article {
border: var(--border-light);
position: relative;
display: flex;
flex-direction: column;
2026-01-27 18:33:27 +01:00
padding: var(--padding-inner);
2026-01-06 11:19:25 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article figure {
aspect-ratio: 16/9;
display: flex;
overflow: hidden;
}
.card--article figure img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}
.card--article .content {
display: flex;
flex-direction: column;
2026-01-06 11:19:25 +01:00
}
2026-01-23 14:21:26 +01:00
.card--article .pin {
position: absolute;
2026-01-27 18:33:27 +01:00
top: calc(var(--padding-inner) * 1.5);
left: calc(var(--padding-inner) * 1.5);
2026-01-27 16:55:02 +01:00
z-index: 10;
2026-01-23 14:21:26 +01:00
width: 24px;
height: 24px;
border-radius: var(--radius-small);
background-color: rgba(255, 255, 255, 0.27);
display: flex;
align-items: center;
justify-content: center;
}
.card--article .pin svg {
width: 16px;
fill: var(--color-txt);
}
2026-01-06 17:14:32 +01:00
.card--article .title {
margin-top: calc(var(--spacing) * 0.5);
2026-01-06 11:19:25 +01:00
font-size: var(--fs-medium);
2026-01-06 17:14:32 +01:00
font-weight: normal;
text-transform: uppercase;
text-wrap: balance;
2026-01-06 11:19:25 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article .title a {
text-decoration: none;
2026-01-06 11:19:25 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article .description {
margin-top: calc(var(--spacing) * 1);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
2026-01-06 11:19:25 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article .dl {
2026-01-06 11:19:25 +01:00
margin-top: calc(var(--spacing) * 0.5);
2026-01-27 18:51:58 +01:00
border-bottom: var(--border-light);
2026-01-06 11:19:25 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article .dl .dl__group {
display: grid;
grid-gap: var(--padding-inner);
grid-template-columns: 2fr 3fr;
position: relative;
border-top: var(--border-light);
padding: calc(var(--spacing) * 0.5) 0;
}
.card--article .dl dt {
color: var(--color-txt-light);
padding-right: 1ch;
}
.card--article .dl ul {
2026-01-06 17:14:32 +01:00
list-style: none;
}
.card--article .dl ul li {
2026-01-06 17:14:32 +01:00
padding-bottom: 0.2em;
}
.card--article .keywords-wrapper {
z-index: 3000;
2026-01-27 18:51:58 +01:00
margin-top: calc(var(--spacing) * 0.5);
}
.card--article .keywords {
grid-column: 2;
}
2026-01-06 17:14:32 +01:00
.card--article:hover {
border-color: var(--color-txt);
2025-11-04 08:33:39 +01:00
}
.card--article .link-block {
z-index: 2000;
}
2025-11-04 08:33:39 +01:00
2026-01-06 17:14:32 +01:00
.card--article-small {
2026-01-06 15:43:31 +01:00
display: grid;
grid-gap: var(--padding-inner);
grid-template-columns: 2fr 3fr;
position: relative;
margin-bottom: calc(var(--spacing) * 0.5);
padding-bottom: calc(var(--spacing) * 0.5);
border-bottom: var(--border-light);
2026-01-25 22:25:08 +01:00
position: relative;
}
.card--article-small:first-of-type {
padding-top: calc(var(--spacing) * 0.5);
border-top: var(--border-light);
2026-01-06 15:43:31 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article-small figure {
2026-01-06 15:43:31 +01:00
aspect-ratio: 16/9;
display: flex;
overflow: hidden;
}
2026-01-06 17:14:32 +01:00
.card--article-small figure img {
2026-01-06 15:43:31 +01:00
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}
2026-01-06 17:14:32 +01:00
.card--article-small .content {
2026-01-06 15:43:31 +01:00
display: flex;
flex-direction: column;
padding-top: calc(var(--spacing) * 0.25);
2026-01-25 22:25:08 +01:00
padding-right: calc(var(--padding-inner) * 3);
2026-01-06 15:43:31 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article-small .title {
2026-01-06 15:43:31 +01:00
font-weight: normal;
font-size: var(--fs-medium);
margin-bottom: 0.25em;
text-wrap: balance;
max-width: 42ch;
2026-01-06 15:43:31 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article-small .title a {
2026-01-06 15:43:31 +01:00
text-decoration: none;
}
2026-01-06 17:14:32 +01:00
.card--article-small time {
2026-01-06 15:43:31 +01:00
flex-grow: 1;
color: var(--color-txt-light);
}
.card--article-small .keywords--small {
2026-01-06 15:43:31 +01:00
margin-top: 1.5em;
padding-bottom: calc(var(--spacing) * 0.25);
color: var(--color-txt-light);
z-index: 1000;
max-width: 32ch;
2026-01-06 15:43:31 +01:00
}
2026-01-06 17:14:32 +01:00
.card--article-small:hover .title {
2026-01-06 15:43:31 +01:00
text-decoration: underline;
}
2026-01-25 22:25:08 +01:00
.card--article-small .btn--go-to {
position: absolute;
right: var(--padding-inner);
bottom: calc(var(--padding-inner) - 3px);
}
.card--article-small .btn--go-to svg {
width: 15px;
height: 15px;
fill: var(--color-txt);
}
@media screen and (max-width: 768px) {
.card--article-small .btn--go-to svg {
width: 11px;
height: 11px;
}
}
@media screen and (max-width: 560px) {
.card--article-small .btn--go-to {
right: calc(var(--padding-inner) * 0.5);
bottom: calc(var(--padding-inner) * 0.25);
}
.card--article-small .btn--go-to svg {
width: 11px;
height: 11px;
}
}
.card--article-small:hover .btn--go-to {
animation: wiggle-left 0.8s ease-in-out;
}
2026-01-06 15:43:31 +01:00
@media screen and (max-width: 1080px) {
2026-01-06 17:14:32 +01:00
.card--article-small .title {
2026-01-06 15:43:31 +01:00
font-size: var(--fs-normal);
margin-bottom: 0;
}
}
@media screen and (max-width: 560px) {
2026-01-06 17:14:32 +01:00
.card--article-small .content {
2026-01-06 15:43:31 +01:00
padding: 0;
}
2026-01-06 17:14:32 +01:00
.card--article-small .title {
2026-01-06 15:43:31 +01:00
margin-bottom: 0;
}
2026-01-06 17:14:32 +01:00
.card--article-small time {
2026-01-06 15:43:31 +01:00
font-size: var(--fs-small);
margin-top: 0.25em;
}
.card--article-small .keywords--small {
font-size: var(--fs-small);
2026-01-06 15:43:31 +01:00
margin-top: 0.5em;
padding-bottom: 0;
}
}
.card--impact {
display: grid;
grid-gap: var(--padding-inner);
grid-template-columns: 2fr 3fr;
2026-01-06 17:14:32 +01:00
position: relative;
2026-01-06 15:43:31 +01:00
padding: calc(var(--spacing) * 0.5) 0;
border-bottom: var(--border-light);
2026-01-27 18:33:27 +01:00
container-type: inline-size;
container-name: impact;
2026-01-06 15:43:31 +01:00
}
.card--impact:first-of-type {
border-top: var(--border-light);
}
.card--impact .content {
grid-column: 2;
}
@media screen and (max-width: 560px) {
.card--impact:not([data-impact-type=media]) .content {
grid-column: span 2;
}
}
.card--impact .tag {
width: auto;
justify-self: start;
position: relative;
top: -5px;
}
.card--impact .content .see-more {
color: var(--color-txt-light);
text-decoration: none;
white-space: nowrap;
}
.card--impact .content .see-more::after {
content: " +";
}
.card--impact .open-graph__details {
grid-column: span 2;
}
.card--impact .open-graph__details summary,
.card--impact .open-graph__details .summary-inner {
display: flex;
align-items: center;
cursor: pointer;
gap: 0.5ch;
}
.card--impact .open-graph__details .arrow-details {
line-height: 0;
--size: 11px;
height: var(--size);
width: var(--size);
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
top: -2px;
}
.card--impact .open-graph__details .arrow-details svg {
transition: transform 0.2s ease-in;
width: 100%;
fill: var(--color-txt);
}
.card--impact .open-graph__details[open] .arrow-details svg {
transform: rotate(90deg);
}
.card--impact .open-graph__details summary {
color: var(--color-txt-light);
}
.card--impact .open-graph__details summary .arrow-details svg {
fill: var(--color-txt-light);
}
.card--impact .open-graph__details summary {
display: grid;
grid-gap: var(--padding-inner);
2026-01-06 17:14:32 +01:00
grid-template-columns: 2fr 3fr;
position: relative;
2026-01-06 15:43:31 +01:00
}
.card--impact .open-graph__details summary .summary-inner {
grid-column: 2;
}
.card--impact .open-graph__inner {
margin-top: calc(var(--spacing) * 0.5);
margin-bottom: calc(var(--spacing) * 1);
}
@media screen and (min-width: 768px) {
.card--impact .open-graph__inner {
margin-bottom: calc(var(--spacing) * 2);
}
}
.card--impact .open-graph__inner .card--open-graph {
margin-bottom: calc(var(--spacing) * 0.5);
}
2026-01-27 18:33:27 +01:00
@container impact (width < 420px) {
.date, .content, details {
font-size: 14px !important;
}
}
2026-01-25 22:25:08 +01:00
.card--folder {
position: relative;
2026-01-27 16:55:02 +01:00
max-width: var(--max-w-cards);
2026-01-25 22:25:08 +01:00
border: var(--border-light);
padding: var(--padding-inner);
display: grid;
grid-gap: var(--padding-inner);
grid-template-columns: 2fr 3fr;
position: relative;
position: relative;
}
.card--folder figure {
aspect-ratio: 16/9;
display: flex;
overflow: hidden;
}
.card--folder figure img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}
.card--folder .content {
display: flex;
flex-direction: column;
}
.card--folder .title {
flex-grow: 1;
font-weight: normal;
font-size: var(--fs-medium);
margin-bottom: 0.25em;
text-wrap: balance;
max-width: 42ch;
2026-01-27 16:55:02 +01:00
text-transform: uppercase;
padding-top: calc(var(--spacing) * 0.25);
2026-01-25 22:25:08 +01:00
}
.card--folder .title a {
text-decoration: none;
}
@media screen and (max-width: 768px) {
.card--folder .title {
font-size: var(--fs-normal);
}
}
.card--folder .short {
display: -webkit-box;
2026-01-27 16:55:02 +01:00
-webkit-line-clamp: 3;
2026-01-25 22:25:08 +01:00
-webkit-box-orient: vertical;
overflow: hidden;
}
.card--folder ul {
display: flex;
list-style: none;
gap: 1ch;
color: var(--color-txt-light);
padding-top: calc(var(--spacing) * 0.5);
}
.card--folder ul li + li::before {
content: "|";
padding-right: 1ch;
}
@media screen and (max-width: 768px) {
.card--folder ul {
font-size: var(--fs-small);
}
}
.card--folder .btn--go-to {
position: absolute;
right: calc(var(--padding-inner) * 1);
bottom: var(--padding-inner);
}
.card--folder .btn--go-to {
position: absolute;
right: var(--padding-inner);
bottom: calc(var(--padding-inner) - 3px);
}
.card--folder .btn--go-to svg {
width: 15px;
height: 15px;
fill: var(--color-txt);
}
@media screen and (max-width: 768px) {
.card--folder .btn--go-to svg {
width: 11px;
height: 11px;
}
}
@media screen and (max-width: 560px) {
.card--folder .btn--go-to {
right: calc(var(--padding-inner) * 0.5);
bottom: calc(var(--padding-inner) * 0.25);
}
.card--folder .btn--go-to svg {
width: 11px;
height: 11px;
}
}
.card--folder:hover .btn--go-to {
animation: wiggle-left 0.8s ease-in-out;
}
.card--folder:hover {
border-color: var(--color-txt);
}
@media screen and (max-width: 560px) {
.card--folder {
2026-01-27 16:55:02 +01:00
display: flex;
flex-direction: column;
2026-01-25 22:25:08 +01:00
padding: calc(var(--padding-inner) * 0.5);
2026-01-27 18:33:27 +01:00
background-color: yellow;
2026-01-25 22:25:08 +01:00
}
2026-01-27 16:55:02 +01:00
.card--folder .content {
display: contents;
}
.card--folder .title {
order: 1;
}
.card--folder figure {
order: 2;
}
2026-01-25 22:25:08 +01:00
.card--folder .short {
2026-01-27 16:55:02 +01:00
order: 3;
}
.card--folder ul {
order: 4;
2026-01-25 22:25:08 +01:00
}
}
2026-01-06 15:43:31 +01:00
.card--open-graph {
display: grid;
grid-gap: var(--padding-inner);
2026-01-06 17:14:32 +01:00
grid-template-columns: 2fr 3fr;
position: relative;
2026-01-06 15:43:31 +01:00
border: var(--border-light);
border-radius: var(--radius-small);
position: relative;
}
.card--open-graph figure {
grid-column: 1;
grid-row: 1;
}
.card--open-graph figure {
aspect-ratio: 16/9;
display: flex;
overflow: hidden;
}
.card--open-graph figure img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}
@media screen and (max-width: 560px) {
.card--open-graph figure {
height: 100%;
aspect-ratio: auto;
}
}
.card--open-graph .content {
padding: var(--padding-inner);
padding-left: 0;
grid-column: 2;
grid-row: 1;
}
.card--open-graph .site-name {
color: var(--color-txt-light);
font-size: var(--fs-small);
2026-01-27 18:33:27 +01:00
margin-bottom: 3px;
2026-01-06 15:43:31 +01:00
}
.card--open-graph .title {
font-size: var(--fs-normal);
font-weight: normal;
2026-01-27 18:33:27 +01:00
line-height: 1.1;
padding-top: 2px;
2026-01-06 15:43:31 +01:00
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 0.5em;
}
.card--open-graph .title a {
text-decoration: none;
}
.card--open-graph .description {
font-size: var(--fs-small);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
2026-01-27 18:33:27 +01:00
.card--open-graph:hover {
border-color: var(--color-txt);
}
.open-graph__inner {
container-type: inline-size;
container-name: opengraph;
2026-01-06 15:43:31 +01:00
}
2026-01-27 18:33:27 +01:00
@container opengraph (width < 500px) {
.card--open-graph .content {
padding: calc(var(--padding-inner) * 0.5);
}
.card--open-graph figure {
aspect-ratio: inherit;
}
}
2025-11-04 08:33:39 +01:00
#site-header {
2026-01-23 17:38:08 +01:00
z-index: var(--z-header);
2026-01-06 11:19:25 +01:00
--gap: 3ch;
2026-01-22 14:46:05 +01:00
position: fixed;
top: 0;
left: 0;
2025-11-04 08:33:39 +01:00
width: 100vw;
height: var(--header-h);
2026-01-06 11:19:25 +01:00
background-color: var(--color-bg);
2025-11-04 08:33:39 +01:00
padding: 0 var(--padding-body);
2026-01-23 17:38:08 +01:00
box-shadow: -1px 4px 10px 0px var(--color-bg);
2026-01-06 11:19:25 +01:00
}
#site-header .site-header__inner {
width: 100%;
height: 100%;
2026-01-22 14:46:05 +01:00
border-bottom: 1px solid var(--color-bg);
transition: border-color ease-in 0.5s;
2025-11-04 08:33:39 +01:00
display: flex;
align-items: center;
justify-content: space-between;
2026-01-06 11:19:25 +01:00
gap: var(--gap);
}
#site-header a {
text-decoration: none;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header a:hover {
color: var(--grey-200);
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header #site-title {
flex-grow: 2;
2026-01-27 16:55:02 +01:00
opacity: 0;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header #site-title svg {
width: 100px;
}
@media screen and (max-width: 768px) {
#site-header #site-title svg {
width: 80px;
}
2025-11-04 08:33:39 +01:00
}
2026-01-08 14:53:08 +01:00
#site-header .header__title-page {
2026-01-06 11:19:25 +01:00
display: none;
flex-grow: 2;
text-align: left;
white-space: nowrap;
2025-11-04 08:33:39 +01:00
overflow: hidden;
2026-01-06 11:19:25 +01:00
text-overflow: ellipsis;
text-transform: uppercase;
font-size: var(--fs-small);
line-height: 2;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header ul {
list-style-type: none;
2025-11-04 08:33:39 +01:00
display: flex;
align-items: center;
2026-01-06 11:19:25 +01:00
gap: var(--gap);
text-transform: uppercase;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header #theme-toggle {
width: var(--h-block);
height: var(--h-block);
2025-11-04 08:33:39 +01:00
display: flex;
align-items: center;
2026-01-06 11:19:25 +01:00
justify-content: center;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-header #theme-toggle svg {
width: 18px;
position: relative;
top: -2px;
}
#site-header #lang-toggle {
2025-11-04 08:33:39 +01:00
display: flex;
gap: 1ch;
}
2026-01-06 11:19:25 +01:00
#site-header #lang-toggle button:disabled {
color: var(--color-txt-light);
}
#site-header #menu-toggle {
cursor: pointer;
}
#site-header #menu-toggle svg {
width: 30px;
2026-01-25 22:25:08 +01:00
fill: var(--color-txt);
2026-01-06 11:19:25 +01:00
}
#site-header #menu-toggle .close {
display: none;
}
#site-header button:hover svg {
fill: var(--grey-200) !important;
}
@media screen and (max-width: 1080px) {
#nav-highlight {
display: none;
}
}
#site-menu {
position: fixed;
width: var(--menu-w);
height: calc(100dvh - var(--header-h));
height: calc(100vh - var(--header-h));
top: var(--header-h);
right: calc(var(--menu-w) * -1);
transition: right 0.3s ease-in;
background-color: var(--color-bg);
border-left: var(--border-light);
padding: var(--padding-body);
2026-01-25 19:40:55 +01:00
z-index: calc(var(--z-header) - 1);
2026-01-06 11:19:25 +01:00
display: flex;
flex-direction: column;
}
2026-01-25 19:40:55 +01:00
@media screen and (max-width: 768px) {
#site-menu {
transition: right 0.4s ease-in;
}
}
2026-01-06 15:43:31 +01:00
@media screen and (max-width: 560px) {
2026-01-06 11:19:25 +01:00
#site-menu {
width: 100vw;
2026-01-06 15:43:31 +01:00
right: -100vw;
2026-01-06 11:19:25 +01:00
}
}
2026-01-08 14:53:08 +01:00
#site-menu .search-form {
2026-01-06 11:19:25 +01:00
margin-top: calc(var(--spacing) * 1);
margin-bottom: calc(var(--spacing) * 1);
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-menu nav {
flex-grow: 1;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-menu nav ul {
list-style-type: none;
text-transform: uppercase;
}
#site-menu nav ul li {
font-size: var(--fs-normal);
}
#site-menu nav ul li a {
display: block;
text-decoration: none;
padding: 0.5em 0;
}
#site-menu nav ul li a:hover {
text-decoration: underline;
}
#site-menu nav ul .highlight {
text-transform: uppercase;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
body.menu-open #site-menu {
right: 0;
}
body.menu-open #menu-toggle .open {
display: none;
}
body.menu-open #menu-toggle .close {
display: block !important;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-footer {
background-color: var(--dark);
padding: calc(var(--padding-body) * 2) var(--padding-body);
2026-01-08 18:41:26 +01:00
z-index: 500;
2025-11-04 08:33:39 +01:00
}
#site-footer .site-footer__container {
max-width: var(--max-w-cards);
margin: 0 auto;
padding: 0 var(--padding-body);
}
2026-01-06 11:19:25 +01:00
#site-footer .logo {
margin-top: calc(var(--spacing) * 0.25);
margin-bottom: calc(var(--spacing) * 1);
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
#site-footer .logo svg {
width: 100px;
}
#site-footer p {
margin: calc(var(--spacing) * 0.5) 0;
}
#site-footer p a {
text-decoration: none;
}
#site-footer p a:hover {
text-decoration: underline;
color: currentColor;
}
#site-footer .p__small {
font-size: var(--fs-xsmall);
color: var(--grey-600);
}
#site-footer .footer__mentions p {
font-size: var(--fs-small);
color: var(--color-txt);
}
@media screen and (max-width: 768px) {
#site-footer .footer__socials {
margin-top: calc(var(--spacing) * 0.75);
padding-top: calc(var(--spacing) * 0.25);
border-top: var(--border-light);
}
#site-footer .footer__socials .list-socials {
margin-top: calc(var(--spacing) * 0.5);
margin-bottom: calc(var(--spacing) * 0.75);
}
#site-footer .footer__mentions {
border-top: var(--border-light);
padding-top: calc(var(--spacing) * 0.25);
}
#site-footer .footer__mentions p {
font-size: var(--fs-small);
text-align: center;
2025-11-04 08:33:39 +01:00
}
}
2026-01-06 11:19:25 +01:00
@media screen and (min-width: 768px) {
#site-footer .site-footer__container {
display: grid;
grid-template-columns: 3fr 2fr;
2026-01-06 11:19:25 +01:00
-moz-column-gap: calc(var(--spacing) * 2);
column-gap: calc(var(--spacing) * 2);
2025-11-04 08:33:39 +01:00
}
2026-01-06 16:15:49 +01:00
#site-footer .footer__socials .socials {
2026-01-06 11:19:25 +01:00
-moz-columns: 2;
columns: 2;
margin-top: calc(var(--spacing) * 1);
}
#site-footer .footer__mentions {
grid-column: span 2;
}
#site-footer .footer__mentions p {
margin-top: calc(var(--spacing) * 1);
2025-11-04 08:33:39 +01:00
}
}
2026-01-06 11:19:25 +01:00
body {
min-height: 100dvh;
min-height: 100vh;
2026-01-27 16:55:02 +01:00
width: 100vw;
overflow-x: hidden;
2026-01-06 11:19:25 +01:00
display: flex;
flex-direction: column;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
body main {
flex-grow: 1;
padding: 0 var(--padding-body);
padding-top: var(--header-h);
padding-bottom: calc(var(--spacing) * 2);
2026-01-27 16:55:02 +01:00
min-height: 100dvh;
min-height: 100vh;
}
.page__type {
height: calc(var(--h-block) * 0.75);
border-radius: var(--radius-small);
border: var(--border-medium);
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 1.5ch;
padding-top: 3px;
font-size: var(--fs-small);
line-height: 1;
background-color: var(--color-bg);
color: var(--color-txt-light);
overflow: hidden;
white-space: nowrap;
text-transform: uppercase;
}
main .page__header {
max-width: var(--max-w-cards);
margin-inline: auto;
margin-top: calc(var(--spacing) * 1);
margin-bottom: calc(var(--spacing) * 2);
}
main .page__header .page__title {
max-width: var(--max-w-content);
text-transform: uppercase;
font-weight: normal;
font-size: var(--fs-big);
line-height: var(--leading-tight);
margin-top: calc(var(--spacing) * 1);
margin-bottom: calc(var(--spacing) * 0.5);
text-wrap: balance;
}
main .page__header .description {
2026-01-27 18:51:58 +01:00
font-size: var(--fs-medium);
max-width: 58ch;
line-height: 1.1;
2026-01-27 16:55:02 +01:00
}
main .page__header .description-medium {
font-size: var(--fs-medium);
max-width: 58ch;
line-height: 1.1;
}
.container-cards {
max-width: var(--max-w-cards);
margin: 0 auto;
display: grid;
grid-gap: calc(var(--spacing) * 1);
}
@media screen and (min-width: 560px) {
.container-cards__investigations {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
grid-auto-rows: minmax(100px, auto);
2026-01-27 18:33:27 +01:00
grid-gap: var(--padding-body);
2026-01-27 16:55:02 +01:00
margin-bottom: 10vh;
}
}
@media screen and (max-width: 560px) {
.container-cards__investigations {
margin-bottom: 10vh;
}
2025-11-04 08:33:39 +01:00
}
2026-01-13 12:13:02 +01:00
.section--home {
margin: calc(var(--spacing) * 3);
2026-01-27 19:09:56 +01:00
min-height: calc(100vh - var(--header-h) * 2);
border-bottom: var(--border-light);
}
.section--home .section--inner {
display: grid;
grid-template-columns: 50% 50%;
}
.section--home .col-left {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.section--home .col-right {
width: 100%;
height: 100%;
background-color: yellow;
2026-01-13 12:13:02 +01:00
}
.section--home .title-section {
font-size: var(--fs-medium);
font-weight: normal;
text-transform: uppercase;
2026-01-27 19:09:56 +01:00
font-size: var(--fs-big);
margin-bottom: calc(var(--spacing) * 1);
}
.section--home .description {
font-size: var(--fs-medium);
line-height: 1.1;
margin-bottom: calc(var(--spacing) * 1.5);
2026-01-13 12:13:02 +01:00
}
2026-01-13 12:18:22 +01:00
#home__investigations .container-cards {
max-width: var(--max-w-container);
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
grid-auto-rows: minmax(100px, auto);
grid-gap: calc(var(--padding-body) * 1.5);
margin-bottom: 10vh;
}
2026-01-13 12:13:02 +01:00
#home__description .section--inner {
max-width: var(--max-w-container);
}
#home__description p {
font-size: var(--fs-big);
max-width: var(--max-w-content);
}
#home__description button {
margin-top: calc(var(--spacing) * 1);
}
#home__description button .icon svg {
width: 11px;
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main {
2025-11-04 08:33:39 +01:00
position: relative;
max-width: var(--max-w-cards);
margin-inline: auto;
}
2026-01-23 17:38:08 +01:00
[data-template=investigation-summary] main .panel-left {
width: calc((100vw - var(--max-w-cards) - var(--padding-body) * 2) * 0.5);
}
@media screen and (max-width: 1380px) {
[data-template=investigation-summary] main {
margin-left: auto;
margin-right: var(--padding-body);
}
[data-template=investigation-summary] main .panel-left {
width: calc(100vw - var(--max-w-cards) - var(--padding-body) * 2);
}
}
@media screen and (max-width: 1220px) {
[data-template=investigation-summary] main {
margin-left: auto;
margin-right: 0px;
width: calc(100% - var(--panel-w) * 0.5 - var(--padding-body));
}
[data-template=investigation-summary] main .panel-left {
width: calc(var(--panel-w) * 0.5);
}
}
[data-template=investigation-summary] main .section__article {
margin-top: calc(var(--spacing) * 3);
margin-bottom: calc(var(--spacing) * 3);
2025-11-04 08:33:39 +01:00
}
2026-01-25 22:25:08 +01:00
[data-template=investigation-summary] main .section__article:target {
padding-top: calc(var(--header-h) + var(--spacing) * 1);
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main .section__article a:hover {
2026-01-06 11:19:25 +01:00
color: var(--grey-200);
2025-11-04 08:33:39 +01:00
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main .section__article .section__title {
2026-01-06 11:19:25 +01:00
font-weight: normal;
text-transform: uppercase;
margin-bottom: calc(var(--spacing) * 1);
padding-right: 2ch;
text-wrap: balance;
2026-01-06 11:19:25 +01:00
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main #section__dl {
2026-01-06 11:19:25 +01:00
margin-top: calc(var(--spacing) * 1.5);
border-bottom: var(--border-light);
2025-11-04 08:33:39 +01:00
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main #section__dl .dl__group {
2026-01-06 11:19:25 +01:00
display: grid;
2026-01-06 17:14:32 +01:00
grid-gap: var(--padding-inner);
2026-01-06 15:43:31 +01:00
grid-template-columns: 2fr 3fr;
2026-01-06 17:14:32 +01:00
position: relative;
2026-01-06 11:19:25 +01:00
border-top: var(--border-light);
padding: calc(var(--spacing) * 0.5) 0;
2025-11-04 08:33:39 +01:00
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main #section__dl dt {
2026-01-06 11:19:25 +01:00
color: var(--color-txt-light);
padding-right: 1ch;
2025-11-04 08:33:39 +01:00
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main #section__dl ul:not(.keywords) {
2026-01-06 11:19:25 +01:00
list-style: none;
2025-11-04 08:33:39 +01:00
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main #section__dl ul:not(.keywords) li {
2026-01-06 11:19:25 +01:00
padding-bottom: 0.2em;
2025-11-04 08:33:39 +01:00
}
[data-template=investigation-summary] main #section__synthese {
max-width: var(--max-w-content);
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main #section__synthese p + p {
2026-01-06 11:19:25 +01:00
margin-top: 0.5em;
2025-11-04 08:33:39 +01:00
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main #section__synthese h4 {
2026-01-06 11:19:25 +01:00
margin-top: 2em;
margin-bottom: 1em;
font-size: var(--fs-normal);
font-weight: normal;
-webkit-text-decoration: 1px underline var(--color-txt-light);
text-decoration: 1px underline var(--color-txt-light);
text-underline-offset: 3px;
2025-11-04 08:33:39 +01:00
}
2026-01-23 17:38:08 +01:00
[data-template=investigation-summary] main .panel-left {
height: calc(100vh - var(--header-h));
position: fixed;
left: var(--padding-body);
padding-bottom: calc(var(--padding-body) * 1);
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
z-index: calc(var(--z-header) - 1);
}
[data-template=investigation-summary] main .panel-left #nav--page {
padding-bottom: var(--spacing);
width: calc(var(--panel-w) * 0.5);
}
[data-template=investigation-summary] main .panel-left #nav--page ul {
list-style: none;
}
[data-template=investigation-summary] main .panel-left #nav--page ul li {
text-align: center;
color: var(--color-txt-light);
margin-bottom: 4px;
font-weight: bold;
font-size: var(--fs-small);
}
[data-template=investigation-summary] main .panel-left #nav--page ul li a {
display: block;
padding: 5px 1ch;
text-decoration: none;
}
[data-template=investigation-summary] main .panel-left .btn--group {
width: calc(var(--panel-w) * 0.5);
display: flex;
flex-direction: column;
gap: calc(var(--spacing) * 0.25);
}
[data-template=investigation-summary] main .panel-left .btn--group button, [data-template=investigation-summary] main .panel-left .btn--group .dropdown {
flex-grow: 1;
width: 100%;
}
2026-01-06 11:19:25 +01:00
@media screen and (max-width: 768px) {
2026-01-23 17:38:08 +01:00
[data-template=investigation-summary] main {
width: 100%;
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main header {
margin-bottom: calc(var(--spacing) * 1);
2026-01-06 11:19:25 +01:00
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main .section__article {
margin-top: calc(var(--spacing) * 2);
margin-bottom: calc(var(--spacing) * 2);
2026-01-06 11:19:25 +01:00
}
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main #hero figcaption {
2026-01-06 11:19:25 +01:00
margin: 0 var(--padding-body);
}
2026-01-23 17:38:08 +01:00
[data-template=investigation-summary] main .panel-left {
2026-01-06 11:19:25 +01:00
display: none;
}
}
@media screen and (max-width: 560px) {
2026-01-06 17:14:32 +01:00
[data-template=investigation-summary] main #section__dl .dl__group {
2026-01-06 11:19:25 +01:00
-moz-column-gap: 1ch;
column-gap: 1ch;
2026-01-06 15:43:31 +01:00
font-size: var(--fs-small);
padding: calc(var(--spacing) * 0.25) 0;
2026-01-06 11:19:25 +01:00
}
}
2026-01-25 19:40:55 +01:00
@media screen and (max-width: 768px) {
[data-template=report] #toggle-panel {
display: none;
}
[data-template=report] #report__aside {
width: 100vw;
position: fixed;
top: 0px;
height: 100vh;
left: -100vw;
z-index: calc(var(--z-header) + 10);
transition: left 0.4s ease-in;
background: var(--color-bg);
}
[data-template=report] #report__aside .panel__header {
margin: 0 var(--padding-body);
border-bottom: var(--border-aside);
height: var(--header-h);
}
[data-template=report] #report__aside .panel__content {
height: calc(100dvh - var(--header-h));
height: calc(100vh - var(--header-h));
padding-bottom: 30vh;
}
[data-template=report] #report__aside .btn--group {
display: none;
}
[data-template=report] .panel-open #report__aside {
left: 0px;
}
2026-01-23 17:38:08 +01:00
}
2026-01-25 19:40:55 +01:00
@media screen and (min-width: 768px) {
[data-template=report] .report__header {
margin-inline: auto;
margin-top: calc(var(--spacing) * 1);
max-width: var(--max-w-cards);
margin-bottom: calc(var(--spacing) * 2.5);
}
[data-template=report] .report__content {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: var(--padding-body);
}
[data-template=report] .report__content .report__txt {
max-width: var(--max-w-content);
}
[data-template=report] .report__content .report__medias {
background-color: yellow;
}
[data-template=report] #toggle-panel {
position: fixed;
top: var(--header-h);
left: var(--padding-body);
z-index: calc(var(--z-header) + 100);
}
[data-template=report] #report__aside {
position: fixed;
top: var(--header-h);
left: var(--padding-body);
width: var(--panel-w);
height: calc(100vh - var(--header-h));
z-index: calc(var(--z-header) + 200);
background-color: var(--color-bg);
box-shadow: 4px 0px 4px 1px var(--color-bg);
}
[data-template=report] #report__aside .panel__header {
border: var(--border-aside);
height: calc(var(--h-block) * 1.5);
}
[data-template=report] #report__aside .panel__content {
height: calc(100% - var(--h-block) * 4.25);
padding-bottom: 80px;
}
[data-template=report] #report__aside {
left: calc(var(--panel-w) * -1);
transition: left ease-in-out 0.5s;
}
[data-template=report] #report {
padding-left: calc(var(--padding-body) * 2);
transition: padding-left ease-in-out 0.5s;
}
[data-template=report] .panel-open #report__aside {
left: var(--padding-body);
}
[data-template=report] .panel-open #report {
padding-left: calc(var(--panel-w) + var(--padding-body) * 1);
}
2026-01-23 17:38:08 +01:00
}
.report__header {
2026-01-13 11:57:28 +01:00
display: grid;
-moz-column-gap: var(--padding-inner);
column-gap: var(--padding-inner);
row-gap: calc(var(--spacing) * 1);
2026-01-23 14:21:26 +01:00
grid-template-columns: 65% 35%;
2026-01-13 11:57:28 +01:00
grid-template-rows: auto auto 1fr;
position: relative;
2026-01-08 18:41:26 +01:00
}
2026-01-23 17:38:08 +01:00
.report__header .report__title-group {
2026-01-13 11:57:28 +01:00
grid-row: 1;
2026-01-08 18:41:26 +01:00
grid-column: span 2;
}
2026-01-23 17:38:08 +01:00
.report__header .report__title-group .title {
2026-01-08 18:41:26 +01:00
text-transform: uppercase;
font-weight: normal;
font-size: var(--fs-big);
line-height: var(--leading-tight);
font-weight: normal;
margin-top: calc(var(--spacing) * 1);
2026-01-23 14:21:26 +01:00
text-wrap: balance;
2026-01-08 18:41:26 +01:00
}
2026-01-23 17:38:08 +01:00
.report__header .report__title-group .subtitle {
2026-01-08 18:41:26 +01:00
font-size: var(--fs-big);
line-height: var(--leading-tight);
font-weight: normal;
2026-01-23 14:21:26 +01:00
text-wrap: balance;
2026-01-08 18:41:26 +01:00
}
2026-01-23 17:38:08 +01:00
.report__header figure {
2026-01-23 14:21:26 +01:00
aspect-ratio: 16/9;
display: flex;
overflow: hidden;
2026-01-09 14:23:36 +01:00
}
2026-01-23 17:38:08 +01:00
.report__header figure img {
2026-01-09 14:23:36 +01:00
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
2026-01-23 14:21:26 +01:00
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
2026-01-09 14:23:36 +01:00
}
2026-01-23 17:38:08 +01:00
.report__header figure {
2026-01-13 11:57:28 +01:00
grid-row: 2;
grid-column: 2;
2026-01-23 14:21:26 +01:00
}
2026-01-23 17:38:08 +01:00
.report__header .report__dl {
2026-01-23 14:21:26 +01:00
grid-row: 2;
grid-column: 1;
align-self: end;
2026-01-08 18:41:26 +01:00
font-size: var(--fs-small);
border-bottom: var(--border-light);
align-items: flex-start;
}
2026-01-23 17:38:08 +01:00
.report__header .report__dl .dl__group {
2026-01-08 18:41:26 +01:00
display: grid;
grid-gap: var(--padding-inner);
grid-template-columns: 2fr 3fr;
position: relative;
border-top: var(--border-light);
padding: calc(var(--spacing) * 0.5) 0;
}
2026-01-23 17:38:08 +01:00
.report__header .report__dl dt {
2026-01-08 18:41:26 +01:00
color: var(--color-txt-light);
padding-right: 1ch;
}
2026-01-23 17:38:08 +01:00
.report__header .btn--group {
2026-01-23 14:21:26 +01:00
position: relative;
grid-row: 3;
grid-column: 1/3;
2026-01-09 14:19:23 +01:00
display: flex;
2026-01-13 11:57:28 +01:00
justify-content: start;
2026-01-23 14:21:26 +01:00
flex-wrap: wrap;
2026-01-13 11:57:28 +01:00
align-items: start;
2026-01-13 14:30:42 +01:00
gap: calc(var(--spacing) * 0.25);
2026-01-13 11:23:30 +01:00
}
2026-01-23 14:21:26 +01:00
2026-01-23 17:38:08 +01:00
.report__content .section-content {
2026-01-08 18:41:26 +01:00
margin-bottom: calc(var(--spacing) * 3);
}
2026-01-25 19:40:55 +01:00
.report__content .section-content:target {
padding-top: calc(var(--header-h) + var(--spacing) * 2);
}
@media screen and (max-width: 768px) {
.report__content .section-content:target {
padding-top: calc(var(--header-h) + var(--spacing) * 0.5);
}
}
2026-01-23 17:38:08 +01:00
.report__content .section-title {
2026-01-08 18:41:26 +01:00
font-size: var(--fs-medium);
margin-bottom: var(--spacing);
font-weight: normal;
text-transform: uppercase;
}
2026-01-23 17:38:08 +01:00
.report__content p {
2026-01-08 18:41:26 +01:00
margin: calc(var(--spacing) * 0.5) 0;
}
2026-01-23 17:38:08 +01:00
.report__content ul {
2026-01-08 18:41:26 +01:00
padding-left: 3ch;
}
2026-01-23 17:38:08 +01:00
.report__content:target {
2026-01-09 14:57:48 +01:00
padding-top: calc(var(--header-h) * 2 + var(--spacing)) !important;
}
2026-01-08 18:41:26 +01:00
2026-01-23 17:38:08 +01:00
#toggle-panel {
width: calc(var(--h-block) * 1);
padding: 0;
}
#report__aside {
2026-01-13 11:42:22 +01:00
--border-aside: var(--border-light);
2026-01-08 18:41:26 +01:00
}
2026-01-23 17:38:08 +01:00
#report__aside .panel__header {
2026-01-08 18:41:26 +01:00
display: flex;
display: flex;
align-items: center;
2026-01-23 17:38:08 +01:00
justify-content: flex-start;
gap: 0.5ch;
cursor: pointer;
2026-01-08 18:41:26 +01:00
}
2026-01-23 17:38:08 +01:00
#report__aside .panel__header .icon {
2026-01-08 18:41:26 +01:00
width: calc(var(--h-block) * 1.5);
2026-01-23 17:38:08 +01:00
display: flex;
align-items: center;
2026-01-08 18:41:26 +01:00
justify-content: center;
}
2026-01-23 17:38:08 +01:00
#report__aside .panel__header svg {
width: 16px;
fill: var(--color-txt);
}
#report__aside .panel__header .text {
padding-top: 5px;
}
#report__aside .panel__header .close {
position: absolute;
right: 0;
}
#report__aside .panel__header .close svg {
width: 10px;
fill: var(--grey-600);
}
#report__aside .panel__header:hover .close svg {
2026-01-08 18:41:26 +01:00
fill: var(--color-txt);
}
2026-01-23 17:38:08 +01:00
#report__aside .panel__content {
2026-01-08 18:41:26 +01:00
padding: var(--padding-body);
overflow: scroll;
2026-01-23 17:38:08 +01:00
scrollbar-width: none;
-ms-overflow-style: none;
2026-01-13 11:42:22 +01:00
border: var(--border-aside);
2026-01-09 14:37:44 +01:00
border-top: none;
2026-01-08 18:41:26 +01:00
}
2026-01-23 17:38:08 +01:00
#report__aside .panel__content::-webkit-scrollbar {
display: none;
}
#report__aside #toc ul {
2026-01-08 18:41:26 +01:00
list-style: none;
}
2026-01-23 17:38:08 +01:00
#report__aside #toc li {
2026-01-08 18:41:26 +01:00
font-size: var(--fs-small);
2026-01-13 11:42:22 +01:00
color: var(--color-txt-light);
}
2026-01-23 17:38:08 +01:00
#report__aside #toc li a {
2026-01-13 11:42:22 +01:00
display: block;
2026-01-08 18:41:26 +01:00
padding: 5px 1ch;
padding-top: 7px;
}
2026-01-23 17:38:08 +01:00
#report__aside #toc li.selected {
2026-01-08 18:41:26 +01:00
background-color: var(--grey-800);
2026-01-13 11:42:22 +01:00
color: var(--color-txt);
2026-01-08 18:41:26 +01:00
}
2026-01-23 17:38:08 +01:00
#report__aside #toc li:hover {
2026-01-09 14:57:48 +01:00
background-color: var(--grey-800);
}
2026-01-23 17:38:08 +01:00
#report__aside #toc .toc-level-1 {
2026-01-08 18:41:26 +01:00
margin-bottom: calc(var(--spacing) * 0.5);
font-weight: bold;
}
2026-01-23 17:38:08 +01:00
#report__aside #toc .toc-level-2 {
2026-01-08 18:41:26 +01:00
margin-bottom: calc(var(--spacing) * 0.25);
padding-left: 4ch;
}
2026-01-23 17:38:08 +01:00
#report__aside #toc a {
2026-01-08 18:41:26 +01:00
text-decoration: none;
}
2026-01-23 17:38:08 +01:00
#report__aside .btn--group {
2026-01-09 14:37:44 +01:00
margin-top: calc(var(--spacing) * 0.5);
2026-01-13 11:23:30 +01:00
display: flex;
gap: var(--padding-inner);
}
2026-01-23 17:38:08 +01:00
#report__aside .btn--group button {
flex-grow: 1;
2026-01-09 15:29:19 +01:00
}
2026-01-23 17:38:08 +01:00
#report {
2026-01-09 15:29:19 +01:00
--fig-outside: calc(var(--spacing)*2);
}
2026-01-23 17:38:08 +01:00
#report .container-figure {
width: 100%;
display: none;
2026-01-09 15:29:19 +01:00
}
2026-01-23 17:38:08 +01:00
#report .fig-simple {
2026-01-09 15:29:19 +01:00
height: calc(100vh - var(--header-h) - var(--spacing) * 2);
}
2026-01-23 17:38:08 +01:00
#report .fig-simple figure {
2026-01-09 15:29:19 +01:00
height: 100%;
width: 100%;
overflow: hidden;
}
2026-01-23 17:38:08 +01:00
#report .fig-simple figure img {
2026-01-09 15:29:19 +01:00
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
2026-01-27 18:33:27 +01:00
}
.content-folder {
max-width: var(--max-w-cards);
margin: 0 auto;
display: grid;
grid-gap: calc(var(--padding-body) * 1.5);
position: relative;
}
.content-folder .container-cards {
display: block;
align-self: start;
}
.content-folder #section__investigations article {
margin-bottom: calc(var(--spacing) * 1);
}
.content-folder .container__title {
font-weight: normal;
font-size: var(--fs-normal);
text-transform: uppercase;
margin-bottom: calc(var(--spacing) * 0.75);
}
@media screen and (max-width: 1080px) {
.content-folder #section__investigations {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: calc(var(--padding-inner) * 1.5) !important;
margin-bottom: calc(var(--spacing) * 3);
}
.content-folder #section__investigations article {
margin-bottom: 0px;
}
.content-folder #section__investigations .container__title {
grid-column: span 2;
margin-bottom: 0px;
}
2026-01-27 18:51:58 +01:00
.content-folder section:target {
padding-top: calc(var(--header-h) + var(--spacing));
}
2026-01-27 18:33:27 +01:00
}
@media screen and (min-width: 1080px) {
.content-folder {
grid-template-columns: 1fr 1fr;
}
.content-folder #nav-folder {
display: none;
}
.content-folder #section__investigations {
display: block;
margin-bottom: 0px;
}
.content-folder #section__investigations article {
margin-bottom: calc(var(--spacing) * 1);
}
}
@media screen and (max-width: 768px) {
.content-folder {
display: block;
}
.content-folder #section__investigations {
display: block;
}
.content-folder .container__title {
margin-bottom: calc(var(--spacing) * 0.5) !important;
}
}
#nav-folder {
display: flex;
margin-top: calc(var(--spacing) * -1);
margin-bottom: calc(var(--spacing) * 2);
}
#nav-folder svg {
width: 10px;
height: 10px;
transform: rotate(90deg);
}
@media screen and (min-width: 1080px) {
#nav-folder {
display: none;
}
2025-11-04 08:33:39 +01:00
}/*# sourceMappingURL=style.css.map */