body {
    font-family: sans-serif;
    margin: 40px;
}

section {
    margin-bottom: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0 10px;
    align-items: center;
}

.title {
    padding: 5px 0;
}

.title h3 {
    margin: 0;
    padding: 0;
}

.title .subtitle {
    margin: 0;
    font-size: 14px;
    color: gray;
}

.meta {
    text-align: end;
}

.when,
.how {
    text-align: center;
}

section.up {
    background-color: greenyellow;
}

section.alwaysup {
    background-color: #c6ff6e;
    background-image: linear-gradient(
        45deg,
        greenyellow 25%,
        transparent 25%,
        transparent 50%,
        greenyellow 50%,
        greenyellow 75%,
        transparent 75%,
        transparent
    );
    background-size: 50px 50px;
}

/* .catchpath:not(:first-of-type) {
    margin-left: 5px;
} */

.catchpath {
    align-items: center;
    position: relative;
}

.catchpath img {
    vertical-align: middle;
}

.hookset {
    position: absolute;
    top: -10px;
    right: -10px;
}

.tug {
    position: absolute;
    background-color: black;
    color: white;
    bottom: -10px;
    right: -10px;
    padding: 2px;
    font-size: 10px;
    font-weight: bolder;
    font-family: monospace;
}

.catchpath:not(:first-of-type)::before {
    content: ">";
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
    color: gray;
}

.catchpath:has(.tug) {
    margin-right: 9px;
}