:root {
    --cell-height: 120px;
    /* Hauteur d'une ligne de la grille fine (pas de $unit minutes).
       120px = 30 min -> 20px = 5 min. Adapter si on change $unit côté PHP. */
    --unit-height: calc(var(--cell-height) / 6);
    --column-width: 250px;
    --left-column-width: 120px;
    --fixed-header-height: 60px;
    --right-fixed-width: 50px;
    --theme-color: #029490;
    --theme-bg-grey: #f3f7f8;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}  

body {
    font-family: 'Encode Sans Semi Condensed';
    font-style: normal;
    color: #1a171b;
    font-size: 14px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
}

body.as-body-search {
    overflow: auto;
}

.uk-tooltip {
    background-color: #000;
    color: #fff;
}

.uk-tooltip:after {
    background-color: #000;
}

.grid-container {
    display: grid;
    grid-template-columns: var(--left-column-width) 1fr;
    height: calc(100vh - 110px);
    /* Sert d'ancre aux boutons #prevBtn/#nextBtn (position:absolute), qui sont
       sortis de .scrollable-rows : ils se calent ainsi sur les bords de l'écran
       (left:10px / right:10px) et, hors du calque de scroll tactile iOS, ne sont
       plus masqués par la colonne de gauche sticky. */
    position: relative;
}

.left-column {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr var(--right-fixed-width);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    height: 100%;
    /* Changé de 100vh à 100% */
    overflow: hidden;
}

/* .left-main-column,
.left-fixed-column { */

.left-main-column {
    display: flex;
    flex-direction: column;
    /* Plus de scroll propre : ces colonnes suivent .scrollable-rows (piloté en JS
       via scrollTop). overflow:hidden évite qu'elles génèrent leurs propres
       évènements de scroll (source de feedback/saccade sur mobile). */
    overflow-y: hidden;
    height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.left-fixed-column {
    /* display: flex; */
    flex-direction: column;
    overflow-y: hidden;
    height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollable-rows {
    overflow-x: hidden;
    overflow-y: auto;
    /* Doit avoir exactement la même hauteur scrollable que la règle des heures
       (left-main-column) pour rester synchronisé jusqu'en bas. */
    height: calc(100% - var(--fixed-header-height));
    background: transparent url(diago1.png);
    background-size: 500px 500px;
    /* opacity: .2; */
    /* Scroll mobile fluide : momentum iOS + panning vertical géré nativement
       par le compositeur (les swipes horizontaux restent gérés en JS, mais il
       n'y a pas de scroll horizontal natif à intercepter). */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.left-main-column::-webkit-scrollbar,
.left-fixed-column::-webkit-scrollbar,
.scrollable-rows::-webkit-scrollbar {
    display: none;
}

.left-header {
    height: var(--fixed-header-height);
    min-height: var(--fixed-header-height);
    background-color: #bfd7d7;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 1px solid #ddd;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
}

.left-block {
    position: relative;
    /* Pas de 15 min sur la règle des heures (30 min = --cell-height). */
    height: calc(var(--cell-height) / 2);
    min-height: calc(var(--cell-height) / 2);
    /* outline: 1px solid #ddd; */
    box-shadow: inset 0 0 0 1px #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.left-block div {
    position: absolute;
    right: 5px;
}

.left-block div:first-child {
    top: 0;
}

.left-block div:last-child {
    bottom: 0;
}

.left-fixed-column .left-block {
    box-shadow: none;
}

/* Colonne des pauses : même pas fin (--unit-height = $unit min) que les colonnes
   de salles, pour que les icônes s'alignent exactement sur les sessions. */
.left-fixed-grid {
    display: grid;
    grid-auto-rows: var(--unit-height);
}

.left-block-break {
    display: grid;
    /* Longhands en repli : la propriété raccourcie place-items n'est arrivée
       que dans Safari 11 / iOS 11, alors que la grille marche dès iOS 10.3. */
    align-items: center;
    justify-items: center;
    place-items: center;
    position: relative;
    /* La hauteur est fixée par grid-row: span N (N = durée / $unit). */
}

.right-column {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fixed-row {
    display: grid;
    grid-template-columns: repeat(13, var(--column-width));
    background-color: #f2f2f2;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    transition: transform 0.5s ease;
    height: var(--fixed-header-height);
}

.inner-grid {
    display: grid;
    grid-template-columns: repeat(13, var(--column-width));
    align-items: start;
    transition: transform 0.5s ease;
}

/* Une colonne de salle : grille verticale au pas fin (--unit-height).
   Les sessions s'étendent via grid-row: span N (N = durée / $unit). */
.room-col {
    display: grid;
    grid-auto-rows: var(--unit-height);
}

.grid-item {
    position: relative;
    min-height: var(--unit-height);
    outline: 1px solid #fff;
    /* display: flex;
align-items: center;
justify-content: center; */
    display: grid;
    /* Longhands en repli : la propriété raccourcie place-items n'est arrivée
       que dans Safari 11 / iOS 11, alors que la grille marche dès iOS 10.3. */
    align-items: center;
    justify-items: center;
    place-items: center;
    text-align: center;
    padding: 10px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

/* Nom de la session (index + recherche). */
.as-session-name {
    line-height: 1.2;
}

/* Badge catégorie : bas-droit de chaque card de session (index + recherche).
   Fond noir semi-transparent -> se rend automatiquement « plus foncé » que la
   couleur de la card sous-jacente, quelle que soit la catégorie. */
.as-session-cat {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 90%;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.28);
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixed-row .grid-item {
    background-color: #bfd7d7;
    height: var(--fixed-header-height);
    font-weight: bold;
}

.span-2 {
    height: calc(var(--cell-height) * 2);
}

.span-3 {
    height: calc(var(--cell-height) * 3);
}

.span-4 {
    height: calc(var(--cell-height) * 4);
}

.span-3 {
    height: calc(var(--cell-height) * 3);
}

.span-4 {
    height: calc(var(--cell-height) * 4);
}

.span-5 {
    height: calc(var(--cell-height) * 5);
}

#nextBtn,
#prevBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    /* background-color: #007bff; */
    background-color: #ff5b00;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}

#nextBtn {
    right: 10px;
}

#prevBtn {
    left: 10px;
}

#nextBtn:hover,
#prevBtn:hover {
    opacity: 0.8;
}

.as-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    /* min-height: 100px; */
    /* place-items: center; */
}

.as-header>div {
    display: flex;
    align-items: center;
    min-height: 100%;
}

.as-left-column {
    text-align: left;
    justify-content: flex-start;
    padding-left: 20px;
}

.as-center-column {
    text-align: center;
    justify-content: center;
}

.as-right-column {
    text-align: right;
    justify-content: flex-end;
    padding-right: 20px;
}

.as-right-column a {
    padding-right: 10px;
}

.as-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5px 10px;
    color: #fff;
    background-color: var(--theme-color);
}

.as-search-back {
    color: var(--theme-color);
    transition: all 350ms ease-in-out;
}

.as-search-back:hover {
    color: #005a57;
}

.as-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.as-search .uk-search {
    margin-top: 0;
}

.as-legend-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 30px;
    padding: 0 12px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font: inherit;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: all 350ms ease-in-out;
}

.as-legend-btn:hover,
.as-legend-btn:focus {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    outline: none;
}

.as-legend-icon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.as-legend-icon i {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 1px;
}

.as-legend-icon i:nth-child(1) { background-color: #e74c3c; } /* rouge */
.as-legend-icon i:nth-child(2) { background-color: #2ecc71; } /* vert */
.as-legend-icon i:nth-child(3) { background-color: #5dade2; } /* bleu clair */
.as-legend-icon i:nth-child(4) { background-color: #9b59b6; } /* violet */

/* Lien "Back to website" : version courte affichée seulement sous 425px */
.as-link-short {
    display: none;
}

@media screen and (max-width: 424px) {
    .as-link-full {
        display: none;
    }
    .as-link-short {
        display: inline;
    }
}

/* Très petits écrans (320–360px) : la colonne de salle (250px) dépasse la zone
   visible (largeur écran − 120px de colonne gauche) et le texte des sessions est
   coupé à droite. On réduit la largeur de colonne à 200px, ce qui tient dans
   l'espace disponible jusqu'à 320px (320 − 120 = 200). Rien n'est touché au-dessus
   de 360px (la colonne reste à 250px).
   NB : valeur en px concrète obligatoire — le JS fait parseInt(getPropertyValue(
   '--column-width')) pour la pagination/swipe ; un calc() renverrait NaN. */
@media screen and (max-width: 360px) {
    :root {
        --column-width: 200px;
    }
}

.as-modal-legend {
    width: 720px;
    max-width: 100%;
}

.as-modal-legend .uk-modal-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--theme-color);
}

.as-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.as-legend-item {
    padding: 14px 12px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    line-height: 1.3;
}

.as-search .uk-search-input {
    color: #fff;
    height: 30px;
}

.as-search .uk-search-input::placeholder {
    color: #fff;
    opacity: 1;
}

.as-search .uk-search-icon-flip {
    color: #fff;
}

.as-search .uk-search-default .uk-search-input:focus {
    background-color: rgba(255, 255, 255, .1);
    border-color: #fff5;
}

/* .as-date {
    padding: 5px 10px;
    color: #fff;
    background-color: var(--theme-color);
} */

.as-date .uk-button-default {
    color: #fff;
    border: none;
}

.as-date .uk-dropdown {
    background-color: var(--theme-color);
}

.as-date .uk-dropdown-nav>li>a {
    color: #fffb;
    transition: all 350ms ease-in-out;
}

.as-date .uk-dropdown-nav>li.uk-active>a,
.as-date .uk-dropdown-nav>li>a:hover {
    color: #fff;
}

.as-icon-coffee img,
.as-icon-cocktail img {
    padding: 0 6px;
}

.as-icon-coffee {
    position: relative;
    /* border-top: 1px solid #000;
    border-bottom: 1px solid #000; */
}

.as-icon-coffee::before {
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: #000;
    z-index: -1;
}

.as-icon-cocktail {
    position: relative;
    /* border-top: 1px solid #4790bd;
    border-bottom: 1px solid #4790bd; */
}

.as-icon-cocktail::before {
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: #4790bd;
    z-index: -1;
}

.as-icon-meal {
    position: relative;
}

.as-icon-meal::before {
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: #000;
    z-index: -1;
}

/* Icônes Font Awesome (repas, cocktail) : glyphe blanc sur un rond coloré. */
.as-icon-meal i,
.as-icon-cocktail i {
    font-size: 18px;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Couleur du rond, propre à chaque type de pause (idem trait vertical). */
.as-icon-meal i {
    background-color: #000;
}

.as-icon-cocktail i {
    background-color: #4790bd;
}

.as-session-time {
    margin-top: 4px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0.85;
    white-space: nowrap;
}

.as-btn-more {
    display: block;
    width: fit-content;
    padding: 10px 20px;
    margin: 10px auto 0;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #0004;
    color: #fffb;
    text-decoration: none;
    transition: all 350ms ease-in-out;
}

.as-btn-more:hover {
    background-color: #0001;
    color: #fff;
    text-decoration: none;
}

.grid-item.as-cell-empty {
    outline: none;
    background-color: transparent;
    /* background: transparent url(diago1.png);
    background-size: 500px 500px;
    opacity: .2; */
}

.as-cell-olive {
    background-color: #7bb6a1;
    color: #fff;
}

.as-cell-turkoise {
    background-color: #387e79;
    color: #fff;
}

.as-cell-blue {
    background-color: #336da2;
    color: #fff;
}

.as-cell-green {
    background-color: #009593;
    color: #fff;
}

.as-cell-dark-green {
    background-color: #017572;
    color: #fff;
}

.as-cell-green-2 {
    background-color: #4c5470;
    color: #fff;
}

.as-cell-orange {
    background-color: #c16a08;
    color: #fff;
    color: #fff;
}

.as-search-container {
    padding: 50px 0;
    display: block;
    max-width: 1200px;
    margin: auto;
}

.as-search-text {
    text-align: center;
    text-transform: uppercase;
}

.as-search-result {
    margin: auto;
    width: fit-content;
}

.as-search-result .as-day {
    display: inline-block;
    padding: 10px 30px;
    margin-top: 50px;
    color: #fff;
    background-color: var(--theme-color);
}

.as-search-result .as-grid {
    display: grid;
    /* grid-template-columns: 150px 200px 300px; */
    /* width: fit-content; */
    grid-template-columns: .5fr .5fr 1fr;
    max-width: 600px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #0004;
}

.as-search-result .as-grid>div {
    position: relative;
    display: grid;
    /* Longhands en repli : la propriété raccourcie place-items n'est arrivée
       que dans Safari 11 / iOS 11, alors que la grille marche dès iOS 10.3. */
    align-items: center;
    justify-items: center;
    place-items: center;
    min-height: var(--cell-height);
    padding: 20px;
    border-right: 1px solid #0004;
    border-bottom: 1px solid #0004;
}

.as-search-result .as-grid>div:nth-child(3n) {
    border-right: none;
}

.as-search-result .as-grid>div:nth-last-child(-n+3) {
    border-bottom: none;
}

.uk-modal-dialog iframe {
    width: 100%;
}

/* Popup "Learn more" : 1024px max, 100% de la largeur disponible en dessous */
[id^="modal-programme-"] .uk-modal-dialog {
    width: 1024px;
    max-width: 100%;
}

/* UIkit colore <em> en rouge (#f0506e) par défaut : on neutralise pour que
   le texte en italique garde la couleur normale du paragraphe. */
em,
i {
    color: inherit;
}

/* Numéro des listes <ol><li> en gras (uniquement le marqueur, pas le texte). */
[id^="modal-programme-"] li::marker {
    font-weight: 700;
}

@media screen and (max-width: 480px) {
    .as-bar {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .as-search {
        justify-content: center;
        margin-bottom: 10px;
    }
    .as-legend-icon {
        display: none;
    }
    .as-legend-btn {
        gap: 0;
    }
    .as-legend-grid {
        grid-template-columns: 1fr;
    }
    .as-modal-legend .uk-modal-title {
        font-size: 18px;
    }
}

/* Tableau "oralsession" dans le popup "Learn more" */
.oralsession {
    border-collapse: collapse;
    border: none;
}

.oralsession td,
.oralsession th {
    border: none;
}

/* 1re ligne : fond #772c87, texte blanc */
.oralsession tr:nth-child(1) td {
    background-color: #772c87;
    color: #fff;
}

/* 2e ligne : fond #9a59b5, texte blanc */
.oralsession tr:nth-child(2) td {
    background-color: #9a59b5;
    color: #fff;
}

/* 3e ligne : fond #ecd4f6, texte #772c87 */
.oralsession tr:nth-child(3) td {
    background-color: #ecd4f6;
    color: #772c87;
}

/* Lignes suivantes : texte noir, fond alterné en commençant par le blanc */
.oralsession tr:nth-child(n+4) td {
    color: #000;
    background-color: #fff;
}

.oralsession tr:nth-child(n+4):nth-child(odd) td {
    background-color: #f8f2fc;
}

/* 1re colonne : pas de retour à la ligne */
.oralsession td:first-child {
    white-space: nowrap;
}

/* Dernière colonne : l'en-tête "Authors (Surname I.)" ne se coupe pas,
   ce qui fixe la largeur minimale de la colonne (les auteurs peuvent passer à la ligne) */
.oralsession tr:first-child td:last-child {
    white-space: nowrap;
}

/* --- Mobile : la table .oralsession passe en cartes empilées ---
   En dessous de 640px les 5 colonnes ne tiennent plus dans la modal (100% de
   large). Chaque présentation devient une carte « libellé : valeur » ; les
   en-têtes de colonnes sont répétés via ::before, et la 1re colonne (le nom de
   session, redondant avec le bandeau du haut) est masquée. */
@media screen and (max-width: 640px) {
    .oralsession,
    .oralsession tbody,
    .oralsession tr,
    .oralsession td {
        display: block;
        width: auto !important;
    }

    /* Ligne d'en-tête masquée : ses libellés sont repris en ::before */
    .oralsession tr:nth-child(1) {
        display: none;
    }

    /* Lignes 2 et 3 : bandeaux (nom de session / track) */
    .oralsession tr:nth-child(2),
    .oralsession tr:nth-child(3) {
        display: flex;
        flex-wrap: wrap;
        gap: .25em .6em;
        padding: 8px 12px;
    }
    .oralsession tr:nth-child(2) {
        justify-content: space-between;
        font-weight: 600;
        border-radius: 8px 8px 0 0;
    }
    .oralsession tr:nth-child(2) td,
    .oralsession tr:nth-child(3) td {
        padding: 0;
        background: transparent !important;
        white-space: normal;
    }

    /* Lignes de présentation : une carte par présentation */
    .oralsession tr:nth-child(n+4) {
        margin: 10px 0;
        padding: 4px 12px;
        border: 1px solid #ecd4f6;
        border-radius: 8px;
        background: #fff;
    }
    .oralsession tr:nth-child(n+4):nth-child(odd) {
        background: #f8f2fc;
    }

    /* 1re colonne masquée (nom de session redondant) */
    .oralsession tr:nth-child(n+4) td:first-child {
        display: none;
    }

    /* Chaque cellule = une ligne « libellé : valeur » */
    .oralsession tr:nth-child(n+4) td {
        display: flex;
        gap: .6em;
        padding: 4px 0;
        background: transparent !important;
        white-space: normal;
        /* break-word : plus compatible (vieux Safari iOS) que la valeur
           "anywhere", pour le même effet sur des chaînes d'auteurs longues. */
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .oralsession tr:nth-child(n+4) td::before {
        flex: 0 0 5em;
        font-weight: 600;
        color: #772c87;
    }
    .oralsession tr:nth-child(n+4) td:nth-child(2)::before { content: "#"; }
    .oralsession tr:nth-child(n+4) td:nth-child(3)::before { content: "ID"; }
    .oralsession tr:nth-child(n+4) td:nth-child(4)::before { content: "Title"; }
    .oralsession tr:nth-child(n+4) td:nth-child(5)::before { content: "Authors"; }
}

/* Tableau "tableposter" dans le popup "Learn more" (6 colonnes : Day/Time,
   Location/Station, #, ID, Poster title, Authors). Même principe que .oralsession. */
.tableposter {
    border-collapse: collapse;
    border: none;
}

.tableposter td,
.tableposter th {
    border: none;
}

/* 1re ligne : fond #253f60, texte blanc */
.tableposter tr:nth-child(1) td {
    background-color: #253f60;
    color: #fff;
}

/* 2e ligne : fond #1f4e78, texte blanc */
.tableposter tr:nth-child(2) td {
    background-color: #1f4e78;
    color: #fff;
}

/* 3e ligne : fond #d6e4ef, texte #253f60 */
.tableposter tr:nth-child(3) td {
    background-color: #d6e4ef;
    color: #253f60;
}

/* Lignes suivantes : texte noir, fond alterné en commençant par le blanc */
.tableposter tr:nth-child(n+4) td {
    color: #000;
    background-color: #fff;
}

.tableposter tr:nth-child(n+4):nth-child(odd) td {
    background-color: #f5f5f5;
}

/* 1re colonne (Day / Time) : pas de retour à la ligne */
.tableposter td:first-child {
    white-space: nowrap;
}

/* Dernière colonne : l'en-tête "Authors (Surname I.)" ne se coupe pas,
   ce qui fixe la largeur minimale de la colonne (les auteurs peuvent passer à la ligne) */
.tableposter tr:first-child td:last-child {
    white-space: nowrap;
}

/* --- Mobile : la table .tableposter passe en cartes empilées ---
   Sous 640px les 6 colonnes ne tiennent plus dans la modal. Chaque poster
   devient une carte « libellé : valeur », y compris Day/Time et
   Location/Station. */
@media screen and (max-width: 640px) {
    .tableposter,
    .tableposter tbody,
    .tableposter tr,
    .tableposter td {
        display: block;
        width: auto !important;
    }

    /* Ligne d'en-tête masquée : ses libellés sont repris en ::before */
    .tableposter tr:nth-child(1) {
        display: none;
    }

    /* Lignes 2 et 3 : bandeaux (session / track) */
    .tableposter tr:nth-child(2),
    .tableposter tr:nth-child(3) {
        display: flex;
        flex-wrap: wrap;
        gap: .25em .6em;
        padding: 8px 12px;
    }
    .tableposter tr:nth-child(2) {
        justify-content: space-between;
        font-weight: 600;
        border-radius: 8px 8px 0 0;
    }
    .tableposter tr:nth-child(2) td,
    .tableposter tr:nth-child(3) td {
        padding: 0;
        background: transparent !important;
        white-space: normal;
    }

    /* Lignes de poster : une carte par poster */
    .tableposter tr:nth-child(n+4) {
        margin: 10px 0;
        padding: 4px 12px;
        border: 1px solid #d6e4ef;
        border-radius: 8px;
        background: #fff;
    }
    .tableposter tr:nth-child(n+4):nth-child(odd) {
        background: #f5f5f5;
    }

    /* Chaque cellule = une ligne « libellé : valeur » */
    .tableposter tr:nth-child(n+4) td {
        display: flex;
        gap: .6em;
        padding: 4px 0;
        background: transparent !important;
        white-space: normal;
        /* break-word : plus compatible (vieux Safari iOS) que la valeur
           "anywhere", pour le même effet sur des chaînes d'auteurs longues. */
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .tableposter tr:nth-child(n+4) td::before {
        flex: 0 0 5em;
        font-weight: 600;
        color: #253f60;
    }
    .tableposter tr:nth-child(n+4) td:nth-child(1)::before { content: "When"; }
    .tableposter tr:nth-child(n+4) td:nth-child(2)::before { content: "Location"; }
    .tableposter tr:nth-child(n+4) td:nth-child(3)::before { content: "#"; }
    .tableposter tr:nth-child(n+4) td:nth-child(4)::before { content: "ID"; }
    .tableposter tr:nth-child(n+4) td:nth-child(5)::before { content: "Title"; }
    .tableposter tr:nth-child(n+4) td:nth-child(6)::before { content: "Authors"; }
}