.green {
    --highlight-color: #8BC34A;
    color: var(--highlight-color);
}

.red {
    --highlight-color: #F44336;
    color: var(--highlight-color);
}

.orange {
    --highlight-color: #FF9800;
    color: var(--highlight-color);
}

.blue {
    --highlight-color: #3398DB;
    color: var(--highlight-color);
}

.grey {
    --highlight-color: #607D8B;
    color: var(--highlight-color);
}

.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    background-color: var(--highlight-color);
    color: white;
}

.image-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.image-container figure {
    flex: 1;
    border: 1px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.image-container figure:hover {
    flex: 1;
    border-color: rgba(0, 0, 0, 0.5);
}

.image-container figure figcaption {
    font-size: 0.5rem;
}
