.search-object-detail-bloc > div {
padding: 60px 0;
}

.anchor-section {
height: 0;
width: 0;
overflow: hidden;
opacity: 0;
}
.mod-eventflash__no-events-text {
    grid-column: 1 / 4;
}
* {
  box-sizing: border-box;
}

.flex-container {
  display: flex;
  flex-direction: row;
}

.flex-item {
  padding: 10px;
  text-align: center;
  width: 100%;
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .flex-container {
    flex-direction: column;
  }
}

/******************************* Mur des donateurs **************************************************/
:root {
    --fircm-magenta: #D11D5B;
    --fircm-bleu: #122CBA;
    --border-grey: #E6E7E8;
    --wall-height: 1225px;
}

body {
    line-height: 1.5;
    margin: 0;
}
/* LE CONTENEUR MAÎTRE */
.donor-wall-flow {
    height: var(--wall-height);
    column-count: 2;            /* Max 2 colonnes */
    column-width: 475px;
    column-gap: 50px;
    column-fill: auto;
    column-rule: 1px solid var(--border-grey);
    padding: 0 40px;
}
/* Structure de chaque catégorie */
.category-group {
    break-inside: avoid-column;
    margin-bottom: 40px;
}

.category-title {
    color: var(--fircm-magenta);
    font-size: 1.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--fircm-magenta);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
/* Style des listes de noms */
.donor-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.donor-list li {
    padding: 7px 0;
    border-bottom: 1px solid var(--border-grey);
    font-size: 1.1rem;
    color: #21242F;
}

.donor-list.highlight li {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--fircm-bleu);
}
/* CONFIGURATION MOBILE (Écrans de moins de 600px) */
@media (max-width: 600px) {
    .donor-wall-flow {
        height: auto;
        column-count: 1;
        column-width: auto;
        column-rule: none;
        padding: 0 20px;
    }
}
/******************************* ARTICLES RECHERCHEURS **************************************************/
/* Container principal style IRCM */
.ircm-pubmed-box {
    max-width: 850px;
    margin: 20px auto;
    padding: 25px;
}

.ircm-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e4e8;
    padding-bottom: 10px;
}

.ircm-count {
    color: #393c4a;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Barre de recherche */
.ircm-search-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #393c4a;
    border-radius: 0;
    font-size: 14px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
/* Zone de défilement (Scroll) */
.ircm-scroll-area {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
    scrollbar-width: thin;
}
/* Style d'un article */
.ircm-pub-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #E6E7E8;
    padding-bottom: 5px;
}

.ircm-pub-link {
    color: #0091d1;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.ircm-citation-text {
    color: #393C4A;
    line-height: 1.6;
    margin-bottom: 10px;
}