.workplace {
    display: grid;
}

@media (min-width: 1024px) {
    .workplace {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
}

.workplace .date {
    margin-bottom: 0.5em;
    grid-column: span 2 / span 2;
    font-size: 10pt;
}

.workplace .date * {
    color: rgb(151 169 195);;
}

.workplace .title {
    margin-bottom: 1em;
    font-weight: bold;
    font-size: 14pt;
}

.workplace .description {
    font-size: 12pt;
    color: #bfbdd9;
    margin-bottom: 1em;
}

.workplace > :not(.date) {
    grid-column: span 6 / span 6;
}

.workplace [field=job_description] {
    margin-bottom: 1em;
}