@charset "utf-8";

:root {
  --ohm-grey: #ededef;
  --ohm-red: #d71920;
  --ohm-text: #111111;
  --ohm-border: rgba(0, 0, 0, 0.08);
}

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

body {
  background: #ffffff;
  color: var(--ohm-text);
}

/* Injected museum header */
#ohm-site-header {
  background: var(--ohm-grey);
  border-bottom: 1px solid var(--ohm-border);
}

#ohm-site-header .ohm-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 12px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ohm-site-header .ohm-logo-link {
  display: inline-block;
}

#ohm-site-header .ohm-logo {
  display: block;
  width: 260px;
  max-width: 70vw;
  height: auto;
}

/* PastPerfect CSS often styles all linked images with borders/shadows */
#ohm-site-header a img {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#ohm-site-header .ohm-menu {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8px 10px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
}

#ohm-site-header .ohm-menu-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--ohm-text);
  text-decoration: none;
  padding: 6px 8px;
}

#ohm-site-header .ohm-menu-link:hover,
#ohm-site-header .ohm-menu-link:focus-visible {
  color: var(--ohm-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#ohm-site-header .ohm-active {
  color: var(--ohm-red);
}

.ohm-search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ohm-inline-search-wrap {
  max-width: 980px;
  margin: 20px auto 6px;
  padding: 0 14px;
}

.ohm-search-form-inline {
  max-width: 760px;
  margin: 0 auto;
}

.ohm-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ohm-search-input {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 1px solid #c5c5c5;
  border-radius: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.ohm-search-button {
  border: 1px solid #b9b9b9;
  background: #f8f8f8;
  color: #111111;
  border-radius: 3px;
  padding: 8px 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.ohm-search-button:hover,
.ohm-search-button:focus-visible {
  border-color: #9a9a9a;
  background: #efefef;
}

.ohm-search-input-large {
  min-height: 50px;
  border-radius: 24px;
  padding: 0 16px;
  font-size: 18px;
}

.ohm-search-button-large {
  min-height: 50px;
  border-radius: 24px;
  padding: 0 18px;
}

/* Injected museum footer */
#ohm-site-footer {
  margin-top: 28px;
  font-family: Arial, Helvetica, sans-serif;
}

#ohm-site-footer .ohm-footer-top {
  background: #000000;
  color: #f3f3f3;
  padding: 44px 16px;
}

#ohm-site-footer .ohm-footer-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

#ohm-site-footer .ohm-footer-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#ohm-site-footer .ohm-footer-text {
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

#ohm-site-footer .ohm-footer-link {
  color: rgba(255, 255, 255, 0.9);
}

#ohm-site-footer .ohm-footer-link:hover,
#ohm-site-footer .ohm-footer-link:focus-visible {
  color: #ffffff;
}

#ohm-site-footer .ohm-spacer {
  height: 18px;
}

#ohm-site-footer .ohm-kcdc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#ohm-site-footer .ohm-kcdc-logo {
  width: 170px;
  max-width: 70vw;
  height: auto;
}

#ohm-site-footer .ohm-footer-bottom {
  background: var(--ohm-red);
  color: rgba(255, 255, 255, 0.9);
  padding: 18px 16px;
}

#ohm-site-footer .ohm-footer-bottom-inner {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 900px) {
  #ohm-site-footer .ohm-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 720px) {
  #ohm-site-header .ohm-menu {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #ohm-site-header .ohm-menu-link {
    white-space: nowrap;
  }

  .ohm-search-form {
    flex-wrap: wrap;
  }

  .ohm-search-button {
    width: 100%;
  }
}
