#charts-list {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
#prompts {
    align-self: flex-start;
    position: sticky;
    top: 20px;
    max-width: 300px;
}
#prompts h3 { 
    font-size: 20px;
    margin-bottom: 15px;
}
#prompts h4 { 
    font-size: 14px; 
    line-height: 16px;
    margin-bottom: 0px; 
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: .2em;
    /* color: var(--eggshell-text); */
}
#prompts .topic {
    margin-bottom: 10px;
}
#prompts .prompts {
    list-style: none;
}
#prompts .prompt {
    font-size: 14px;
    line-height: 16px;
    padding: 1px 5px 1px 10px;
    margin: 0;
    cursor: pointer;
    position: relative;
}
#prompts .prompt::before {
    content: "\2192";
    display: block;
    width: 15px;
    position: absolute;
    text-align: right;
    top: 0px;
    left: -30px;
    opacity: 0;
    transition: all .3s;
}
#prompts .prompt:hover { 
    color: var(--carmine);
    /* background-color: var(--eggshell-wet-muddy); */
}
#prompts .prompt.active { 
    /* background-color: var(--eggshell-wet-muddy); */
    font-weight: bold;
}
#prompts .prompt.active::before {
    left: -12px;
    opacity: 1;
}

#prompts .prompt.disabled {
    font-style: italic;
    color: var(--eggshell-text);
    opacity: .6;
    pointer-events: none;
}
#prompts .prompt .num {
    display: inline-block;
    width: 25px;
}
#charts { margin-top: -20px; }
figure.chart {
    padding-top: 20px;
    margin: 0 0 10px;
    width: 100%;
    max-width: 600px;
}
@media (max-width: 620px) { #prompts { display: none; } }

.connected-project {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background: linear-gradient(to right, #FCFBF700 40%, #FCFBF766);
    border-radius: 22px;
    margin-top: 50px;
    position: relative;
    transition: color .2s ease;
}
.connected-project p { margin-bottom: 0; }
.connected-project p span { display: block; }
.connected-project::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    z-index: -1;
    border-radius: 22px;
    background-color: var(--eggshell-muddy);
    transition: background .2s ease;
}
#teaser-30DCC24 {
    width: 200px;
    min-width: 200px;
    height: 200px;
    position: relative;
    margin: -50px 0;
}

.connected-project:hover::before {
    background-color: var(--carmine);
}
.connected-project:hover { 
    color: var(--eggshell-light);
    background: linear-gradient(to right, #FCFBF700 40%, #FCFBF7aa);
}
.connected-project:hover > #teaser-30DCC25::before {
    filter: brightness(5);
    opacity: .7;
}

@media (max-width: 780px) {
    .connected-project p span { display: inline; }   
}
@media (max-width: 600px) {
    .connected-project {
        flex-direction: column-reverse;
        gap: 10px;
        background: radial-gradient(ellipse at top, #FCFBF7aa, #FCFBF766);
    }
    .connected-project:hover { 
        /* color: var(--eggshell-light); */
        background: radial-gradient(ellipse at top, #FCFBF7aa, #FCFBF700 80%);
    }
    .connected-project p { 
        text-align: center; 
        margin-bottom: 16px;
    }
    #teaser-30DCC24 { margin-bottom: 0; }
}