/* **************** 
    Übersicht der Font-Awesome-Icons: https://fontawesome-v4.github.io/icons/index.html
   **************** */

:root {
    --color-accent: #d74a49;
    --color-primary: #183e4b;
    --color-primary-dark-20: color-mix(in srgb, var(--color-primary) 80%, black);
    --color-primary-dark-50: color-mix(in srgb, var(--color-primary) 50%, black);
    --color-primary-alt: #1b4552;
    --color-primary-alt-dark-20: color-mix(in srgb, var(--color-primary-alt) 80%, black);
    --color-primary-alt-dark-50: color-mix(in srgb, var(--color-primary-alt) 50%, black);
    --color-muted: #8ba0a4;
    --color-light: #eaeaea;

    /* RGBA-Ableitungen */
    --color-primary-40: rgba(24, 62, 75, .4);
    --color-primary-80: rgba(24, 62, 75, .8);
    --color-accent-15: rgba(215, 74, 73, .15);
    --color-accent-60: rgba(215, 74, 73, .6);
}

body {
    font-family: "Lato", Helvetica, Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-primary);
}

html {
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
}

/* Haupt-Überschriften */
h1, 
h2,
h3,
h4,
h5,
h6 {
    font-family: "Exo 2", "Lato", Helvetica, Arial, sans-serif !important;
    font-weight: 200;
    line-height: 1.3;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Größenanpassung */
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 0.9rem;
}

h6 {
    font-size: 0.8rem;
}

h1::after {
    content: "";
        display: block;
        width: 200px;
        height: 3px;
        background-color: var(--color-accent) ;
        margin-top: 10px;
}

h2::after {
        content: "";
        display: block;
        width: 150px;
        height: 2px;
        background-color: var(--color-accent) ;
        margin-top: 10px;
    }
    
h3::after,
h4::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: var(--color-accent) ;
    margin-top: 10px;
}

/* Absätze */
p {
    margin: 1rem 0;
}

/* Listen – dezente Bullets */
ul {
    margin: 1rem 0 1rem 1.2rem;
    padding: 0;
    list-style-type: disc; 
}

ul li {
    margin: 0.3rem 0;
}

ul li::marker {
    color: var(--color-muted);
}

/* Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.8rem;
    text-align: left;
}

th,
td {
    padding: 0.4rem;
    border-bottom: 1px solid var(--color-primary-40);
}

tr:nth-child(even) {
    background: #fafafa !important;
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: 0.4rem;
    border-bottom: 1px solid var(--color-primary-40);
}

table.dataTable thead>tr>th.sorting::before,
table.dataTable thead>tr>th.sorting::after {
    font-size: .65em !important;
}

.dataTables_wrapper .dataTables_filter input {
    border: 0px;
    border-bottom: 1px solid var(--color-primary-40);
    border-radius: 0px;
    margin: 1px;
    padding: 0px;
    font-size: 0.9em;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, border-width 0.2s ease;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border: 0px !important;
    border-bottom: 2px solid var(--color-primary) !important;
    outline: none;
    box-shadow: none;
}

table.dataTable thead>tr>th {
    border: 0px !important;
    border-bottom: 2px solid var(--color-primary-40) !important;
    transition: border-color 0.2s ease;
}

table.dataTable thead>tr>th:focus {
    outline: none;
    border: 0px !important;
    border-bottom: 2px solid var(--color-primary) !important;
}

.dataTables_wrapper .dataTables_filter label {
    font-size: 0.9em;
    padding-right: 3px;
}

.dataTables_wrapper .dataTables_filter label::before {
    content: "\f0b0";
    font-family: "FontAwesome";
    font-weight: var(--font-weight-normal);
    color: var(--color-muted);
    /* wichtig für solid */
    margin-right: 0.2em;
    margin-left: 0.1em;
    display: inline-block;
    transform: rotate(0deg);
    position: relative;
    top: 0px;
}

table.dataTable.no-footer {
    border: 0px;
}

/* Code-Blöcke */
pre,
code {
    font-family: "Fira Code", Consolas, monospace;
    background: var(--color-light);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

pre {
    padding: 1rem;
    overflow: auto;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid var(--color-primary-40);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--color-primary);
    background: var(--color-light);
}

b, strong {
    font-weight: 400;
}


/* =========================================
   Zweispaltiges Layout
   ========================================= */
.layout {
    display: flex !important;
    align-items: flex-start !important;
    gap: 2rem;
}

.content {
    flex: 1 1 60%;
}

.float-right {
    border-radius: 5%;
    padding: 0.3rem;
}

.float-right-300 {
    float: right;
    border-radius: 15px;
    margin: 0.3rem;
    max-width: 360px;
    width: 100%;
    height: auto;
}

.rounded-500 {
    border-radius: 15px;
    margin: 0.3rem;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    filter: saturate(0.5);
}

.border-1 {
    border: 1px solid var(--color-primary-40);
}

.toc-wrapper {
    flex: 0 0 25%;
}

/* ========= Sticky TOC Fix ========= */

/* Alle Container dürfen stickies nicht blockieren */
.section,
#body-wrapper.section,
.container,
.grid-xl,
.layout {
    overflow: visible !important;
    transform: none !important;
}

/* Der entscheidende Fix */
#page-wrapper {
    transform: none !important;
    overflow: visible !important;
}

.toc-wrapper {
    display: block !important;
}

/* TOC selbst */
.toc {
    position: fixed;
    top: 120px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

/* Mobil */
@media (max-width: 1024px) {
    .layout {
        flex-direction: column;
    }

    .toc-wrapper, .toc {
        display: none;
    }
}

.footer-imprint-link {
    display: none;
}

@media (max-width: 840px) {
    .footer-sitemap {
        display: none;
    }

    .footer-imprint-link {
        display: block;
    }
}

/* =========================================
   HEADER Styling
   ========================================= */

#header .logo img, .mobile-logo img {
    display: inline !important;
    vertical-align: middle;
    margin-right: 10px;
}

.mobile-logo .navbar-brand {
    font-size: 0.9rem;
    vertical-align: middle;
}

.navbar-title {
    font-family: "Exo 2", "Lato", Helvetica, Arial, sans-serif !important;
    font-size: 1.1rem;
    font-weight: 200;
}

#overlay .navbar-title {
    position: relative;
    top: 6px;
}

.navbar-title-empf {
    font-weight: 400;
}

.mobile-menu .button_container span {
    background: var(--color-primary-40) !important;
}

#header a {
    color: var(--color-primary);
    font-weight: 200;
    font-size: 0.9rem;
}

#header {
    border-bottom: 1px solid var(--color-primary-40);
}


/* =========================================
   MOBILE NAV Styling
   ========================================= */

.overlay {
    background: var(--color-light);
}

.overlay.open {
    opacity: 0.97;
}

.treemenu li {
    line-height: 1.5rem;
    margin: 0 0 1px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 1px;
    margin-left: 0px;
    padding: 5px 0;
    list-style: none;
    background: none !important;
}

.treemenu li.tree-empty>.toggler {
    cursor: default;
    opacity: .7;
}

.treemenu li.tree-empty>.toggler::before {
    content: '\2212' !important;
    line-height: 1.5em;
    padding-right: 6px;
    padding-left: 3px;
}

.treemenu .toggler::before {
    line-height: 1.5em;
    padding-right: 6px;
    padding-left: 3px;
}

.treemenu li a {
    color: var(--color-primary-alt) !important;
    text-decoration: underline;
    text-decoration-color: var(--color-muted);
}

.treemenu li a:hover,
.treemenu li a.active {
    color: var(--color-primary-alt) !important;
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
}


/* =========================================
   TOC Styling
   ========================================= */
.toc-wrapper .toc {
    padding: 1rem 1.2rem;
    font-size: 0.8rem;
    
}

.toc h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    text-transform: capitalize;
}

.toc a {
    color: var(--color-primary) !important;
    text-decoration: none;
    font-weight: 200;
}

.toc a.active {
    font-weight: 500;
}

.toc a:hover {
    color: var(--color-primary-dark-50);
    text-decoration: underline;
    text-decoration-color: var(--color-primary-dark-50);
}

.toc ul {
    margin-left: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: disc !important;
}

.toc li {
    margin-top: 0;
    margin-bottom: 0;
}

/* ==============================
   Primäre Links
   ============================== */
/* ---- 1) Grundfarben (Links, Secondary) ---- */
a {
    color: var(--color-primary-alt) !important;
    font-weight: 300;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--color-muted);
}

p a::before {
    content: "\f0c1";
    font-family: "FontAwesome";
    font-weight: 200;
    color: var(--color-muted);
    /* wichtig für solid */
    margin-right: 0.2em;
    margin-left: 0.1em;
    display: inline-block;
    transform: rotate(45deg);
    position: relative;
    top: 1px;
}

a.external-link::before {
    content: "\f08e";
    font-family: "FontAwesome";
    font-weight: 200;
    color: var(--color-muted);
    /* wichtig für solid */
    margin-right: 0.2em;
    margin-left: 0.1em;
    display: inline-block;
    transform: rotate(0deg);
    position: relative;
    top: 1px;
}

a.external-link {
    padding-right: 0 !important;
    background: none !important;
}

a.mailto::before {
    content: "\f003";
    font-family: "FontAwesome";
    font-weight: var(--font-weight-normal);
    color: var(--color-muted);
    /* wichtig für solid */
    margin-right: 0.2em;
    margin-left: 0.1em;
    display: inline-block;
    transform: rotate(0deg);
    position: relative;
    top: 1px;
}

a.mailto {
    padding-right: 0 !important;
    background: none !important;
}

a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
}

/* sekundäre Links (falls dein Theme eine Klasse für secondary links hat) */
a.secondary,
a.link--secondary,
.link-secondary {
    color: #ccc !important;
}

/* Navigation: Hover/Focus */
.dropmenu ul li a.active,
.dropmenu ul li a:focus,
.dropmenu ul li a:hover,
.navbar a:hover,
.navbar a:focus,
.navigation a:hover,
.navigation a:focus,
.site-nav a:hover,
.site-nav a:focus,
.header-links a:hover,
.header-links a:focus,
.header-links a:active {
    color: var(--color-primary-dark-50) !important;
    text-decoration: underline;
    text-decoration-color: var(--color-accent); 
}

/* Menü: verschachtelte Links hat */
.menu a:hover,
.menu a:focus,
.menu__link:hover,
.menu__link:focus {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
}

/* Transition deaktivieren */
.navbar a,
.navigation a,
.header-links a,
.menu a {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
}

/* Pseudo-Elemente entfernen/überschreiben */
.navbar a::before,
.navigation a::before,
.header-links a::before,
.menu a::before,
.navbar a::after,
.navigation a::after {
    display: none !important;
    content: none !important;
}

/* Fokus-Styles (Barrierefreiheit) ---- */
.navbar a:focus,
.navigation a:focus,
.header-links a:focus {
    outline: 2px solid rgba(34, 34, 34, 0.12);
    outline-offset: 2px;
}

#breadcrumbs span {
    padding: 0 0.05rem;
}

#breadcrumbs a:not(:first-child)::before,
#breadcrumbs span:not(:first-child)::before {
    padding-right: 0.2rem;
    content: none;
    color: var(--color-muted);
}

/* =========================================
   FOOTER Styling
   ========================================= */

#footer {
    color: var(--color-primary-alt);
    font-size: 0.7rem;
}

#footer p {
    text-align: left;
}

#footer p a::before {
    content: "";
    margin: 0;
}

#footer img {
    opacity: 0.4;
}

.footer-links {
    list-style-type: none !important;
}

.login input {
    border-color: #ccc;
    border: 1px solid;
    border-radius: 2px;
    margin-left: 1rem;
    padding: 2px;
}

.footer-sitemap {
    text-align: left;
}

.footer-subpages {
    padding-left: 0;
    margin-left: 5px;
    margin-top: 0;
    list-style-type: none;
}

#footer {
    border-top: 1px solid var(--color-primary-40);
    /* background-color: #fafafa; */
    background-image: url("../images/footer-bg/Footer-Background.png");
    background-size: cover;          /* skaliert proportional */
    background-position: center;     /* zentriert */
    background-repeat: no-repeat;
}

/* =========================================
   CONTEN Styling
   ========================================= */

/* --- 1.) Styling für Video */

.video-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1296px) {
    .video-responsive {
        width: 100%;
        min-width: 0;
        height: 56.25%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1296) {
    .video-responsive {
        width: 80vw;
        min-width: 0;
        height: 56.25%;
    }
}

@media screen and (max-width: 1024px) {
    .video-responsive {
        width: 95vw;
        min-width: 0;
        height: 56.25%;
    }
}

/* --- 2.) Styling der cv-timeline */

.cv-timeline-section {
    padding: 5px 5px;
}

.cv-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* ----- 2.1) Vertikale Linie */
.cv-timeline::before {
    content: "";
    position: absolute;
    width: 3px;
    background: var(--color-primary-40);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ----- 2.2) cv-timeline Item */
.cv-timeline-item {
    position: relative;
    width: 50%;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

/* ----- 2.3) Links */
.cv-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* ----- 2.4) Rechts */
.cv-timeline-item:nth-child(even) {
    left: 50%;
}

/* ----- 2.5) Icon Kreis */
.cv-timeline-icon {
    position: absolute;
    top: 40px;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    z-index: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cv-timeline-item:nth-child(odd) .cv-timeline-icon {
    right: -24px;
}

.cv-timeline-item:nth-child(even) .cv-timeline-icon {
    left: -24px;
}

/* ----- 2.6) Content Box */
.cv-timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(172, 179, 194, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* ----- 2.7) Jahres-Badge */
.cv-timeline-badge {
    display: inline-block;
    background: #fff;
    border: 2px solid var(--color-primary-40);
    color: var(--color-primary-alt);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
}

/* ----- 2.8) Headings */
.cv-timeline-content h3 {
    margin: 0 0 5px 0;
}

.cv-timeline-content h3::after {
    height: 0px !important
}

.cv-timeline-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--color-primary);
}

.cv-timeline-h4 {
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-primary-alt);
}

/* ----- 2.9) cv-timeline auf mobilen Geräten / kleinen Bildschirmen */

@media screen and (min-width: 840px) {
    .cv-timeline-item:nth-child(odd) .cv-timeline-location {
        position: relative;
        padding-left: 18px;
    }

    .cv-timeline-item:nth-child(odd) .cv-timeline-location::before {
        content: "\f041";
        font-family: "FontAwesome";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: -0.1em;
        font-size: 0.9em;
    }

    .cv-timeline-item:nth-child(even) .cv-timeline-location {
        position: relative;
        padding-right: 18px;
    }

    .cv-timeline-item:nth-child(even) .cv-timeline-location::after {
        content: "\f041";
        font-family: "FontAwesome";
        font-weight: 900;
        position: absolute;
        right: 0;
        top: -0.1em;
        font-size: 0.9em;
    }
}

/* Mobile */
@media screen and (max-width: 840px) {

    .cv-timeline::before {
        left: 23px;
    }

    .cv-timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
        margin-bottom: 50px;
        text-align: left !important;
        left: 0 !important;
    }

    .cv-timeline-icon {
        left: 0 !important;
    }

    .cv-timeline-location {
        position: relative;
        padding-left: 18px;
    }

    .cv-timeline-location::before {
        content: "\f041";
        font-family: "FontAwesome";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: -0.1em;
        font-size: 0.9em;
    }
}

/* --- 3.) Styling der (FCU) timeline */

:root {
    --timeline-label-width: 180px;
    --timeline-row-height: 50px;
}

.timeline-container {
    position: relative;
    background: white;
}

/* Timeline-Buttons */
.timeline-button {
    color: var(--color-primary);
    background-color: #fff;
    border: 0px solid var(--color-muted);
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: "FontAwesome";
    font-style: normal !important;
}

.timeline-zoomfactor {
    color: var(--color-primary);
    background-color: #fff;
    padding: 4px 8px 8px 8px;
    font-size: 0.6rem;
}

.timeline-button-container {
    padding: 6px;
    min-width: 100%;
    text-align: right;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* Wenn im Fullscreen */
.timeline-container:fullscreen {
    padding: 20px;
    background: white;
    width: 100vw;
    height: 100vh;
    overflow: auto;
}

.timeline-today-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-accent-15);
    z-index: auto;
    pointer-events: none;
}

#timelineContainer.pseudo-fullscreen {
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: white;
    overflow: auto;
}

/* Obercontainer */
.timeline-outer {
    display: grid;
    grid-template-columns: var(--timeline-label-width) 1fr;
}

/* Linke fixe Spalte */
.timeline-label-column {
    background: white;
    border-right: 1px solid var(--color-light);
}

.timeline-label-spacer {
    height: var(--timeline-row-height);
    border-bottom: 1px solid var(--color-light);
}

.timeline-label {
    height: var(--timeline-row-height);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    font-weight: 400;
    border-bottom: 1px solid var(--color-light);
    font-size: 0.7rem;
}

/* Rechte Scroll-Spalte */
.timeline-scroll-area {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Jahresleiste */
.timeline-scale {
    display: flex;
    height: var(--timeline-row-height);
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid var(--color-light);
    z-index: auto;
}

.year {
    text-align: center;
    font-size: 0.75rem;
    border-right: 1px solid var(--color-light);
}

/* Tracks */
.timeline-track {
    position: relative;
    height: var(--timeline-row-height);
    border-bottom: 1px solid var(--color-light);
    overflow: visible;
}

/* Balken */
.timeline-entry {
    position: absolute;
    top: 8px;
    height: 32px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--color-accent-60);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Abschlüsse */
.timeline-entry-certificate {
    position: absolute;
    top: 8px;
    height: 32px;
    padding-left: 20px;
    background: #fff;
}
.timeline-entry-certificate::before{
    content: '\f0f6';
    font-family: "FontAwesome";
    font-weight: 900;
    color: #daa520;
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
}

/* Kinder */
.timeline-entry-kid {
    position: absolute;
    top: 8px;
    height: 32px;
    padding-left: 20px;
    background: #fff;
}

.timeline-entry-kid::before {
    content: '\f1ae';
    font-family: "FontAwesome";
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
}

/* Hochzeit */
.timeline-entry-wedding {
    position: absolute;
    top: 8px;
    height: 32px;
    padding-left: 20px;
    background: #fff;
}

.timeline-entry-wedding::before {
    content: '\f08a';
    font-family: "FontAwesome";
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
}

.timeline-entry-building {
    position: absolute;
    top: 8px;
    height: 32px;
    padding-left: 20px;
    background: #fff;
    border-radius: 4px;
    border: 0px solid var(--color-accent-60);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.timeline-entry-building::before {
    content: '\f015';
    font-family: "FontAwesome";
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
}

.timeline-entry-label {
    position: sticky;
    left: 0;
    display: inline-block;
    min-width: 0;
    max-width: 100%;
    padding: 3px 2px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.65rem;
}

.timeline-entry-strike-through {
    border-radius: 4px;
    border: 1px solid var(--color-muted);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.timeline-entry-strike-through>.timeline-entry-label {
    color: var(--color-muted);
    font-style: italic;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--color-muted);
}

.until-now {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border-right: 0px;
}

.until-now::after {
    content: '\f061';
    font-family: "FontAwesome";
    font-weight: 900;
    color: var(--color-accent-60);
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%) translateX(65%);
}

.league {
    font-size: 0.5rem;
    color: var(--color-accent);
    font-weight: 400;
}

.timeline-footnotes {
    text-align: right;
    font-size: 0.6rem;
    color: var(--color-muted);
}

.timeline-footnote-number {
    font-size: 0.6rem;
    color: var(--color-muted);
}
