:root {
  --primary-color: var(--website-primary-color, #007bff);
  --text-color: var(--website-text-color, #111);
}

body, html {
  padding: 0;
  margin: 0;
}

body {
  background: #fff linear-gradient(to bottom, #fafafa 0, #fff 20rem) repeat-x top left;
  background-attachment: fixed;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  color: var(--text-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 45rem;
}
.container.large {
  max-width: 55rem;
}
@media (max-width: 45rem) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}

table svg {
  max-height: 1.5em;
}

header {
  background: #fff;
  border-bottom: 1px solid #eee;
  margin-bottom: 3em;
  position: sticky;
  top: 0;
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (max-width: 25rem) {
  .header-main {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.5rem;
  }
}
.header-main nav {
  display: flex;
  gap: 1em;
}
@media (max-width: 25rem) {
  .header-main nav {
    display: flex;
    justify-content: space-between;
  }
}
.header-main .logo, .header-main nav a {
  display: inline-block;
  padding: 0.8em 0;
}
@media (max-width: 25rem) {
  .header-main .logo, .header-main nav a {
    display: block;
    padding: 0.25em 0;
  }
}
.header-main .logo {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-color);
  display: flex;
  gap: 0.5em;
  align-items: center;
}
@media (max-width: 25rem) {
  .header-main .logo {
    padding-bottom: 0;
  }
}
.header-main .logo:hover {
  text-decoration: none;
}
.header-main .logo svg {
  color: var(--primary-color);
  display: inline-block;
  height: 1.4em;
  width: auto;
}
.header-main .logo small {
  font-size: 0.8rem;
}
@media (max-width: 40rem) {
  .header-main .logo small {
    background: red;
    display: none;
  }
}

footer {
  border-top: 1px solid #eee;
  padding: 1rem 0;
  margin-top: 6em;
  background: #fff linear-gradient(to bottom, #fafafa, #fff) repeat-x top left;
  color: #aaa;
  font-size: 0.8em;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin: 1em 0;
}
.links a {
  color: #aaa;
}

fieldset {
  border: 2px solid #eee;
  border-radius: 0.5em;
  margin: 1em 0;
}
fieldset legend {
  font-weight: bold;
  padding: 0 0.5em;
}
fieldset .form-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 40rem) {
  fieldset .form-control {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 25rem) {
  fieldset .form-control {
    grid-template-columns: 1fr;
  }
}

.tags > *, .tag {
  color: var(--color-text);
  background-color: #eee;
  padding: 0.25em 0.8em;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 500;
  border-radius: 0.3em;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.job-list {
  display: grid;
  gap: 1em;
}

.job-card {
  border: 2px solid #fafafa;
  border-radius: 0.3em;
  padding: 1em;
  background: #fff;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: auto auto;
  gap: 1em;
  grid-template-areas: "details meta" "details more";
}
.job-card .job-details {
  display: grid;
  gap: 0.5em;
  grid-area: details;
}
.job-card .job-details h1 {
  font-size: 1.2em;
  margin: 0;
}
.job-card .job-details .job-organisation {
  font-weight: bold;
}
.job-card .job-details .summary {
  margin: 0;
}
.job-card .job-details .tags {
  margin-top: 0.5em;
}
.job-card .job-meta {
  grid-area: meta;
}
.job-card .job-more {
  grid-area: more;
  display: flex;
  align-items: flex-end;
  justify-content: end;
}

/*# sourceMappingURL=app.output.css.map */
