main {
    padding: 2em;
    padding-left: 1em;
    justify-content: space-between
}

#speakerShortcut {
    width: max-content;
    min-width: 10vw;
    margin-right: 1em;
    border-right: 1px solid white;
    padding: 1em;
    padding-top: 0em;
    padding-bottom: 0em;
    text-align: right !important;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: min-content;
}

.speakerShortcutLinks {
    color: white;
    text-decoration: none;
    margin-bottom: 0.5em;
}

.speakerShortcutLinks:hover {
    transform: translateX(10px);
    color: #aaaaaa;
}
.speakerWrapper {
    display: flex;
    margin-bottom: 2em;
    padding: 1em;
    background-image: url("https://www.iso-bel.computer/static/resources/images/misc/paper_2.png");
    background-color: #555555;
    background-blend-mode: lighten;
    border: 1px dotted #ffffff00;
    border-radius: 3px;
    transition: 0.1s ease-in;
    --filter-saturate: 50%;
}

.speakerWrapper:hover {
    --filter-saturate: 100%;
    border: 1px solid white;
}


.speakerPhoto {
    filter: saturate(var(--filter-saturate));
    transition: 0.1s ease-in;
    margin-right: 1.5em;
    border: 1px solid white;
    min-width: 13vw;
    max-width: 13vw;

}

.speakerWrapper .speakerInfo {
    border-left: 1px solid white;
    padding-left: 1em;
}


.speakerWrapper h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 2em;
}

.socialImg {
    margin-right: 3px !important;
    filter: saturate(var(--filter-saturate));
    max-width: 30px;
}

@media (max-width: 768px) {
    .speakerWrapper {
        display: block;
        padding: 2em
    }
    .speakerWrapper .speakerInfo {
        border-left: 0px solid white;
        padding-left: 0em;
    }
    .speakerPhoto {

        image-align: center;
        min-width: 30vw;
        max-width: 30vw;
    }
    #speakerShortcut {
        display: none;
    }
}
