body {
    margin: 0;
    font: 16px system-ui;
    background: #111;
    color: #eee
}

.wrap {
    max-width: 1100px;
    margin: auto;
    padding: 20px
}

a {
    color: inherit;
    text-decoration: none
}

.nav {
    border-bottom: 1px solid #222;
    background: #111;
    position: sticky;
    top: 0
}

.bar {
    display: flex;
    justify-content: space-between;
    align-items: center
}

nav a {
    margin-left: 15px;
    color: #aaa
}

nav a:hover {
    color: #fff
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.tile {
    position: relative;
    display: block
}

.tile img {
    width: 100%;
    height: 240px;
    object-fit: cover
}

.cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
    padding: 10px;
    font-size: 14px;
}

.hero {
    width: 100%;
    margin: 20px 0
}

.meta {
    color: #aaa
}

footer {
    border-top: 1px solid #222;
    margin-top: 40px;
    color: #777
}