@import "./../base.css";
/* TODO: combine CSS on build */

figcaption {
    overflow: clip;
    text-overflow: ellipsis;
    white-space: nowrap;
}

figure {
    aspect-ratio: 4 / 3; /* all images in grid should be 4:3; mistake if not */
    margin: 0;
}

img {
    display: block;
    height: 100%;
    width: 100%;
}

ol {
    display: grid;
    gap: 10px;
    grid-template: auto / repeat(auto-fit, 200px);
    list-style-type: none;
    padding: 0;
}
