/* Own additions on top of the ported Tilda CSS: consent banner and the
 * form-placeholder notice. Colors picked up from the site palette
 * (#e8ecee footer, #222 buttons). */

.ck-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: #ffffff;
  border-top: 1px solid #d5dbde;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
}
.ck-consent__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ck-consent__text {
  margin: 0;
  flex: 1 1 320px;
  font-family: 'Cabrito', Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.45;
  color: #222222;
}
.ck-consent__text a {
  color: #222222;
  text-decoration: underline;
}
.ck-consent__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.ck-consent__btn {
  font-family: 'Cabrito', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 22px;
  border: 1px solid #222222;
  border-radius: 2px;
  background: #ffffff;
  color: #222222;
  cursor: pointer;
}
.ck-consent__btn--primary {
  background: #222222;
  color: #ffffff;
}
.ck-consent__btn:hover {
  opacity: 0.85;
}

/* Permanently dark menu bar on subpages (.ck-menu-solid on #allrecords).
 * The original menu starts transparent everywhere and only darkens after
 * scrolling, which leaves white nav text unreadable over light page tops.
 * !important is needed to beat the inline styles that tilda-menu.js
 * animates on scroll. Color matches the original after-scroll state. */
.ck-menu-solid .t967,
.ck-menu-solid .tmenu-mobile,
.ck-menu-solid .tmenu-mobile__container,
.ck-menu-solid .tmenu-mobile__menucontent {
  background-color: #211d2b !important;
}
/* Mobile: the burger is white line-art over a circle whose background the
 * original ships with opacity 0; over light subpage tops the burger was
 * invisible. Show the circle on subpages so the menu is always findable. */
.ck-menu-solid .t450__burger_bg {
  opacity: 1 !important;
  background-color: #211d2b !important;
}

/* 404 page content (header/footer come from the shared components). */
.ck-404 {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 24px 80px;
  font-family: 'Cabrito', Arial, sans-serif;
  font-weight: 300;
  color: #222222;
}
.ck-404 h1 {
  font-weight: 400;
  font-size: 42px;
  margin: 0 0 12px;
}
.ck-404 p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 28px;
}
.ck-404__btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #222222;
  color: #222222;
  text-decoration: none;
  border-radius: 2px;
}
.ck-404__btn:hover {
  background: #222222;
  color: #ffffff;
}

/* Notice shown instead of sending the (phase 2) contact forms. */
.ck-form-notice {
  font-family: 'Cabrito', Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: #222222;
  background: #e8ecee;
  border-radius: 3px;
  padding: 14px 16px;
  margin-top: 12px;
}
.ck-form-notice a {
  color: #222222;
}
