.museum-shell {
  min-height: 100vh;
}

.museum-page-wrap,
.museum-breadcrumb,
.museum-search-toolbar {
  width: var(--content-width);
  margin: 0 auto;
}

.museum-home-hero::before {
  display: none;
}

.museum-page-wrap {
  padding: 48px 0 72px;
}

.museum-page-wrap--home {
  width: min(1560px, calc(100vw - 40px));
  padding-bottom: 0;
    background: #fdf6ec;
}

.museum-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 22px 0 0;
  color: var(--ink-light);
  font-size: 0.95rem;
}

.museum-breadcrumb a:hover {
  color: var(--primary);
}

.museum-breadcrumb-sep {
  opacity: 0.65;
}

.museum-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  margin-top: 28px;
}

.museum-side-stack {
  display: grid;
  gap: 24px;
}

.museum-card,
.museum-side-card,
.museum-article-card,
.museum-rich-card,
.museum-search-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.museum-card,
.museum-rich-card,
.museum-search-card {
  padding: 28px;
}

.museum-side-card {
  padding: 22px;
}

.museum-section-stack {
  display: grid;
  gap: 24px;
}

.museum-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.museum-card-head h2,
.museum-side-card h3,
.museum-rich-card h1,
.museum-rich-card h2,
.museum-search-card h2 {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
}

.museum-card-head p,
.museum-side-card p,
.museum-search-card p,
.museum-rich-summary {
  margin: 8px 0 0;
  color: var(--ink-light);
  line-height: 1.8;
}

.museum-link {
    color: #6b4c2a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

.museum-link:hover {
  color: #6b4c2ae8;
}

.museum-nav-item {
  position: relative;
}

.museum-nav-item.has-subnav .museum-nav-trigger {
  position: relative;
  z-index: 31;
}

.museum-subnav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(48, 25, 16, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 180ms ease;
  z-index: 30;
}

.museum-subnav a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
}

.museum-subnav a:hover,
.museum-subnav .is-active > a {
  background: var(--accent-soft);
  color: var(--primary-deep);
}

.museum-nav-item:hover > .museum-subnav,
.museum-nav-item:focus-within > .museum-subnav,
.museum-nav-item.is-open > .museum-subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.museum-search-toggle {
  cursor: pointer;
}

.museum-search-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: min(420px, calc(100vw - 32px));
  padding: 16px;
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(48, 25, 16, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 180ms ease;
  z-index: 30;
}

.museum-search-popover.is-open .museum-search-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.museum-search-form {
  display: grid;
  gap: 12px;
}

.museum-search-form input,
.museum-search-keyword input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.museum-search-form button,
.museum-search-toolbar button,
.museum-cta,
.museum-pagination .museum-pagination a,
.museum-pagination .museum-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff7ee;
}

.museum-search-form button:hover,
.museum-search-toolbar button:hover,
.museum-cta:hover {
  background: var(--primary-deep);
}

.museum-news-list,
.museum-side-list,
.museum-tag-list,
.museum-search-filters {
  display: grid;
  gap: 16px;
}

.museum-side-row,
.museum-news-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.museum-news-row img,
.museum-side-row img,
.museum-related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 5px;
}

.museum-side-row h4,
.museum-news-row h3,
.museum-related-card h4 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.5;
}

.museum-side-row p,
.museum-news-row p,
.museum-related-card p,
.museum-meta,
.museum-list-meta,
.museum-search-meta {
  margin: 0;
  color: var(--ink-light);
  line-height: 1.8;
}

.museum-article-card {
  overflow: hidden;
}

.museum-article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.museum-article-body {
  padding: 22px;
}

.museum-rich-card h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.museum-rich-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.museum-richtext,
.museum-richtext p,
.museum-richtext li {
  color: var(--ink);
  line-height: 1.95;
}

.museum-richtext img {
  border-radius: 20px;
}

.museum-richtext table {
  width: 100%;
  border-collapse: collapse;
}

.museum-richtext table td,
.museum-richtext table th {
  border: 1px solid var(--line);
  padding: 10px 12px;
}

.museum-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.museum-related-card {
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.museum-related-body {
  padding: 18px;
}

.museum-search-toolbar {
  padding: 22px 0 0;
}

.museum-search-card {
  display: grid;
  gap: 18px;
}

.museum-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.museum-search-label {
  min-width: 72px;
  color: var(--ink-light);
}

.museum-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.museum-filter-pills a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.museum-filter-pills a.is-active,
.museum-filter-pills a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff7ee;
}

.museum-search-keyword {
  flex: 1;
  min-width: 220px;
}

.museum-pagination {
  margin-top: 12px;
}

.museum-pagination .museum-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.museum-pagination .museum-pagination span {
  background: var(--accent);
  color: #3d261a;
}

.museum-empty {
  padding: 18px 0;
  color: var(--ink-light);
}

.museum-home-section {
  padding: 76px 0 82px;
}

.museum-home-section--compact {
  padding-top: 28px;
}

.museum-home-section--collections {
  padding-top: 24px;
}



.museum-home-section--collections .section-copy .museum-link:hover,
.museum-home-notice-head > .museum-link:hover {
  color: #6a4a32;
}

.museum-home-section--accent {
  background: #91765d;
  color: #fbe9d5;
}

.museum-home-accent-inner {
  width: min(1560px, calc(100vw - 40px));
  margin: 0 auto;
}

.museum-home-section--accent .section-copy,
.museum-home-section--accent .muted,
.museum-home-section--accent p {
  color: rgba(253, 237, 219, 0.8);
}

.museum-home-section--accent .section-title{
    color: #fff;
}

.section-header .section-copy .museum-home-section--accent .eyebrow{
    color: #c8922a;
}

.museum-home-section--accent h2,
.museum-home-section--accent h3,
.museum-home-section--accent a {
   color: #c8b08a;
}

.museum-home-hall-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.museum-home-hall-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 0;
  background: #23160f;
  box-shadow: var(--shadow);
   transition: transform 0.3s ease; 
}

.museum-home-hall-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 8, 5, 0.02), rgba(15, 8, 5, 0.58));
}

.museum-home-hall-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.14) saturate(1.04);
   transition: transform 0.3s ease; 
}
.museum-home-hall-card:hover img {
  transform: scale(1.05); 
  transition: transform 0.3s ease; 
}
.museum-home-hall-body {
  position: absolute;
  inset: auto 18px 85px;
  z-index: 1;
  color: #fff1df;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
}

.museum-home-hall-index {
  display: block;
  margin-bottom: 12px;
  color: rgba(220, 183, 108, 0.88);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.museum-home-hall-body h3 {
  margin: 0 0 6px;
  font-family:'微软雅黑';
  font-size: 1.25rem;
  line-height: 1.08;
  font-weight: 300;
}

.museum-home-hall-body p {
  margin: 0;
  color: rgba(255, 240, 223, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

.museum-home-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 404px;
  gap: 36px;
  align-items: start;
}

.museum-home-artifact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.museum-home-artifact-card {
  position: relative;
}

.museum-home-artifact-card img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.6);
}
.kbmk{
    background: #fff;
    padding: 10px;
}
.museum-home-artifact-card h3 {
  padding: 14px 0 6px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--primary);
  margin: 0;
}

.museum-home-artifact-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.museum-home-article-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    background: rgba(53, 35, 24, 0.88);
    color: #f7dfbf;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    border: 1px solid #f7dfbf;
}

.museum-home-artifact-card a {
    color: #8b6040;
    font-weight: 500;
}

.museum-home-notice-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.museum-home-notice-head h2 {
  margin: 10px 0 0;
  font-family: var(--display-serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: #6b4c2a;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.museum-home-notice-list {
  display: grid;
  gap: 0;
}

.museum-home-notice-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 5px 16px;
  border: 1px solid rgba(195, 166, 126, 0.18);
}

.museum-home-notice-date font {
    display: block;
    color: #d19c43;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: lighter;
    text-align: center;
}

.museum-home-notice-date span {
  display: block;
  margin-top: 4px;
  color: #c08d4b;
  font-size: 0.85rem;
  text-align: center;
}

.museum-home-notice-item h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #5f3d2a;
    font-weight: 500;
}

.museum-home-notice-item p {
  margin: 0;
  color: var(--ink-light);
  line-height: 1.72;
}

.museum-home-notice-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.museum-home-notice-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background: #91765d;
  color: #f4ebde;
  font-size: 0.75rem;
  line-height: 1.4;
    min-width: 76px;
}



.museum-home-notice-fresh {
    color: #d1a04f;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.museum-home-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.museum-home-program-card {
  background: #3d1f14;
  overflow: hidden;
}

.museum-home-program-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #3b2418;
}

.museum-home-program-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 18, 12, 0.1) 0%, rgba(42, 18, 12, 0) 24%, rgba(42, 18, 12, 0.08) 100%);
  pointer-events: none;
}

.museum-home-program-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--program-focus, 70%);
  transform: scale(var(--program-scale, 1.18));
  transform-origin: center;
  filter: brightness(0.6);
  transition: 0.3s ease;
}
.museum-home-program-card:hover .museum-home-program-media img{
    filter: brightness(1);
}
.museum-home-program-tag {
  position: absolute;
  left: 22px;
  top: 18px;
  z-index: 2;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  background: linear-gradient(180deg, #d2aa58 0%, #bb8b3e 100%);
  color: #fff7e8;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(58, 26, 14, 0.18);
    gap: 6px;
    display: flex;
    align-items: center;
}
.museum-home-program-tag img{
    filter: brightness(1);
}


.museum-home-program-body {
  background: #2d1508;
  padding: 20px 22px 24px;
}

.museum-home-program-body .muted {
  color: rgba(234, 200, 156, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.museum-home-program-body h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.18;
}
.museum-home-program-body h3 a{
    color: #f0e0c0;  
}
.museum-home-program-body p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.78;
  color: #c8aa78;
}

.museum-home-program-body .program-meta {
  font-size: 0.98rem;
}

.museum-home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  background: #91765d;
  border: 1px solid #997a55;
}

.museum-home-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid #997a55;
  background: #94775a;
}

.museum-home-stat:last-child {
  border-right: 0;
}

.museum-home-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  color: #e2b15f;
  font-weight: 300;
}
.museum-home-stat strong samp{
        font-size: clamp(1rem, 1vw, 1rem);
        padding-left: 10px;
}

.museum-home-stat span {
  display: block;
  margin-top: 10px;
  color: #e2b15f;
  font-size: 0.96rem;
}

.museum-exhibition-hero {
    position: relative;
    min-height: 334px;
    background-color:#2a1408;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #f8eee0;
}

.museum-exhibition-hero-inner {
  width: min(1560px, calc(100vw - 40px));
  margin: 0 auto;
}

.museum-exhibition-tabs-inner {
  width: min(1560px, calc(100vw - 40px));
  margin: 0 auto;
}

.museum-exhibition-shell {
  width: min(1560px, calc(100vw - 40px));
  margin: 0 auto;
}

.museum-exhibition-hero-inner {
    min-height: 250px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: 53px 0 24px;
}

.museum-exhibition-hero-copy {
  max-width: 560px;
}

.museum-exhibition-eyebrow,
.museum-exhibition-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d5ab57;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.museum-exhibition-eyebrow::before,
.museum-exhibition-section-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.museum-exhibition-hero-copy h1,
.museum-collection-hero-copy h1,
.museum-education-hero-copy h1,
.museum-news-hero-copy h1,
.museum-exhibition-section-head h2 {
  margin: 18px 0 0;
  font-family: var(--display-serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.museum-exhibition-hero-copy h1,
.museum-collection-hero-copy h1,
.museum-education-hero-copy h1,
.museum-news-hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 5rem);
  color: #f5e8d7;
  font-weight: bold;
}

.museum-exhibition-hero-copy p {
  margin: 22px 0 0;
  max-width: 430px;
  color: rgba(245, 233, 215, 0.84);
  font-size: 1.08rem;
  line-height: 1.85;
}

.museum-exhibition-hero-crumb {
  position: absolute;
  right: clamp(28px, 4vw, 72px);
  bottom: 22px;
  z-index: 1;
  color: rgba(219, 184, 113, 0.88);
  font-size: 0.95rem;
  white-space: nowrap;
  text-align: right;
}

.museum-exhibition-tabs {
  background: #c09b6b;
  border-top: 1px solid rgba(233, 177, 92, 0.35);
}

.museum-exhibition-tabs-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.museum-exhibition-tabs a {
    min-width: 132px;
    padding: 14px 20px;
    border-left: 1px solid rgba(233, 177, 92, 0.35);
    color: #f5d7b7;
    font-size: 1.05rem;
    text-align: center;
    font-family: '微软雅黑';
}

.museum-exhibition-tabs a:last-child {
  border-right: 1px solid rgba(233, 177, 92, 0.35);
}

.museum-exhibition-tabs a:hover,
.museum-exhibition-tabs a.is-active {
  background: rgba(190, 72, 41, 0.18);
  color: #fff3df;
}

.museum-exhibition-page {
  padding: 44px 0 70px;
  background: #f6efe6;
}

.museum-exhibition-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px 40px;
  margin-bottom: 34px;
}

.museum-exhibition-section-head h2 {
    font-family: var(--display-serif);
    font-size: clamp(2.5rem, 4vw, 2.4rem);
    color: #6b4c2a;
    font-weight: bold;
    letter-spacing: 0.01em;
}

.museum-exhibition-section-head p {
max-width: 360px;
    margin: 0;
    padding-top: 32px;
    color: #6b4c2a;
    font-size: 1.02rem;
    line-height: 1.8;
    font-weight: 400;
}

.museum-exhibition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
}

.museum-exhibition-card {
  background: #fff;
  box-shadow: 0 24px 44px rgba(80, 53, 34, 0.08);
}

.museum-exhibition-card-media {
  position: relative;
  overflow: hidden;
  background: #2e2017;
  max-height: 220px;
}

.museum-exhibition-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.museum-exhibition-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 8, 0.04) 0%, rgba(20, 12, 8, 0.14) 48%, rgba(20, 12, 8, 0.9) 100%);
  pointer-events: none;
}

.museum-exhibition-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 9px;
  background: #d8a33e;
  color: #be4829;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}

.museum-exhibition-card-overlay {
  position: absolute;
  inset: auto 14px 12px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 4px 14px;
  color: #dcaf59;
}

.museum-exhibition-card-en {
  grid-column: 1 / -1;
  color: rgba(214, 166, 72, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.museum-exhibition-card-overlay h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.02;
  color: #f5ede0;
  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.museum-exhibition-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(209, 161, 66, 0.95);
  font-size: 0.9rem;
  white-space: nowrap;
}

.museum-exhibition-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.museum-exhibition-card-meta span::before {
  content: "";
  width: 1px;
  height: 11px;
  background: rgba(209, 161, 66, 0.5);
}

.museum-exhibition-card-body {
  padding: 18px 16px 20px;
}

.museum-exhibition-card-body h4 {
  margin: 0;
  color: #c8922a;
  font-size: 1.18rem;
  line-height: 1.55;
}

.museum-exhibition-card-body p {
  margin: 8px 0 0;
  color: #7b6554;
  line-height: 1.9;
  min-height: 105px;
}

.museum-exhibition-card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d19a45;
    font-size: 1rem;
    font-weight: 400;
    justify-content: center;
    margin: 0 auto;
}

.museum-exhibition-card-link span {
  font-size: 1rem;
}

.museum-collection-hero {
  position: relative;
  min-height: 334px;
  overflow: hidden;
  background-color: #737769;
  background-image: var(--hero-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #f8eee0;
}

.museum-collection-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(86, 91, 79, 0.42) 0%, rgba(86, 91, 79, 0.26) 28%, rgba(86, 91, 79, 0.08) 48%, rgba(86, 91, 79, 0.04) 100%);
  pointer-events: none;
}

.museum-collection-hero-inner,
.museum-collection-tabs-inner {
  width: min(1560px, calc(100vw - 40px));
  margin: 0 auto;
}

.museum-collection-shell {
  width: min(1560px, calc(100vw - 40px));
  margin: 0 auto;
}

.museum-collection-hero-inner {
  min-height: 286px;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  padding: 40px 0 22px;
}

.museum-collection-hero-copy {
  max-width: 560px;
}

.museum-collection-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d4a851;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.museum-collection-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.museum-collection-hero-copy p {
  margin: 22px 0 0;
  max-width: 520px;
  color: rgba(245, 233, 215, 0.86);
  font-size: 1.02rem;
  line-height: 1.9;
}

.museum-collection-hero-crumb {
  position: absolute;
  right: clamp(28px, 4vw, 72px);
  bottom: 22px;
  z-index: 1;
  color: rgba(221, 184, 106, 0.92);
  font-size: 0.95rem;
  white-space: nowrap;
  text-align: right;
}

.museum-collection-tabs {
  background: #c09b6b;
  border-top: 1px solid rgba(233, 177, 92, 0.3);
}

.museum-collection-tabs-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.museum-collection-tabs a {
  min-width: 108px;
  padding: 15px 24px;
  border-left: 1px solid rgba(233, 177, 92, 0.35);
  color: #f5dcc3;
  font-size: 1.03rem;
  font-weight: 600;
  text-align: center;
}

.museum-collection-tabs a:last-child {
  border-right: 1px solid rgba(233, 177, 92, 0.35);
}

.museum-collection-tabs a:hover,
.museum-collection-tabs a.is-active {
  background: rgba(190, 72, 41, 0.18);
  color: #fff4e6;
}

.museum-collection-page {
  padding: 40px 0 76px;
  background: #f6efe6;
}

.museum-collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 14px;
  margin-bottom: 26px;
}

.museum-collection-search {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #d7af69;
}

.museum-collection-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #75573e;
  outline: none;
}

.museum-collection-search input::placeholder {
  color: #b6a08a;
}

.museum-collection-search-icon,
.museum-collection-filter-icon {
  color: #d0a14b;
  font-size: 1rem;
  line-height: 1;
}

.museum-collection-filter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.museum-collection-filter-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.museum-collection-filter-group {
  display: flex;
  flex: 1 1 620px;
  align-items: center;
  gap: 12px;
}

.museum-collection-filter-tools {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.museum-collection-filter-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d0a14b;
  cursor: pointer;
}

.museum-collection-filter-trigger:hover,
.museum-collection-filter-trigger[aria-expanded="true"] {
  color: #b7822c;
}

.museum-collection-filter-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 8;
  display: none;
  width: 280px;
  padding: 16px;
  background: #fffaf2;
  border: 1px solid #dcc39a;
  box-shadow: 0 18px 36px rgba(90, 60, 37, 0.14);
}

.museum-collection-filter-tools.is-open .museum-collection-filter-panel {
  display: grid;
  gap: 12px;
}

.museum-collection-filter-field {
  display: grid;
  gap: 6px;
}

.museum-collection-filter-field label {
  color: #7f6242;
  font-size: 0.92rem;
  font-weight: 600;
}

.museum-collection-filter-field input,
.museum-collection-filter-field select {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #dcc39a;
  background: #fff;
  color: #75573e;
  font-size: 0.94rem;
  outline: none;
}

.museum-collection-filter-field input::placeholder {
  color: #b6a08a;
}

.museum-collection-filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 4px;
}

.museum-collection-filter-actions button {
  min-width: 72px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #dcc39a;
  background: #fff;
  color: #7d6349;
  font-size: 0.92rem;
  font-weight: 600;
}

.museum-collection-filter-actions button.is-primary {
  border-color: #d4a041;
  background: #d4a041;
  color: #fff4df;
}

.museum-collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.museum-collection-filters button {
  min-height: 30px;
  padding: 0 14px;
  border: 0;
  background: #efe4d1;
  color: #7d6349;
  font-size: 0.96rem;
  font-weight: 600;
}

.museum-collection-filters button.is-active {
  background: #d4a041;
  color: #fff4df;
}

.museum-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 18px;
}

.museum-collection-card {
  background: #fff;
  box-shadow: 0 18px 36px rgba(90, 60, 37, 0.08);
}

.museum-collection-card-media {
  position: relative;
  overflow: hidden;
  background: #2d2018;
}

.museum-collection-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 394 / 220;
  object-fit: cover;
}

.museum-collection-card-badge {
  position: absolute;
  top: 6px;
  right: 4px;
  z-index: 2;
  min-width: 74px;
  min-height: 24px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2b6c49;
  color: #f4efe2;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
}

.museum-collection-card-badge.is-red {
  background: #bf5a2f;
}

.museum-collection-card.is-hidden {
  display: none;
}

.museum-collection-card-body {
  display: flex;
  flex-direction: column;
  min-height: 144px;
  padding: 15px 14px 18px;
}

.museum-collection-card-body h3 {
  margin: 0;
  color: #be4829;
  font-size: 1.04rem;
  font-weight: 500;
}

.museum-collection-card-era {
  margin: 8px 0 0;
  color: #8a6b51;
  font-size: 0.95rem;
}

.museum-collection-card-copy {
  margin: 8px 0 0;
  color: #816650;
  line-height: 1.8;
}

.museum-collection-card-tag {
  align-self: flex-end;
  margin-top: auto;
  padding: 2px 8px;
  background: #f4ead8;
  color: #d2aa5d;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.4;
}

.museum-education-hero {
  position: relative;
  min-height: 334px;
  background:
    linear-gradient(90deg, rgba(35, 24, 16, 0.56) 0%, rgba(35, 24, 16, 0.26) 30%, rgba(35, 24, 16, 0.12) 58%, rgba(35, 24, 16, 0.38) 100%),
    var(--hero-image) center center / 100% 100% no-repeat;
  color: #f8eee0;
}

.museum-education-hero-inner,
.museum-education-tabs-inner,
.museum-education-shell {
  width: min(1660px, calc(100vw - 96px));
  margin: 0 auto;
}

.museum-education-hero-inner {
    min-height: clamp(250px, calc(100vw * 292 / 1920), 292px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top:35px;
}

.museum-education-hero-copy {
  max-width: 560px;
}

.museum-education-eyebrow,
.museum-education-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d2a44c;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.museum-education-eyebrow::before,
.museum-education-section-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.museum-education-section-head h2 {
  margin: 18px 0 0;
}

.museum-education-hero-copy p {
  margin: 24px 0 0;
  max-width: 500px;
  color: rgba(245, 233, 215, 0.82);
  font-size: 1.06rem;
  line-height: 1.85;
}

.museum-education-hero-crumb {
  position: absolute;
  right: clamp(28px, 4vw, 72px);
  bottom: 22px;
  z-index: 1;
  color: rgba(223, 186, 110, 0.92);
  font-size: 0.95rem;
  white-space: nowrap;
  text-align: right;
}

.museum-education-tabs {
  background: #c09b6b;
  border-top: 1px solid rgba(233, 177, 92, 0.3);
}

.museum-education-tabs-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.museum-education-tabs a {
  min-width: 114px;
  padding: 14px 22px;
  border-left: 1px solid rgba(233, 177, 92, 0.35);
  color: #f5dcc3;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: center;
}

.museum-education-tabs a:last-child {
  border-right: 1px solid rgba(233, 177, 92, 0.35);
}

.museum-education-tabs a:hover,
.museum-education-tabs a.is-active {
  background: rgba(190, 72, 41, 0.18);
  color: #fff4e6;
}

.museum-education-page {
  padding: 42px 0 78px;
  background: #f6efe6;
}

.museum-education-section-head {
  margin-bottom: 32px;
}

.museum-education-section-head h2 {
  font-family: var(--display-serif);
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  color: #7a5631;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.museum-education-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.museum-education-card {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  background: #fff;
  box-shadow: 0 18px 36px rgba(89, 59, 36, 0.06);
}

.museum-education-card-media {
  position: relative;
  overflow: hidden;
  background: #2d2018;
}

.museum-education-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 173px;
  object-fit: cover;
}

.museum-education-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  color: #f5efe2;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
}

.museum-education-card-badge.is-orange {
  background: #b35a32;
}

.museum-education-card-badge.is-green {
  background: #2f6a4a;
}

.museum-education-card-badge.is-blue {
  background: #274d74;
}

.museum-education-card-badge.is-purple {
  background: #5d396f;
}

.museum-education-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 22px 20px;
}

.museum-education-card-body h3 {
  margin: 0;
  color: #be4829;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.55;
}

.museum-education-card-body p {
  margin: 12px 0 0;
  color: #594738;
  line-height: 1.78;
}

.museum-education-card-meta {
  margin-top: 20px;
  color: #cba060;
  font-size: 0.96rem;
}

.museum-news-hero,
.museum-services-hero,
.museum-about-hero {
  position: relative;
  color: #f8eee0;
}

.museum-news-hero {
  min-height: 334px;
  aspect-ratio: 1920 / 268;
  overflow: hidden;
  background: var(--hero-image) center top/100% 100% no-repeat;
}

.museum-news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 11, 8, 0.98) 0%, rgba(15, 11, 8, 0.92) 24%, rgba(15, 11, 8, 0.54) 44%, rgba(15, 11, 8, 0.12) 64%, rgba(15, 11, 8, 0.26) 100%),
    linear-gradient(90deg, rgba(15, 11, 8, 0.9) 0, rgba(15, 11, 8, 0.9) 300px, rgba(15, 11, 8, 0.42) 480px, rgba(15, 11, 8, 0) 660px),
    linear-gradient(270deg, rgba(15, 11, 8, 0.68) 0, rgba(15, 11, 8, 0) 170px);
  pointer-events: none;
}

.museum-about-hero {
  min-height: auto;
  aspect-ratio: 1920 / 321;
  background:
    linear-gradient(90deg, rgba(98, 69, 48, 0.34) 0%, rgba(98, 69, 48, 0.16) 32%, rgba(98, 69, 48, 0.08) 58%, rgba(98, 69, 48, 0.16) 100%),
    linear-gradient(90deg, rgba(98, 69, 48, 0.55) 0, rgba(98, 69, 48, 0) 160px),
    var(--hero-image) center/100% 100% no-repeat;
}

.museum-news-hero-inner,
.museum-news-tabs-inner,
.museum-news-shell,
.museum-services-hero-inner,
.museum-services-tabs-inner,
.museum-services-shell,
.museum-about-hero-inner,
.museum-about-tabs-inner,
.museum-about-shell {
  width: min(1660px, calc(100vw - 96px));
  margin: 0 auto;
}

.museum-news-hero-inner,
.museum-services-hero-inner,
.museum-about-hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 24px;
}

.museum-news-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  height: 100%;
  padding: 0;
  display: block;
}

.museum-services-hero-inner,
.museum-about-hero-inner {
  min-height: 340px;
}

.museum-about-hero-inner {
  min-height: 100%;
  height: 100%;
}

.museum-news-hero-copy,
.museum-services-hero-copy,
.museum-about-hero-copy {
  max-width: 560px;
}

.museum-news-hero-copy {
  position: absolute;
  left: 0;
  bottom: 34px;
  z-index: 1;
}

.museum-news-hero-copy::before {
  content: "";
  position: absolute;
  left: -42px;
  bottom: -26px;
  width: 640px;
  height: 230px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 8, 6, 0.95) 0%, rgba(11, 8, 6, 0.9) 55%, rgba(11, 8, 6, 0.42) 82%, rgba(11, 8, 6, 0) 100%),
    linear-gradient(180deg, rgba(11, 8, 6, 0.28) 0%, rgba(11, 8, 6, 0.62) 100%);
  pointer-events: none;
}

.museum-news-eyebrow,
.museum-services-eyebrow,
.museum-about-eyebrow,
.museum-services-section-kicker,
.museum-about-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d2a44c;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.museum-news-eyebrow::before,
.museum-services-eyebrow::before,
.museum-about-eyebrow::before,
.museum-services-section-kicker::before,
.museum-about-section-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.museum-services-hero-copy h1,
.museum-about-hero-copy h1,
.museum-services-section-head h2,
.museum-about-section-head h2 {
  margin: 18px 0 0;
  font-family: var(--display-serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.museum-services-hero-copy h1,
.museum-about-hero-copy h1 {
  font-size: clamp(3.4rem, 6vw, 5rem);
  color: #f5e8d7;
}

.museum-news-hero-copy p,
.museum-services-hero-copy p,
.museum-about-hero-copy p {
  margin: 24px 0 0;
  max-width: 520px;
  color: rgba(245, 233, 215, 0.84);
  font-size: 1.05rem;
  line-height: 1.85;
}

.museum-news-hero-crumb,
.museum-services-hero-crumb,
.museum-about-hero-crumb {
  position: absolute;
  right: clamp(28px, 4vw, 72px);
  bottom: 22px;
  z-index: 2;
  margin: 0;
  padding: 0;
  color: rgba(223, 186, 110, 0.92);
  font-size: 0.95rem;
  text-align: right;
  white-space: nowrap;
}

.museum-news-hero-crumb a,
.museum-services-hero-crumb a,
.museum-about-hero-crumb a {
  color: inherit;
  text-decoration: none;
}

.museum-news-hero-crumb a:hover,
.museum-services-hero-crumb a:hover,
.museum-about-hero-crumb a:hover {
  color: #f8eee0;
}

.museum-news-tabs,
.museum-services-tabs,
.museum-about-tabs {
  background: #c09b6b;
  border-top: 1px solid rgba(233, 177, 92, 0.3);
}

.museum-news-tabs-inner,
.museum-services-tabs-inner,
.museum-about-tabs-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.museum-news-tabs a,
.museum-services-tabs a,
.museum-about-tabs a {
  min-width: 114px;
  padding: 14px 22px;
  border-left: 1px solid rgba(233, 177, 92, 0.35);
  color: #f5dcc3;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: center;
}

.museum-news-tabs a:last-child,
.museum-services-tabs a:last-child,
.museum-about-tabs a:last-child {
  border-right: 1px solid rgba(233, 177, 92, 0.35);
}

.museum-news-tabs a:hover,
.museum-news-tabs a.is-active,
.museum-services-tabs a:hover,
.museum-services-tabs a.is-active,
.museum-about-tabs a:hover,
.museum-about-tabs a.is-active {
  background: rgba(190, 72, 41, 0.18);
  color: #fff4e6;
}

.museum-news-page,
.museum-services-page,
.museum-about-page {
  background: #f6efe6;
}

.museum-news-page {
  padding: 38px 0 76px;
}

.museum-services-page,
.museum-about-page {
  padding: 42px 0 78px;
}

.museum-news-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.museum-news-featured-card {
  position: relative;
  overflow: hidden;
  background: #1d120d;
}

.museum-news-featured-card img {
  display: block;
  width: 100%;
  aspect-ratio: 671 / 206;
  height: auto;
  object-fit: cover;
}

.museum-news-featured-overlay {
  position: absolute;
  inset: auto 22px 18px;
  color: #f7eee1;
}

.museum-news-featured-overlay::before {
  content: "";
  position: absolute;
  inset: -40px -22px -18px;
  background: linear-gradient(180deg, rgba(20, 12, 8, 0) 0%, rgba(20, 12, 8, 0.86) 100%);
  z-index: -1;
}

.museum-news-featured-tag,
.museum-news-list-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(214, 162, 76, 0.18);
  color: #d8b26d;
  font-size: 0.8rem;
  font-weight: 700;
}

.museum-news-featured-overlay h3 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.45;
}

.museum-news-featured-meta {
  margin-top: 10px;
  color: rgba(247, 238, 225, 0.84);
}

.museum-news-list-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.museum-news-list-card {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  background: #fff;
  box-shadow: 0 18px 36px rgba(89, 59, 36, 0.05);
}

.museum-news-list-card img {
  display: block;
  width: 100%;
  height: 136px;
  object-fit: cover;
}

.museum-news-list-body {
  padding-right: 20px;
}

.museum-news-list-body h3 {
  margin: 12px 0 0;
  color: #be4829;
  font-size: 1.15rem;
  font-weight: 500;
}

.museum-news-list-body p {
  margin: 12px 0 0;
  color: #594738;
  line-height: 1.78;
}

.museum-news-list-meta {
  margin-top: 14px;
  color: #cba060;
}

.museum-services-hero {
  min-height: auto;
  aspect-ratio: 1920 / 360;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(96, 46, 20, 0.26) 0%, rgba(55, 23, 9, 0) 32%),
    linear-gradient(108deg, #190a05 0%, #2b1308 52%, #1d0c05 100%);
  color: #f8eee0;
}

.museum-services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 9, 5, 0.06) 0%, rgba(18, 9, 5, 0.32) 100%),
    linear-gradient(90deg, rgba(18, 9, 5, 0.34) 0%, rgba(18, 9, 5, 0) 160px);
  pointer-events: none;
}

.museum-services-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 68px;
  color: #d2a44c;
}

.museum-services-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(224, 182, 105, 0.82);
  font-size: 0.98rem;
}

/*.museum-services-hero-meta span::before {*/
/*  content: "";*/
/*  width: 13px;*/
/*  height: 13px;*/
/*  border: 1px solid #bf8c28;*/
/*  border-radius: 50%;*/
/*}*/

.museum-services-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
}

.museum-services-hero-copy {
  max-width: 740px;
}

.museum-services-section-head,
.museum-about-section-head {
  margin-bottom: 32px;
}

.museum-services-section-head h2,
.museum-about-section-head h2 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  color: #7a5631;
}

.museum-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
}

.museum-services-overview-head {
  margin-bottom: 28px;
}

.museum-services-overview-head .section-copy {
  max-width: 420px;
  color: #7a6551;
  line-height: 1.8;
}

.museum-services-opening-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.museum-services-opening-card {
  min-height: 360px;
}

.museum-services-opening-body {
  display: grid;
  gap: 8px;
}

.museum-services-opening-body strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 14px;
  background: rgba(214, 165, 84, 0.18);
  color: #f0d59d;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
}

.museum-services-support {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.museum-services-support-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.museum-services-table {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 36px rgba(89, 59, 36, 0.05);
}

.museum-services-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
}

.museum-services-row > div {
  padding: 18px 22px;
  color: #8a6b51;
  border-top: 1px solid rgba(213, 177, 122, 0.16);
}

.museum-services-row.is-head > div {
  border-top: 0;
  background: #7b592f;
  color: #efd6a2;
}

.museum-services-row:not(.is-head) > div:first-child {
  color: #be4829;
  font-weight: 600;
}

.museum-services-row:not(.is-head) > div:nth-child(2) {
  color: #d4a24f;
  font-size: 1.12rem;
}

.museum-services-side {
  display: grid;
  align-content: start;
  gap: 14px;
}

.museum-services-tip-card {
  min-height: 320px;
  padding: 26px 24px;
  background: #c09b6b;
  color: #ffd9a4;
  box-shadow: 0 18px 36px rgba(89, 59, 36, 0.08);
}

.museum-services-tip-card h3 {
  margin: 0 0 16px;
  font-family: var(--display-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: #ffe2b6;
}

.museum-services-tip-card h3::before,
.museum-services-tip-card p {
  position: relative;
}

.museum-services-tip-card h3::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 12px;
  border: 1px solid #e1a63e;
  border-radius: 50%;
}

.museum-services-tip-card p {
  margin: 0;
  padding-left: 16px;
  color: #ffdb9c;
  line-height: 1.78;
}

.museum-services-tip-card p + p {
  margin-top: 10px;
}

.museum-services-tip-card p::before {
  content: "›";
  position: absolute;
  left: 1px;
  color: #f2b64a;
}

.museum-services-support-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(89, 59, 36, 0.05);
}

.museum-services-support-card span {
  color: #c89d57;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.museum-services-support-card strong {
  margin-top: 12px;
  color: #7a5631;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.35;
}

.museum-services-support-card p {
  margin: 12px 0 0;
  color: #6f5a48;
  line-height: 1.8;
}

.museum-services-support-card--cta {
  background: linear-gradient(180deg, #fff6e9 0%, #f4e6d4 100%);
}

.museum-services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  background: #7b592f;
  color: #fff0dd;
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
}

.museum-services-side > .museum-services-cta::before {
  content: "□";
  margin-right: 12px;
  color: #cb4e29;
  font-size: 0.9rem;
}

.museum-services-support-card .museum-services-cta {
  width: 100%;
  margin-top: auto;
  padding: 0 18px;
}

/*.museum-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 356px;
  gap: 28px;
  align-items: start;
}

.museum-about-copy {
  display: grid;
  gap: 20px;
  color: #594738;
  font-size: 1.06rem;
  line-height: 1.95;
}

.museum-about-copy p {
  margin: 0;
}

.museum-about-visual img {
  display: block;
  width: 100%;
  box-shadow: 0 18px 36px rgba(89, 59, 36, 0.05);
}  */

.museum-about-layout {
  display: block;
}

.museum-about-copy {
  display: grid;
  gap: 20px;
  color: #594738;
  font-size: 1.06rem;
  line-height: 1.95;
}

.museum-about-copy p {
  margin: 0;
}
.museum-about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.museum-about-stat {
  padding: 24px 18px;
  text-align: center;
  background: #fff;
  box-shadow: 0 18px 36px rgba(89, 59, 36, 0.05);
}

.museum-about-stat img {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
}

.museum-about-stat strong {
  display: block;
  color: #d2a44c;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 500;
}

.museum-about-stat span {
  display: block;
  margin-top: 10px;
  color: #7a5631;
  font-size: 1.02rem;
}

@media (max-width: 1480px) {
  .museum-page-wrap--home,
  .museum-home-accent-inner {
    width: min(100vw - 32px, 1480px);

  }

  .museum-exhibition-shell {
    width: min(100vw - 32px, 1480px);
  }

  .museum-collection-hero-inner,
  .museum-collection-tabs-inner,
  .museum-collection-shell {
    width: min(100vw - 32px, 1480px);
  }

  .museum-home-hall-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .museum-home-two-col {
    grid-template-columns: minmax(0, 1fr) 384px;
    gap: 28px;
  }
}

@media (max-width: 1280px) {
  .museum-page-wrap--home,
  .museum-home-accent-inner {
    width: min(100vw - 28px, 1280px);
  }

  .museum-exhibition-shell {
    width: min(100vw - 28px, 1280px);
  }

  .museum-collection-hero-inner,
  .museum-collection-tabs-inner,
  .museum-collection-shell {
    width: min(100vw - 28px, 1280px);
  }

  .museum-home-artifact-grid,
  .museum-home-program-grid,
  .museum-home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .museum-home-two-col {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .museum-home-hall-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .museum-home-artifact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .museum-home-program-grid {
    grid-template-columns: 1fr;
  }

  .museum-home-two-col {
    grid-template-columns: 1fr;
  }

  .museum-page-grid {
    grid-template-columns: 1fr;
  }

  .museum-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .museum-exhibition-hero-inner,
  .museum-exhibition-tabs-inner {
    width: calc(100vw - 48px);
  }

  .museum-exhibition-shell {
    width: calc(100vw - 48px);
  }

  .museum-exhibition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .museum-collection-hero-inner,
  .museum-collection-tabs-inner,
  .museum-collection-shell {
    width: calc(100vw - 48px);
  }

  .museum-collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .museum-education-hero-inner,
  .museum-education-tabs-inner,
  .museum-education-shell {
    width: min(1660px, calc(100vw - 48px));
  }

  .museum-education-grid {
    grid-template-columns: 1fr;
  }

  .museum-news-hero-inner,
  .museum-news-tabs-inner,
  .museum-news-shell,
  .museum-services-hero-inner,
  .museum-services-tabs-inner,
  .museum-services-shell,
  .museum-about-hero-inner,
  .museum-about-tabs-inner,
  .museum-about-shell {
    width: min(1660px, calc(100vw - 48px));
  }

  .museum-services-layout,
  .museum-about-layout,
  .museum-services-support {
    grid-template-columns: 1fr;
  }

  .museum-services-opening-grid,
  .museum-services-support-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .museum-about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .museum-subnav {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    margin-top: 8px;
  }

  .museum-nav-item:hover > .museum-subnav {
    transform: none;
  }

  .museum-nav-item.is-open > .museum-subnav {
    display: block;
  }
}

@media (max-width: 760px) {
  .museum-home-hall-grid,
  .museum-home-artifact-grid,
  .museum-home-stats {
    grid-template-columns: 1fr;
  }

  .museum-home-notice-item {
    grid-template-columns: 1fr;
  }

  .museum-page-wrap {
    padding: 32px 0 56px;
  }

  .museum-page-wrap--home {
    padding-bottom: 0;
  }

  .museum-side-row,
  .museum-news-row,
  .museum-related-grid {
    grid-template-columns: 1fr;
  }

  .museum-exhibition-hero {
    min-height: 300px;
  }

  .museum-exhibition-hero-inner,
  .museum-exhibition-tabs-inner {
    width: calc(100vw - 28px);
  }

  .museum-exhibition-shell {
    width: calc(100vw - 28px);
  }

  .museum-exhibition-hero-inner,
  .museum-exhibition-section-head {
    display: grid;
  }

  .museum-exhibition-hero-inner {
    min-height: 300px;
    padding: 64px 0 22px;
  }

  .museum-exhibition-hero-copy h1 {
    font-size: 3rem;
  }

  .museum-exhibition-hero-copy p,
  .museum-exhibition-section-head p {
    max-width: none;
  }

  .museum-exhibition-hero-crumb {
    position: static;
    text-align: left;
  }

  .museum-exhibition-section-head p {
    padding-top: 0;
  }

  .museum-exhibition-grid {
    grid-template-columns: 1fr;
  }

  .museum-exhibition-card-body p {
    min-height: 0;
  }

  .museum-collection-hero {
    min-height: 240px;
    background-position: 58% center;
  }

  .museum-collection-hero-inner,
  .museum-collection-tabs-inner,
  .museum-collection-shell {
    width: calc(100vw - 28px);
  }

  .museum-collection-hero-inner {
    min-height: 240px;
    display: grid;
    gap: 18px;
    padding: 48px 0 18px;
  }

  .museum-collection-hero-copy h1 {
    font-size: 3rem;
  }

  .museum-collection-hero-copy p {
    max-width: 420px;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .museum-collection-hero-crumb {
    position: static;
    font-size: 0.88rem;
    text-align: left;
  }

  .museum-collection-filter-group {
    flex-basis: 100%;
  }

  .museum-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .museum-education-hero {
    min-height: 250px;
    background-size: cover;
    background-position: center center;
  }

  .museum-education-hero-inner,
  .museum-education-tabs-inner,
  .museum-education-shell {
    width: calc(100vw - 28px);
  }

  .museum-education-hero-inner {
    min-height: 250px;
    display: grid;
    padding: 56px 0 18px;
  }

  .museum-education-hero-copy h1 {
    font-size: 3rem;
  }

  .museum-education-hero-copy p {
    max-width: none;
  }

  .museum-education-card {
    grid-template-columns: 1fr;
  }

  .museum-news-hero,
  .museum-services-hero,
  .museum-about-hero {
    min-height: 300px;
  }

  .museum-services-hero {
    aspect-ratio: auto;
    background-size: cover;
    background-position: center center;
  }

  .museum-news-hero {
    aspect-ratio: auto;
    min-height: 240px;
    background-size: cover;
    background-position: center center;
  }

  .museum-about-hero {
    aspect-ratio: auto;
    background-size: cover;
    background-position: center center;
  }

  .museum-news-hero-inner,
  .museum-news-tabs-inner,
  .museum-news-shell,
  .museum-services-hero-inner,
  .museum-services-tabs-inner,
  .museum-services-shell,
  .museum-about-hero-inner,
  .museum-about-tabs-inner,
  .museum-about-shell {
    width: calc(100vw - 28px);
  }

  .museum-news-hero-inner,
  .museum-services-hero-inner,
  .museum-about-hero-inner {
    min-height: 300px;
    display: grid;
    padding: 72px 0 22px;
  }

  .museum-services-hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .museum-news-hero-inner {
    height: auto;
    min-height: 240px;
    padding: 56px 0 18px;
    display: grid;
  }

  .museum-news-hero-copy {
    position: static;
  }

  .museum-news-hero-copy::before {
    left: -18px;
    bottom: -18px;
    width: calc(100% + 36px);
    height: 200px;
  }

  .museum-news-hero-copy h1,
  .museum-services-hero-copy h1,
  .museum-about-hero-copy h1 {
    font-size: 2.9rem;
  }

  .museum-news-hero-copy p,
  .museum-services-hero-copy p,
  .museum-about-hero-copy p {
    max-width: none;
  }

  .museum-news-featured-grid,
  .museum-services-opening-grid,
  .museum-services-support-cards,
  .museum-about-stats {
    grid-template-columns: 1fr;
  }

  .museum-news-list-card,
  .museum-services-row {
    grid-template-columns: 1fr;
  }

  .museum-news-list-body {
    padding: 0 18px 18px;
  }
}

@media (max-width: 560px) {
  .museum-collection-toolbar {
    gap: 12px;
  }

  .museum-collection-search,
  .museum-collection-filter-group {
    flex-basis: 100%;
  }

  .museum-collection-grid {
    grid-template-columns: 1fr;
  }

  .museum-education-card-body {
    padding: 18px 16px 18px;
  }

  .museum-services-tip-card h3 {
    font-size: 1.7rem;
  }

  .museum-services-opening-card {
    min-height: 320px;
  }
}




/* 分页区域（系统 {$pages} 输出）
   典型结构：<div class="xrpagination"><ul class="pagination"><li class="active"><a>1</a></li>...</ul></div> */
.museum-pagination {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.museum-pagination ul.pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.museum-pagination ul.pagination li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.museum-pagination ul.pagination li > a,
.museum-pagination ul.pagination li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 1;
    border-radius: 2px;
    border: 1px solid #91765d;
    /*background: #59493b;*/
    color: #59493b;;
    box-sizing: border-box;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

/* 总条数等无 href 的 <a> */
.museum-pagination ul.pagination li > a:not([href]) {
    cursor: default;
    background: var(--el-fill-color-light);
    border-color: var(--el-border-color-lighter);
    color: var(--el-text-color-secondary);
}

.museum-pagination ul.pagination li > a[href]:hover {
    color: var(--el-color-primary);
    border-color: var(--el-color-primary-light-5);
}

.museum-pagination ul.pagination li.active > a,
.museum-pagination ul.pagination li.active > span {
    background: #59493b;;
    border-color: var(--el-color-primary);
    color: #fff;
    cursor: default;
}

.museum-pagination ul.pagination li.active > a:hover {
    color: #fff;
    border-color: var(--el-color-primary);
    background: var(--el-color-primary);
}

.museum-pagination ul.pagination li.disabled > a,
.museum-pagination ul.pagination li.disabled > span {
    cursor: not-allowed;
    opacity: 0.55;
    background: var(--el-fill-color-light);
}

/* 兼容：分页直接挂在 .museum-pagination 下（无 ul） */
.museum-pagination > a,
.museum-pagination > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 2px;
    border: 1px solid #91765d;
    background: #59493b;
    color: var(--el-text-color-regular);
    box-sizing: border-box;
    text-decoration: none;
}

.museum-pagination > a:hover {
    color: var(--el-color-primary);
    border-color: var(--el-color-primary-light-5);
}

.museum-pagination .active > span,
.museum-pagination .active > a,
.museum-pagination li.active > a,
.museum-pagination span.current,
.museum-pagination .current {
    background: var(--el-color-primary);
    border-color: var(--el-color-primary);
    color: #fff;
}


