  * {
  box-sizing: border-box;
}
body {
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
.container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
h1, h2, h3 {
  font-family: 'Montserrat', Helvetica, Verdana, sans-serif;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: normal;
}
h1 {
  font-size: 31px;
}
a {
  color: #b12;
  text-decoration-thickness: 1px!important;
  text-underline-offset: .2em!important;
}
header {
  margin: 36px auto;
}
header #siteTitle {
  display: flex;
  line-height: normal;
  align-items: center;
  margin-bottom: 12px;
}
header #logo {
  flex: 1;
  max-width: 130px;
  margin-right: 18px;
}
header #logo img {
  display: block;
  margin-bottom: 2px;
}
header #nameplate {
  flex: 1;
  font-size: 14px;
}
nav ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -6px;
  font-size: 12px;
}
nav ul li {
  margin: 0 6px 6px;
}
nav a {
  text-transform: uppercase;
  font-weight: 600;
  color: inherit;
  text-underline-offset: 5px!important;
  text-decoration: none;
}
nav a:hover {
  text-decoration: underline;
}
footer {
  margin: 72px auto 48px;
  padding-top: 24px;
  border-top: 4px solid;
  font-size: 14px;
}
table {
  font-size: 1em;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
}
button, input, optgroup, select, textarea {
  font-family:inherit;
  font-size:inherit;
}
figure.featureImageContainer {
  margin: 0 0 2rem;
}
.featureImage {
  display: block;
  width: 100%;
  height: auto;
}
figure.featureImageContainer figcaption {
  font-size: .8em;
  color: #767676;
}
.lead {
  font-size: 1.3em;
  line-height: 1.3;
}
.callout {
  border-left: 2px solid;
  padding: .5rem 2rem;
  margin: 2rem 0;
}
.float-image-right {
  float: right;
  margin: 0 0 2rem 2rem;
}
.float-image-left {
  float: left;
  margin: 0 2rem 2rem 0;
}
.btn {
  box-sizing: border-box;
  display: inline-block;
  padding: .375rem .75rem;
  background-color: #fff;
  border: 1px solid transparent;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #000;
  vertical-align: middle;
  text-align: center;
  transition: .15s;
}
.btn:hover {
  text-decoration: none;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn-sm {
  font-size: .75rem;
  padding: .25rem .5rem;
}
.btn-primary {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
#accessLinks {
  position: absolute;
  top: -999px;
  left: 0;
  width: 80%;
  z-index: 999;
}
#accessLinks a {
  position: absolute;
  top: 0;
  left: 0;
}
#accessLinks a:focus, #accessLinks a:active {
  top: 999px;
  background-color: #fff;
  padding: 5px 10px;
  margin: 5px;
  white-space: nowrap;
}

ul.exhibition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    list-style-type: none;
    padding: 0;
    grid-gap: 30px;
    margin: 2rem 0;
}
ul.exhibition-grid li {
    font-size: .9em;
}
ul.exhibition-grid a {
    text-decoration: none;
    color: #767676;
}
ul.exhibition-grid a:hover {
    text-decoration: underline;
}
ul.exhibition-grid .exhibition-grid-image {
    padding-top: 100%; /*set to 100% for square*/
    margin-bottom: 10px;
    background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
}
ul.exhibition-grid .exhibition-grid-image-cropped {
    outline: 1px solid #efefef;
}
ul.exhibition-grid strong {
    font-size: 1.1em;
    line-height: 1em;
    color: #000;
}

@media screen and (max-width: 750px){
    ul.exhibition-grid {grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 600px){
    ul.exhibition-grid {display: block;}
    ul.exhibition-grid li {margin-bottom:30px;}
}

@media screen and (min-width: 540px){
  header #logo {
    max-width: 140px;
    margin-right: 24px;
  }
  nav ul {
    margin: 0 -12px;
  }
  nav ul li {
    margin: 6px 12px;
  }
}
@media screen and (min-width: 800px){
  header {
    margin: 64px auto;
  }
  header #logo {
    max-width: 200px;
  }
  header #nameplate {
    font-size: 16px;
  }
  header #nameplate, nav a {
    letter-spacing: .05em;
  }
  nav ul {
    font-size: 14px;
  }
  footer .row {
    display: flex;
    margin: 0 -24px;
  }
  footer .row > div {
    flex: 1;
    margin: 0 24px;
  }
}