@charset "UTF-8";
:root {
  --accent: #732b30;
  --accent-light: #f0dfe0;
  --accent-hover: #5a1e22;
  --accent-mustard: #c09a2a;
  --accent-pink: #e8597a;
  --text-dark: #1c1c1c;
  --text-muted: #6b6b6b;
  --text-on-accent: #ffffff;
  --bg: #faf8f5;
  --surface: #fdf8f0;
  --surface-subtle: #f2f2f2;
  --border: #cccac7;
  --hero-bg: #3f8263;
  --footer-bg: #154331;
  --footer-text: #b8b3b0;
  --gray: #b0b0b0;
  --bold: color-mix(in srgb, var(--gray), black 40%);
  --light: var(--border);
}

@media screen {
  * {
    box-sizing: border-box;
  }
  html {
    height: 100%;
    padding: 0;
    margin: 0;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: "Courier Prime", "Courier New", monospace;
  }
  body {
    background-color: var(--bg);
    font-family: "Inter", "Open Sans", sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-dark);
    margin: 0;
    word-wrap: break-word;
    overflow-x: hidden;
  }
  a:link {
    text-decoration: none;
    color: var(--accent);
  }
  a:visited {
    color: var(--accent);
  }
  a:active,
  a:hover {
    color: var(--accent-hover);
  }
  h1 {
    font-size: 40px;
    line-height: 60px;
  }
  h2 {
    font-size: 30px;
    line-height: 45px;
  }
  h3 {
    font-size: 25px;
    line-height: 45px;
  }
  h4 {
    font-size: 22.5px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  /* @group ----- Forms ----- */
  input,
  textarea,
  button,
  .button,
  select {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    vertical-align: top;
  }
  input[type=text],
  input[type=number],
  input[type=password],
  input[type=email],
  input[type=url],
  textarea {
    appearance: none;
    border-radius: 0;
    border: 1px solid var(--light);
    padding: 6.5px 7.5px;
    margin: 0;
  }
  textarea {
    height: 90px;
  }
  input[type=file] {
    line-height: 1;
    vertical-align: bottom;
    font-size: 15px;
  }
  button,
  .button,
  a.button,
  a.button:visited,
  [type=submit] {
    border: 1px solid var(--light);
    background-color: var(--light);
    border-radius: 2px;
    padding: 7.5px;
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    cursor: pointer;
    color: #000;
  }
  button:hover,
  .button:hover,
  a.button:hover,
  a.button:visited:hover,
  [type=submit]:hover {
    opacity: 1;
  }
  select {
    background-color: #fff;
    padding: 7.5px;
    border: 1px solid var(--light);
  }
  ::-webkit-input-placeholder {
    font-style: italic;
  }
  :-moz-placeholder { /* Firefox 18- */
    font-style: italic;
  }
  ::-moz-placeholder { /* Firefox 19+ */
    font-style: italic;
  }
  :-ms-input-placeholder {
    font-style: italic;
  }
  .field {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .field .inputs input[type=checkbox] {
    vertical-align: bottom;
  }
  .field .field-meta {
    padding: 7.5px 45px 7.5px 0;
    position: relative;
    width: 100%;
  }
  .field.multi-value .label,
  .field.multi-value .field-description {
    margin-right: 7.5px;
  }
  .field.required .field-meta:after {
    content: "\f069";
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    font-weight: 900;
  }
  .field .add-value {
    position: absolute;
    right: 0.25rem;
    top: 0;
    width: 45px;
  }
  .field .value:not(:last-child) {
    margin-bottom: 15px;
  }
  .field-description {
    font-size: 15px;
  }
  .field .inputs {
    width: 100%;
  }
  .field .value * {
    max-width: 100%;
  }
  .field .value select {
    width: 100%;
    margin-bottom: 7.5px;
  }
  /* @end */
  /* @group ----- Navigation ----- */
  #skipnav {
    position: fixed;
    top: 30px;
    left: 50%;
    border: 1px solid var(--gray);
    transform: translateX(-50%);
    z-index: -5;
    padding: 7.5px;
    background-color: #fff;
    opacity: 0;
  }
  #skipnav:focus {
    z-index: 1000;
    opacity: 1;
  }
  header h1 {
    margin: 0;
  }
  header nav {
    position: relative;
    padding: 0;
  }
  header nav ul {
    height: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  header nav ul ul {
    display: none;
  }
  header nav ul ul.open {
    display: block;
  }
  #mobile-nav-toggle {
    display: block;
    width: 37.5px;
    height: 37.5px;
    border: 1px solid var(--light);
    text-align: center;
    border-radius: 2px;
    position: absolute;
    right: 30px;
    top: -45px;
    cursor: pointer;
    line-height: 1;
  }
  #mobile-nav-toggle:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0c9";
    font-weight: 900;
  }
  header nav.open {
    margin: 0 0 -1px;
  }
  header nav.open #mobile-nav-toggle:before {
    content: "\f00d";
  }
  header nav.open ul {
    padding-left: 0;
    position: relative;
    margin: 0 auto;
    height: auto;
  }
  header nav.open ul a {
    display: inline-block;
    width: 100%;
    padding: 7.5px;
    padding-left: 30px;
  }
  header nav.open ul a:focus {
    position: relative;
    z-index: 1;
  }
  header nav.open ul a:hover {
    border-bottom: 0;
    background-color: var(--light);
  }
  header nav.open ul li li:last-of-type {
    padding-bottom: 0;
  }
  header nav.open ul li.active {
    font-weight: bold;
  }
  header nav.open ul li.parent {
    position: relative;
  }
  header nav.open ul .parent-link {
    display: flex;
  }
  header nav.open ul .parent-link > a {
    width: calc(100% - 60px);
  }
  header nav .child-toggle {
    color: var(--accent);
    width: 60px;
    text-align: center;
    background-color: #fff;
    border-left: 1px solid var(--light);
    appearance: none;
  }
  header nav .child-toggle:focus {
    position: relative;
    z-index: 1000;
  }
  header nav .child-toggle:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
  }
  header nav .child-toggle.open:before {
    content: "\f107";
  }
  header nav.open ul.open {
    overflow: visible;
  }
  header nav.open > ul > li {
    border-top: 1px solid var(--light);
    position: relative;
  }
  header nav > ul > li:last-child {
    border-bottom: 1px solid var(--light);
    padding-bottom: -1px;
  }
  header nav > ul ul li {
    height: 0;
    border: 0;
  }
  header nav ul.open > li {
    height: auto;
    border-top: 1px solid var(--light);
    padding-top: -1px;
  }
  /* Second level items */
  header nav > ul > li > ul > li.active > a {
    margin-left: -1.5em;
  }
  header nav > ul > li > ul > li.active > a:before {
    content: ">";
    display: inline-block;
    width: 1.5em;
  }
  header nav.open > ul > li > ul > li a {
    padding-left: 75px;
  }
  /* Third level items */
  header nav.open > ul > li > ul > li > ul > li a {
    padding-left: 90px;
  }
  /* Fourth level items */
  header nav.open > ul > li > ul > li > ul > li > ul > li a {
    padding-left: 105px;
  }
  .sub-menu ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 15px;
  }
  .sub-menu li {
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid var(--light);
    padding: 7.5px 0 6.5px;
  }
  .sub-menu li:first-of-type {
    border-top: 1px solid var(--light);
    padding-top: 6.5px;
  }
  nav.pagination {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 45px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .pagination input {
    text-align: center;
  }
  .resource-list + .pagination {
    border-color: transparent;
  }
  .pagination form {
    min-width: 90px;
    margin-right: 15px;
  }
  .pagination form,
  .pagination .button,
  .pagination button,
  .pagination .page-count {
    display: inline-block;
    vertical-align: top;
    height: 45px;
  }
  .pagination-buttons {
    margin-right: 15px;
  }
  .pagination .button {
    border: 1px solid var(--light);
    background-color: var(--light);
    border-radius: 2px;
    padding: 7.5px;
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    cursor: pointer;
    color: #000;
    width: 45px;
    text-align: center;
  }
  .pagination .button:hover {
    opacity: 1;
  }
  .pagination .inactive.button {
    opacity: 0.5;
    color: var(--gray);
    background-color: white;
  }
  .pagination input {
    width: 60px;
  }
  .breadcrumbs {
    font-size: 15px;
    margin: 15px 0;
  }
  /* @end */
  /* @group ----- Header ----- */
  h1.site-title,
  .site-title h1 {
    font-size: 20px;
    line-height: 30px;
    padding: 15px 30px;
    margin: 0;
    font-family: "Courier Prime", "Courier New", monospace;
    letter-spacing: 0.01em;
  }
  a.site-title,
  a.site-title:link,
  a.site-title:visited,
  h1.site-title a,
  h1.site-title a:link,
  h1.site-title a:visited {
    color: var(--text-dark);
    font-weight: 700;
  }
  header {
    margin: 0;
    position: relative;
    border-bottom: 1px solid var(--border);
  }
  .site-title,
  #top-nav {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--surface);
  }
  .site-title:hover,
  .site-title:active {
    border-bottom: 0;
  }
  .site-title h1 {
    margin: 0;
  }
  button.o-icon-search {
    display: none;
  }
  #search {
    position: relative;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
  }
  #search form {
    display: flex;
    flex-wrap: nowrap;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    padding: 7.5px 30px;
  }
  #search form input[type=text] {
    width: 100%;
    background-color: var(--surface-subtle);
    border: 1px solid var(--border);
    border-right: 0;
    border-radius: 2px 0 0 2px;
  }
  #search form button[type=submit] {
    height: 45px;
    width: 45px;
    text-indent: -9999px;
    position: relative;
    border-radius: 0 2px 2px 0;
    background-color: var(--accent);
  }
  #search form button[type=submit]:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    text-indent: 0;
    line-height: 45px;
    color: var(--text-on-accent);
  }
  .banner {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background-color: var(--hero-bg);
    min-height: 300px;
  }
  .banner img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
  }
  .banner-content {
    position: relative;
    z-index: 1;
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
  .banner-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
  }
  .banner-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #d1ccc7;
    margin: 0;
  }
  .banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 188px;
    height: 44px;
    background-color: var(--accent-pink);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 2px;
    text-decoration: none;
  }
  .banner-cta:link, .banner-cta:visited {
    color: #ffffff;
  }
  .banner-cta:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
  }
  /* @group ----- Collections Block ----- */
  .collections-block {
    padding: 40px 80px 60px;
  }
  .collections-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 12px;
  }
  .collections-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 0 0 24px;
  }
  .collections-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .collection-card {
    border-radius: 4px;
    overflow: hidden;
  }
  .collection-card-link {
    display: block;
    text-decoration: none;
  }
  .collection-card-link:hover .collection-card-image img {
    transform: scale(1.03);
  }
  .collection-card-image {
    height: 140px;
    background-color: #ad998a;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
  }
  .collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
  }
  .collection-card-info {
    background-color: var(--surface);
    padding: 14px;
    border-radius: 0 0 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 84px;
  }
  .collection-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
  }
  .collection-card-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
  }
  .collection-card-count {
    font-size: 12px;
    color: var(--accent-mustard);
    display: block;
  }
  /* @end */
  /* @group ----- Prefooter Block ----- */
  .prefooter-block {
    background-color: var(--surface);
    padding: 18px 80px;
    margin-left: calc(-2 * 30px);
    margin-right: calc(-2 * 30px);
  }
  .prefooter-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
  }
  .prefooter-body {
    font-size: 14px;
    color: var(--text-dark);
  }
  .prefooter-body p {
    margin: 0;
    line-height: 1.5;
  }
  /* @end */
  /* @group ----- Recent Items Block ----- */
  .recent-items-block {
    padding: 8px 80px 60px;
  }
  .recent-items-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 12px;
  }
  .recent-items-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 0;
  }
  .recent-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .recent-item-row {
    padding: 16px 0;
  }
  .recent-item-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
  }
  .recent-item-thumb {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 2px;
    background-color: #c7b8a8;
    overflow: hidden;
  }
  .recent-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .recent-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .recent-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
  }
  .recent-item-subtitle {
    font-size: 12px;
    color: var(--text-muted);
  }
  .recent-items-view-all {
    display: inline-block;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
  }
  /* @end */
  .collections-view-all {
    display: inline-block;
    margin-top: 24px;
    font-size: 13px;
    color: var(--accent);
  }
  /* @end */
  /* @group ----- Item Sets Browse ----- */
  .item-sets-browse {
    padding: 40px 80px 60px;
  }
  .item-sets-browse-header {
    margin-bottom: 32px;
  }
  .item-sets-browse-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
  }
  .item-sets-browse-count {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 16px;
  }
  .item-sets-browse-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 0;
  }
  .item-sets-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .item-set-card {
    border-radius: 4px;
    overflow: hidden;
  }
  .item-set-card-link {
    display: block;
    text-decoration: none;
  }
  .item-set-card-link:hover .item-set-card-image img {
    transform: scale(1.03);
  }
  .item-set-card-image {
    height: 180px;
    background-color: #ad998a;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
  }
  .item-set-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
  }
  .item-set-card-info {
    background-color: var(--surface);
    padding: 14px;
    border-radius: 0 0 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 100px;
  }
  .item-set-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
  }
  .item-set-card-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
  }
  .item-set-card-count {
    font-size: 12px;
    color: var(--accent-mustard);
    display: block;
    margin-top: auto;
  }
  .item-sets-pagination {
    margin-top: 48px;
  }
  /* @end */
  /* @end */
  /* @group ----- Footer ----- */
  footer {
    clear: both;
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-size: 15px;
  }
  footer a:link,
  footer a:visited {
    color: var(--footer-text);
    text-decoration: underline;
  }
  .footer-about {
    background-color: var(--surface);
    padding: 18px 80px;
    color: var(--text-dark);
  }
  .footer-about-heading {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
  }
  .footer-about-body {
    font-size: 14px;
  }
  .footer-about-body p {
    margin: 0;
    line-height: 1.5;
  }
  .footer-credit {
    padding: 30px 80px;
  }
  .footer-institution {
    font-size: 13px;
    color: #b8b2ad;
    margin: 0 0 6px;
  }
  .footer-powered {
    font-size: 12px;
    color: #85807a;
    margin: 0;
  }
  /* @end */
  /* @group ----- Page and Blocks ----- */
  #content {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px 30px;
  }
  .resource-list.preview + a {
    border: 1px solid var(--light);
    background-color: var(--light);
    border-radius: 2px;
    padding: 7.5px;
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    cursor: pointer;
    color: #000;
  }
  .resource-list.preview + a:hover {
    opacity: 1;
  }
  .resource-list.preview + a {
    color: #000;
  }
  .spotlight {
    clear: both;
    padding: 30px;
    padding-right: calc(50% + 30px);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 50%;
    margin: 60px 0;
  }
  .spotlight.left-image {
    background-position: left center;
    padding-left: calc(50% + 30px);
    padding-right: 0;
  }
  .dark-accent {
    color: #fff;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flow-root;
    clear: both;
  }
  .dark-accent:after {
    content: "";
    background-color: var(--bold);
    z-index: -1;
    position: absolute;
    left: -9999px;
    right: -9999px;
    top: 0;
    bottom: 0;
  }
  .dark-accent a:link {
    font-weight: bold;
  }
  .dark-accent a:link,
  .dark-accent a:visited {
    color: #ddd;
  }
  .dark-accent ul.resource-list .resource,
  .dark-accent ul.preview.resource-list li:first-of-type {
    border-color: #9b9b9b;
  }
  .dark-accent button,
  .dark-accent a.button,
  .dark-accent .resource-list.preview + a,
  .dark-accent [type=submit] {
    background-color: #ddd;
    color: var(--bold);
    font-weight: normal;
  }
  .dark-accent .carousel-block button {
    background-color: transparent;
    color: #fff;
  }
  .light-accent {
    position: relative;
    padding-top: 30px;
    padding-top: 30px;
    display: flow-root;
    clear: both;
  }
  .light-accent:after {
    content: "";
    background-color: #fff;
    z-index: -1;
    position: absolute;
    left: -9999px;
    right: -9999px;
    top: 0;
    bottom: 0;
    border: 1px solid var(--light);
  }
  /* @end */
  /* @group ----- Resource List ----- */
  /* @end */
  /* @group ----- Browse ---- */
  /* @end */
  /* @group ----- Show ----- */
  /* @end */
  /* @group ----- Advanced Search ----- */
  /* @end */
  /* @group ----- Search ----- */
  /* @end */
  /* @group ----- Common Modules ---- */
  /* @end */
  /* @group ----- Site Page ----- */
  /* @end */
  /* @group ----- Mobile (max 799px) ----- */
  /* Item Show
     ========================================================================== */
  /* Search Results
     ========================================================================== */
  /* 404 Error
     ========================================================================== */
  /* Search Results — mobile
     ========================================================================== */
  /* Item Browse
     ========================================================================== */
  /* Sort Selector */
  /* Pagination
     ========================================================================== */
  /* Advanced Item Search
     ========================================================================== */
  /* @end */
}
@media screen and (max-width: 799px) {
  .spotlight {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-top: 33rem;
    background-position: center 30px !important;
    background-size: auto 30rem;
  }
}
@media screen {
  .template-3-grid.assets {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 30px;
  }
}
@media screen and (max-width: 799px) {
  .template-3-grid.assets {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 399px) {
  .template-3-grid.assets {
    grid-template-columns: 1fr;
  }
}
@media screen {
  .template-3-grid .asset-container {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 7.5px;
  }
  .template-3-grid.assets .asset img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: none;
  }
  .page-layout-grid .block-media {
    container-type: inline-size;
  }
  .page-layout-grid .block-media.block-layout-alignment-block-right,
  .page-layout-grid .block-media.block-layout-alignment-block-left,
  .page-layout-grid .block-media.block-layout-alignment-block-center {
    container-type: normal;
  }
  .page-layout-grid .block-media.has-background {
    align-self: start;
  }
  .media-card.media-embed {
    --grid-column-count: 2 !important;
    --grid-item--min-width: 150px;
    --grid-layout-gap: 24px;
    --gap-count: calc(var(--grid-column-count) - 1);
    --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
    --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
    grid-gap: var(--grid-layout-gap);
    width: 100vw;
    max-width: 100%;
    align-items: stretch;
    color: #000;
  }
  .media-card.media-embed a:link,
  .media-card.media-embed a:visited {
    color: var(--accent);
  }
  .media-card.media-embed .resource {
    display: flex;
    background-color: #fff;
    padding: 30px;
    align-items: center;
    border: 1px solid var(--light);
    height: 100%;
  }
  .media-card.media-embed .resource-meta {
    width: 50%;
    padding-left: 30px;
  }
  .media-card.media-embed .resource > a,
  .media-card.media-embed .media-render {
    max-width: 50%;
  }
  .media-card.media-embed .resource:not(:last-child) {
    margin-bottom: 0;
  }
  @container (max-width:799px) {
    .media-card.media-embed {
      --grid-column-count: 1 !important;
    }
  }
  ul.resource-list {
    list-style-type: none;
    padding-left: 0;
  }
  ul.resource-list .resource {
    border-bottom: 1px solid var(--light);
    padding-bottom: 29px;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
  }
  ul.resource-list .resource > *:last-child {
    margin-bottom: 0;
  }
  ul.resource-list .resource:first-child {
    border-top: 1px solid var(--light);
    padding-top: 29px;
  }
  ul.resource-list .resource img {
    height: auto;
    width: 60px;
    float: right;
    margin-left: 15px;
  }
  ul.resource-list .resource h4 {
    margin-top: 0;
  }
  .body-truncate-fade ul.resource-list .resource .description {
    overflow: hidden;
    max-height: 120px;
    position: relative;
  }
  .body-truncate-fade ul.resource-list .resource .description:after {
    content: "";
    position: absolute;
    top: 82.5px;
    left: 0;
    right: 0;
    height: 37.5px;
    background: linear-gradient(to top, rgb(248, 248, 248), rgba(248, 248, 248, 0));
  }
  .body-truncate-fade .light-accent ul.resource-list .resource .description::after {
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
  }
  .body-truncate-fade .dark-accent ul.resource-list .resource .description::after {
    background: linear-gradient(to top, rgba(var(--bold), 1), rgba(var(--bold), 0));
  }
  .body-truncate-ellipsis ul.resource-list .resource .description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  ul.resource-list .resource img ~ * {
    width: calc(100% - 75px);
  }
  .search-filters {
    margin-bottom: 30px;
  }
  .search-filters .filter {
    display: inline-flex;
  }
  .filter-label,
  .filter-value {
    display: inline-block;
    border: 1px solid var(--light);
    padding: 6.5px;
  }
  .filter-label {
    background-color: var(--light);
  }
  .browse-controls {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .browse-controls .pagination {
    display: flex;
  }
  .advanced-search {
    line-height: 45px;
  }
  .expand:after,
  .collapse:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  .expand:after {
    content: "\f0da";
  }
  .collapse:after {
    content: "\f0d7";
  }
  .collapsible {
    display: none;
  }
  .collapse + .collapsible {
    display: block;
    border-left: 3px solid var(--gray);
    padding: 7.5px 30px;
    margin: 15px 0;
    width: 100%;
  }
  body.resource #content > h2:first-of-type + h3 {
    font-size: 15px;
    text-transform: uppercase;
    margin: -30px 0 30px;
  }
  .property {
    margin-bottom: 30px;
  }
  .property:last-child {
    margin-bottom: 0;
  }
  .property dt {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: bold;
  }
  .property dt:first-child {
    margin-top: 0;
  }
  .value {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 0;
  }
  .value:not(:last-child) {
    margin-bottom: 15px;
  }
  .value-content:not(:only-child) {
    margin-right: 7.5px;
  }
  .resource-link img {
    width: auto;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 7.5px;
  }
  .property .value a {
    display: inline-block;
    vertical-align: bottom;
  }
  .property .value:not(:last-child) img {
    margin-bottom: 7.5px;
  }
  .property .value:not(:last-child) img + a {
    margin-bottom: 7.5px;
  }
  .property .value .language {
    background-color: var(--light);
    padding: 0 7.5px;
    font-size: 15px;
    margin-right: 7.5px;
  }
  .property .private:after {
    content: "\f070";
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    font-weight: 900;
  }
  .media-list .resource-link {
    width: 100%;
    display: block;
  }
  .media-list .resource-link:not(:last-child) {
    margin-bottom: 15px;
  }
  .media-render > * {
    max-width: 100%;
  }
  #linked-resources caption {
    text-align: left;
    font-weight: bold;
    border-bottom: 3px solid var(--gray);
    padding: 7.5px 15px 4.5px;
  }
  .linked-header {
    margin-bottom: 15px;
  }
  #linked-filter {
    margin-bottom: 15px;
  }
  #linked-filter label {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .linked-header nav.pagination {
    margin-bottom: 0;
  }
  #linked-resources table {
    margin: 15px 0;
  }
  #linked-filter h4 {
    margin-bottom: 15px;
  }
  #linked-resources .resource-link {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  #advanced-search .value:not(:last-child) {
    margin-bottom: 15px;
  }
  .remove-value {
    position: relative;
    width: 45px;
    margin-left: 7.5px;
  }
  .results {
    margin-bottom: 60px;
    clear: both;
  }
  .results ul {
    list-style: none;
    padding-left: 0;
  }
  .results .result-title {
    font-weight: bold;
  }
  .results > ul {
    margin: -15px 0 0 0;
  }
  .results .result-site,
  .results ul ul {
    display: block;
    padding-left: 15px;
  }
  .results > ul > li {
    margin-bottom: 30px;
  }
  .pagination + .results {
    margin: 30px 0 0;
    clear: both;
  }
  .sitewide-search-form {
    display: none;
  }
  .sitewide-search-form ~ .results + .pagination {
    margin-top: 0;
  }
  .sitewide-search-form ~ .advanced-search {
    display: block;
  }
  .sitewide-search-form ~ h2 {
    width: 50%;
    float: left;
  }
  .sitewide-search-form ~ .pagination {
    margin: 37.5px 0 30px;
    text-align: right;
    width: 50%;
    float: right;
  }
  .sitewide-search-form ~ p {
    clear: both;
  }
  .index.search .results ul li {
    margin-bottom: 7.5px;
    padding-bottom: 7.5px;
    border-bottom: 1px solid var(--gray);
  }
  .items.search #search {
    display: none;
  }
  a.metadata-browse-link {
    font-size: 15px;
  }
  .site-page-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 80px 60px;
  }
  .site-page-main {
    flex: 1;
    min-width: 0;
    max-width: 840px;
  }
  .site-page-header {
    margin-bottom: 32px;
  }
  .site-page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
  }
  .site-page-date {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 0 16px;
  }
  .site-page-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 0;
  }
  .site-page-blocks {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
  }
  .site-page-blocks h2, .site-page-blocks h3 {
    margin-top: 2em;
    margin-bottom: 0.5em;
  }
  .site-page-blocks p {
    margin: 0 0 1em;
  }
  .site-page-blocks img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5em 0;
  }
  .site-page-toc {
    flex: none;
    width: 280px;
    background-color: var(--surface);
    border-radius: 4px;
    padding: 20px;
    position: sticky;
    top: 20px;
  }
  .site-page-toc-heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
  }
  .site-page-toc-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 0 0 12px;
  }
  .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .toc-item {
    margin-bottom: 8px;
  }
  .toc-item.toc-item--sub {
    padding-left: 12px;
  }
  .toc-link {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
  }
  .toc-link:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 799px) {
  /* Header */
  h1.site-title {
    font-size: 16px;
    padding: 0 16px;
  }
  #search form {
    padding: 7.5px 16px;
  }
  #search form input[type=text] {
    width: 100%;
    max-width: none;
    flex: 1;
  }
  /* Banner */
  .banner-content {
    padding: 40px 24px;
  }
  .banner-title {
    font-size: 28px;
  }
  .banner-subtitle {
    font-size: 15px;
  }
  /* Collections block */
  .collections-block {
    padding: 32px 24px 40px;
  }
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Recent items */
  .recent-items-block {
    padding: 8px 24px 40px;
  }
  /* Site page */
  .site-page-layout {
    flex-direction: column;
    padding: 32px 24px 40px;
    gap: 32px;
  }
  .site-page-toc {
    width: 100%;
    position: static;
  }
  /* Item sets browse */
  .item-sets-browse {
    padding: 32px 24px 40px;
  }
  .item-sets-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Footer about */
  .footer-about {
    padding: 18px 24px;
  }
  .footer-credit {
    padding: 30px 24px;
  }
}
@media screen {
  .item-show-layout {
    padding: 0 80px 60px;
  }
  .item-show-breadcrumb {
    padding: 14px 0;
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
  }
  .item-show-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
  }
  .item-show-breadcrumb a:hover {
    color: var(--accent);
  }
  .item-show-breadcrumb .breadcrumb-sep {
    margin: 0 6px;
  }
  .item-show-breadcrumb .breadcrumb-current {
    color: var(--text-dark);
  }
  .item-show-body {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
  }
  .item-show-media {
    flex: 0 0 480px;
  }
  .item-show-media img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
  }
  .item-show-media .item-show-media-placeholder {
    width: 100%;
    height: 380px;
    background: #c7b8a8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #998c80;
    font-size: 16px;
  }
  .item-show-media-links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .item-show-media-links a {
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid var(--accent-light);
    border-radius: 2px;
    padding: 4px 10px;
  }
  .item-show-media-links a:hover {
    background: var(--accent-light);
  }
  .item-show-info {
    flex: 1;
  }
  .item-show-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 8px;
  }
  .item-show-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 16px;
  }
  .item-show-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 16px;
  }
  .item-show-meta {
    margin: 0;
  }
  .item-show-meta-row {
    padding: 10px 0;
  }
  .item-show-meta-row dt {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .item-show-meta-row dd {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
  }
  .item-show-meta-row dd a {
    color: var(--accent);
    text-decoration: none;
  }
  .item-show-meta-row dd a:hover {
    text-decoration: underline;
  }
  .item-show-meta-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }
  .item-show-related {
    border-top: 1px solid var(--border);
    padding-top: 32px;
  }
  .item-show-related-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px;
  }
  .item-show-related-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .item-show-related-card .item-show-related-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .item-show-related-card .item-show-related-link:hover .item-show-related-title {
    color: var(--accent);
  }
  .item-show-related-card .item-show-related-image {
    height: 160px;
    background: #c7b8a8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .item-show-related-card .item-show-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .item-show-related-card .item-show-related-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    transition: color 0.15s;
  }
}
@media screen and (max-width: 799px) {
  .item-show-layout {
    padding: 0 24px 40px;
  }
  .item-show-body {
    flex-direction: column;
    gap: 28px;
  }
  .item-show-media {
    flex: none;
    width: 100%;
  }
  .item-show-related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen {
  .search-results-layout {
    padding: 40px 80px 60px;
  }
  .search-results-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px;
  }
  .search-results-bar {
    background: white;
    border-radius: 4px;
    padding: 0 16px;
    height: 56px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
  }
  .search-results-form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
  }
  .search-results-query {
    flex: 1;
    font-size: 16px;
    color: var(--text-dark);
  }
  .search-results-submit {
    background: var(--accent-pink);
    color: white;
    border: none;
    border-radius: 2px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
  }
  .search-results-submit:hover {
    background: #d44d6c;
  }
  .search-filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
  }
  .search-tab {
    background: var(--surface-subtle);
    border: none;
    border-radius: 2px 2px 0 0;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    font-family: "Inter", "Open Sans", sans-serif;
    margin-bottom: -1px;
  }
  .search-tab.active {
    background: var(--accent-pink);
    color: white;
    font-weight: 700;
  }
  .search-tab:not(.active):hover {
    background: var(--border);
  }
  .search-results-list {
    margin-top: 0;
  }
  .search-result-row {
    padding: 20px 0;
  }
  .search-result-row .search-result-link {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
  }
  .search-result-row .search-result-link:hover .search-result-title {
    text-decoration: underline;
  }
  .search-result-thumb {
    flex: 0 0 80px;
    height: 72px;
    background: #c7b8a8;
    border-radius: 2px;
    overflow: hidden;
  }
  .search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .search-result-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.3;
  }
  .search-result-meta {
    font-size: 11px;
    color: var(--text-muted);
  }
  .search-result-desc {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.5;
  }
  .search-result-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }
  .search-results-empty {
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 15px;
  }
  .search-results-viewall {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    flex-wrap: wrap;
  }
  .search-results-viewall .search-viewall-link {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
  }
  .search-results-viewall .search-viewall-link:hover {
    text-decoration: underline;
  }
  .error-404-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px 100px;
    min-height: 60vh;
  }
  .error-404-code {
    font-size: 96px;
    font-weight: 700;
    color: #bfb8b2;
    line-height: 1;
    margin: 0 0 16px;
  }
  .error-404-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px;
  }
  .error-404-body {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 40px;
  }
  .error-404-home {
    display: inline-block;
    background: var(--accent-pink);
    color: white;
    font-family: "Inter", "Open Sans", sans-serif;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 2px;
    margin-bottom: 20px;
  }
  .error-404-home:link, .error-404-home:visited {
    color: white;
  }
  .error-404-home:hover, .error-404-home:active {
    background: #d44d6c;
    color: white;
  }
  .error-404-search-prompt {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
  }
}
@media screen and (max-width: 799px) {
  .search-results-layout {
    padding: 32px 24px 40px;
  }
  .search-filter-tabs {
    flex-wrap: wrap;
  }
  .search-result-row .search-result-link {
    gap: 12px;
  }
  .search-result-thumb {
    flex: 0 0 60px;
    height: 56px;
  }
}
@media screen {
  .items-browse-layout {
    padding: 40px 80px 60px;
  }
  .items-browse-header {
    margin-bottom: 16px;
  }
  .items-browse-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px;
  }
  .items-browse-count {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
  }
  .items-browse-toolbar {
    background: white;
    border-radius: 2px;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    margin-bottom: 0;
  }
  .items-browse-filters-btn {
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    background: var(--surface-subtle);
    border-radius: 2px;
    padding: 8px 16px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .items-browse-filters-btn:link, .items-browse-filters-btn:visited {
    color: var(--text-dark);
  }
  .items-browse-filters-btn:hover {
    background: var(--border);
    color: var(--text-dark);
  }
  .sort-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    flex-wrap: wrap;
  }
  .sort-label {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
  }
  .sort-sep {
    color: var(--border);
    font-size: 13px;
  }
  .sort-option {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
  }
  .sort-option:link, .sort-option:visited {
    color: var(--text-muted);
  }
  .sort-option:hover {
    color: var(--text-dark);
  }
  .sort-option--active {
    color: var(--text-dark);
    font-weight: 600;
  }
  .sort-option--active:link, .sort-option--active:visited {
    color: var(--text-dark);
  }
  .items-browse-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
  }
  .items-browse-row {
    padding: 20px 0;
  }
  .items-browse-row .items-browse-link {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
  }
  .items-browse-row .items-browse-link:hover .items-browse-item-title {
    text-decoration: underline;
  }
  .items-browse-thumb {
    flex: 0 0 80px;
    height: 72px;
    background: #c7b8a8;
    border-radius: 2px;
    overflow: hidden;
  }
  .items-browse-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .items-browse-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
  }
  .items-browse-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.3;
  }
  .items-browse-meta {
    font-size: 12px;
    color: var(--text-muted);
  }
  .items-browse-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }
  .items-browse-pagination {
    padding-top: 24px;
  }
}
@media screen and (max-width: 799px) {
  .items-browse-layout {
    padding: 32px 24px 40px;
  }
  .items-browse-toolbar {
    height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
  }
}
@media screen {
  .bdhc-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    padding-top: 24px;
  }
  .bdhc-pagination-prev,
  .bdhc-pagination-next {
    min-width: 100px;
  }
  .bdhc-pagination-next {
    text-align: right;
  }
  .bdhc-pagination-link {
    color: var(--accent);
    text-decoration: none;
  }
  .bdhc-pagination-link:link, .bdhc-pagination-link:visited {
    color: var(--accent);
  }
  .bdhc-pagination-link:hover {
    color: var(--accent-hover);
  }
  .bdhc-pagination-link--disabled {
    color: var(--border);
    cursor: default;
  }
  .bdhc-pagination-info {
    color: var(--text-dark);
    text-align: center;
  }
  .adv-search-layout {
    padding: 40px 80px 60px;
    max-width: 1440px;
  }
  .adv-search-header {
    margin-bottom: 32px;
  }
  .adv-search-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
  }
  .adv-search-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
  }
  .adv-search-layout .field,
  .adv-search-layout .advanced-search-content > div {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid var(--border);
  }
  .adv-search-layout .field-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px !important;
    width: 100%;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 0 !important;
  }
  .adv-search-layout .field-meta label,
  .adv-search-layout .field-meta .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0;
  }
  .adv-search-layout .field-meta .expand,
  .adv-search-layout .field-meta .collapsible {
    display: none;
  }
  .adv-search-layout .inputs,
  .adv-search-layout .advanced-search-content .inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 0 !important;
    margin: 0;
  }
  .adv-search-layout .value {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .adv-search-layout input[type=text],
  .adv-search-layout select {
    height: 36px;
    background: var(--surface-subtle);
    border: none;
    border-radius: 2px;
    padding: 0 12px;
    font-size: 13px;
    font-family: "Inter", "Open Sans", sans-serif;
    color: var(--text-dark);
    appearance: none;
    -webkit-appearance: none;
    outline: none;
  }
  .adv-search-layout input[type=text]:focus,
  .adv-search-layout select:focus {
    box-shadow: 0 0 0 2px var(--accent-light);
  }
  #fulltext_search_field .inputs {
    width: 100%;
  }
  #fulltext_search_field input[type=text] {
    width: 100% !important;
    box-sizing: border-box;
    display: block;
  }
  .adv-search-layout .joiner {
    width: 80px;
    flex-shrink: 0;
  }
  .adv-search-layout .query-property {
    width: 240px;
    flex-shrink: 0;
  }
  .adv-search-layout .query-type {
    width: 180px;
    flex-shrink: 0;
  }
  .adv-search-layout .query-text {
    flex: 1;
    min-width: 200px;
  }
  #resource-class select,
  #item-sets select:not(.item-set-select-type) {
    width: 460px;
  }
  #item-sets .item-set-select-type {
    width: 110px;
    flex-shrink: 0;
  }
  #has_media {
    width: 320px;
  }
  .adv-search-layout .field-meta .add-value {
    display: none;
  }
  .adv-search-layout .add-condition-btn {
    display: inline-block;
    position: static !important;
    margin-top: 12px;
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-family: "Inter", "Open Sans", sans-serif;
    color: var(--accent);
    cursor: pointer;
    text-align: left;
    width: 25%;
  }
  .adv-search-layout .add-condition-btn:hover {
    color: var(--accent-hover);
  }
  .adv-search-layout .remove-value {
    background: none;
    border: none;
    padding: 4px 6px;
    font-size: 13px;
    font-family: "Inter", "Open Sans", sans-serif;
    color: var(--border);
    cursor: pointer;
    flex-shrink: 0;
  }
  .adv-search-layout .remove-value:hover {
    color: var(--text-muted);
  }
  .adv-search-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
  }
  .adv-search-submit {
    background: var(--accent-pink);
    color: white;
    border: none;
    border-radius: 2px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    font-family: "Inter", "Open Sans", sans-serif;
    cursor: pointer;
  }
  .adv-search-submit:hover {
    background: #d44d6c;
  }
  .adv-search-clear {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
  }
  .adv-search-clear:link, .adv-search-clear:visited {
    color: var(--text-muted);
  }
  .adv-search-clear:hover {
    color: var(--text-dark);
  }
}
@media screen and (max-width: 799px) {
  .adv-search-layout {
    padding: 32px 24px 40px;
  }
  .adv-search-layout .value {
    flex-direction: column;
    align-items: stretch;
  }
  .adv-search-layout .joiner,
  .adv-search-layout .query-property,
  .adv-search-layout .query-type,
  #resource-class select,
  #item-sets select {
    width: 100%;
  }
}
@media screen {
  .home-banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--hero-bg);
    min-height: 600px;
    isolation: isolate;
  }
  .home-banner-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    animation: home-banner-pan 24s ease-in-out infinite alternate;
  }
  .home-banner.is-expanded .home-banner-media {
    animation-play-state: paused;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  .home-banner-media {
    animation: none;
  }
}
@media screen {
  .home-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 65%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .home-banner:hover .home-banner-overlay {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .home-banner-content {
    position: relative;
    z-index: 1;
    padding: 64px 80px;
    max-width: 700px;
  }
  .home-banner-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 7.5px;
  }
  .home-banner-subtitle {
    font-size: 18px;
    color: #d1ccc7;
    margin: 0 0 15px;
  }
  .home-banner-cta {
    border: 1px solid var(--light);
    background-color: var(--light);
    border-radius: 2px;
    padding: 7.5px;
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    cursor: pointer;
    color: #000;
    background-color: var(--accent-pink);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .home-banner-cta:hover {
    opacity: 1;
  }
  .home-banner-cta:hover, .home-banner-cta:focus {
    transform: scale(1.04);
    opacity: 1;
  }
  .home-banner-cta-es {
    opacity: 0.85;
  }
  .home-banner-cta-es::before {
    content: " / ";
  }
  .home-banner-panel {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    padding: 0 80px;
    transition: max-height 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .home-banner-panel:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 32px;
  }
  .home-banner-panel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
  }
  .home-banner-panel-list a {
    display: block;
    padding: 10px 20px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .home-banner-panel-list a:hover, .home-banner-panel-list a:focus {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .home-banner-panel-link-es {
    display: block;
    font-size: 12px;
    opacity: 0.8;
  }
  @keyframes home-banner-pan {
    from {
      transform: scale(1.06) translate(0, 0);
    }
    to {
      transform: scale(1.12) translate(-1.5%, -1.5%);
    }
  }
}
@media screen and (max-width: 799px) {
  .home-banner-content {
    padding: 40px 24px;
  }
  .home-banner-panel {
    padding: 0 24px;
  }
  .home-banner-title {
    font-size: 28px;
  }
  .home-banner-subtitle {
    font-size: 15px;
  }
}
@media screen and (min-width: 800px) {
  #content {
    padding: 0 60px 0;
  }
  table {
    margin: 30px 0;
    border-collapse: collapse;
  }
  th,
  td {
    text-align: left;
    padding: 7.5px 15px;
    padding-bottom: 6.5px;
    border-bottom: 1px solid var(--gray);
  }
  .field .field-meta {
    width: 30%;
    align-self: flex-start;
  }
  .field .inputs {
    width: 70%;
    padding-left: 30px;
  }
  .field .value select {
    width: initial;
    margin-bottom: 0;
  }
  /* @group ----- Header ----- */
  header {
    position: relative;
    margin-bottom: 0;
    background-color: var(--surface);
  }
  h1.site-title {
    padding: 0 48px;
    position: static;
    display: flex;
    align-items: center;
    height: 72px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    color: var(--text-dark);
  }
  h1.site-title:before {
    display: none;
  }
  #top-nav {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 0;
  }
  #top-nav:before, #top-nav:after {
    display: none;
  }
  #top-nav ul.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    height: auto;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  #top-nav ul.navigation > li {
    border: 0;
    height: auto;
  }
  #top-nav ul.navigation > li > a {
    font-size: 13px;
    color: var(--accent);
    padding: 0;
    margin: 0;
    white-space: nowrap;
  }
  #top-nav ul.navigation > li > a:hover {
    background: transparent;
    opacity: 0.75;
  }
  #top-nav #mobile-nav-toggle {
    display: none;
  }
  #top-nav ul.navigation > li > ul {
    display: none !important;
  }
  .site-title {
    border-bottom: 1px solid var(--border);
  }
  #search {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    position: static;
    left: auto;
    transform: none;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
  }
  #search form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 7.5px 48px;
    border-left: 0;
    border-right: 0;
    gap: 0;
  }
  #search form input[type=text] {
    width: 820px;
    max-width: 65vw;
    height: 36px;
    font-size: 14px;
    line-height: 36px;
    background-color: var(--surface-subtle);
    border: 1px solid var(--border);
    border-right: 0;
    border-radius: 2px 0 0 2px;
    padding: 0 12px;
    color: var(--text-muted);
  }
  #search form button[type=submit] {
    width: 88px;
    height: 36px;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    background-color: var(--accent);
    color: var(--text-on-accent);
    border-radius: 0 2px 2px 0;
    text-indent: 0;
  }
  #search form button[type=submit]:before {
    display: none;
  }
  .banner {
    z-index: 0;
    min-height: 300px;
    margin-bottom: 0;
  }
  #content {
    margin-top: 0;
  }
  /* @end */
  /* @group ----- Footer ----- */
  footer {
    padding: 0;
  }
  /* @end */
  /* @group ----- Navigation ----- */
  #mobile-nav-toggle {
    display: none;
  }
  header nav {
    margin: 0 auto !important;
    position: static;
    padding: 0 60px;
  }
  header nav ul a {
    padding: 0;
  }
  header nav ul li {
    position: static;
  }
  header nav ul a:hover {
    background-color: transparent;
  }
  header nav ul li,
  header nav > ul li:last-child,
  header nav > ul ul:hover > li {
    border: 0;
  }
  header nav ul.navigation {
    margin-left: -7.5px;
    position: static;
    display: flex;
    align-items: flex-end;
    height: auto;
    overflow: visible;
  }
  header nav ul.navigation li ul:before {
    display: none;
  }
  header nav ul.navigation > li:not(:last-child) {
    margin-right: 15px;
  }
  header nav ul.navigation > li > ul {
    display: none;
  }
  header nav ul.navigation > li:hover > ul, header nav ul.navigation > .parent > ul.open {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    list-style: none;
    width: 100%;
    padding: 14px 60px;
    border-bottom: 0;
    border-color: var(--light);
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    z-index: 1;
  }
  header nav ul.navigation > li:hover > ul:after, header nav ul.navigation > .parent > ul.open:after {
    content: "";
    left: -9999px;
    right: -9999px;
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    border-bottom: 1px solid var(--light);
    border-top: 1px solid var(--light);
    z-index: -1;
  }
  header nav ul.navigation > li > ul > li {
    width: 25%;
    font-size: 15px;
    font-weight: bold;
  }
  header nav ul.navigation > li > ul > li ul {
    font-weight: normal;
    padding-left: 15px;
    list-style-type: none;
    height: auto;
  }
  header nav ul.navigation li.parent {
    position: static;
  }
  header nav > ul ul li {
    height: auto;
    overflow: visible;
  }
  header nav > ul > li > a {
    margin: 7.5px;
  }
  header nav > ul > li > * {
    display: inline-flex;
    width: 100%;
  }
  header nav ul.open > li {
    border-top: 0;
  }
  header nav > ul > li > .parent-link > a {
    margin: 7.5px 0 7.5px 7.5px;
    width: calc(100% - 30px);
    position: relative;
  }
  header nav ul .child-toggle {
    display: inline-block;
    padding: 0;
    border-left: 0;
    width: 30px;
    color: var(--accent);
  }
  header nav .parent .parent .child-toggle {
    display: none;
  }
  header nav ul ul {
    display: block;
  }
  /* Second and Third level items */
  header .parent ul a {
    padding-left: 0;
  }
  header .parent .parent .parent ul a {
    padding-left: 15px;
  }
  .sub-menu ul {
    border-bottom: 1px solid var(--light);
    padding-bottom: 14px;
  }
  .sub-menu li {
    display: inline-block;
    border: 0;
    padding: 0;
    margin-right: 15px;
  }
  .sub-menu li:first-of-type {
    border: 0;
    padding: 0;
  }
  .items.search #search {
    display: block;
  }
  /* @end */
  /* @group ----- Resource List ----- */
  ul.resource-list .resource img {
    width: 120px;
    height: auto;
    float: right;
    margin-left: 15px;
  }
  ul.resource-list .resource img ~ * {
    width: calc(100% - 135px);
  }
  /* @end */
  /* @group ----- Item Set ----- */
  body.item-set.item #content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
  }
  body.item-set.item #content > h2, body.item-set.item #content > h3 {
    width: 100%;
  }
  body.item-set .metadata {
    width: 35%;
    border-left: 5px solid var(--light);
    padding: 0 30px;
  }
  body.item-set .metadata h4:first-of-type {
    margin-top: 0;
  }
  body.item-set #content .metadata ~ * {
    width: 65%;
    border-left: 1px solid var(--light);
    padding-left: 30px;
  }
  body.item-set .item-set-items h3 {
    margin-top: 0;
  }
  body.item-set .metadata ~ nav.pagination:first-of-type {
    margin-bottom: 0;
  }
  /* @group ----- Search ----- */
  .results > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .results > ul > li {
    width: calc(50% - 30px);
  }
  .results > ul > li:nth-child(2n) {
    margin-left: 30px;
  }
  /* @end */
  /* @group ----- Page and blocks ----- */
  .preview-block {
    clear: both;
  }
  ul.preview.resource-list li:first-of-type {
    border-top: 1px solid var(--light);
    padding-top: 29px;
  }
  /* @end */
}