/* 藏品展览 */
.exhibit-page {
  background: #fff;
}

.exhibit-topbar {
  background: #2b2b2b;
  color: #bbb;
  font-size: 13px;
}

.exhibit-topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exhibit-topnav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.exhibit-topnav a {
  color: #bbb;
}

.exhibit-topnav a:hover,
.exhibit-topnav a.active {
  color: #fff;
}

.exhibit-topbar-right a {
  color: #bbb;
  margin-left: 16px;
}

.exhibit-topbar-right a:hover {
  color: #fff;
}

.exhibit-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 16px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.exhibit-header--compact {
  padding: 20px 16px 16px;
  border-bottom: 1px solid var(--border);
}

.exhibit-header--compact .exhibit-brand .page-name {
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  font-size: 24px;
}

.exhibit-page.site-nav-page .site-header {
  margin-bottom: 0;
}

.exhibit-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.exhibit-brand .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.exhibit-brand .page-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.exhibit-search-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.exhibit-search {
  display: flex;
  width: 100%;
  max-width: 520px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 21px;
  overflow: hidden;
  background: #fff;
}

.exhibit-search input {
  flex: 1;
  border: none;
  padding: 0 18px;
  font-size: 14px;
  outline: none;
}

.exhibit-search button {
  width: 88px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.exhibit-search button:hover {
  background: var(--primary-hover);
}

.exhibit-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 16px 80px;
}

.exhibit-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 0;
}

.exhibit-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.2;
}

.exhibit-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: var(--primary);
  border-radius: 1px;
}

.exhibit-more-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.exhibit-more-link:hover {
  color: var(--primary);
}

/* 热门作品 — 不规则拼图布局 */
.hot-works-section {
  margin-bottom: 44px;
}

.hot-works-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  gap: 10px;
  height: clamp(300px, 38vw, 420px);
}

.hot-works-right {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 0;
}

.hot-work-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #e8e8e8;
  min-height: 0;
  height: 100%;
}

.hot-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hot-work-card:hover img {
  transform: scale(1.04);
}

.hot-work-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 14px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

.hot-work-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #2f6fed;
  border-radius: 3px;
  line-height: 1.3;
}

.hot-work-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hot-work-title::before {
  content: '《';
}

.hot-work-title::after {
  content: '》';
}

.hot-work-caption .work-stats {
  pointer-events: auto;
}

/* 自动换行网格 — 参考雅昌展览卡片 */
.exhibit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px 24px;
}

.exhibit-card {
  display: block;
  color: var(--text);
  text-decoration: none;
}

.exhibit-card:hover {
  color: var(--text);
}

.exhibit-card .poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f7f7f7;
  margin-bottom: 14px;
  transition: opacity 0.25s ease;
}

.exhibit-card:hover .poster {
  opacity: 0.92;
}

.exhibit-card .poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exhibit-card .poster .no-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9d9d9;
  font-size: 13px;
}

.exhibit-card .title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exhibit-card:hover .title {
  color: var(--primary);
}

.exhibit-card .meta-location {
  font-size: 12px;
  color: #999;
  line-height: 1.55;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exhibit-card .meta-date {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
  margin: 0 0 6px;
}

/* 作品互动：阅读 / 点赞 / 收藏 */
.work-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 8px 0 0;
}

.work-stats--detail {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  gap: 12px 24px;
}

.work-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #999;
  line-height: 1;
  vertical-align: middle;
}

.work-stat em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: #666;
}

.work-stat-btn {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition: color 0.2s ease, transform 0.15s ease;
}

.work-stat-btn:hover {
  color: var(--primary);
}

.work-stat-btn:active {
  transform: scale(0.94);
}

.work-stat-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
  overflow: visible;
}

.work-stat-btn.is-active {
  color: var(--primary);
}

.work-stat-btn.is-active em {
  color: var(--primary);
}

.work-stat-btn.is-active .work-stat-icon--like path,
.work-stat-btn.is-active .work-stat-icon--favorite path {
  fill: currentColor;
  stroke: currentColor;
}

.work-stats--hot .work-stat {
  color: rgba(255, 255, 255, 0.75);
}

.work-stats--hot .work-stat em {
  color: rgba(255, 255, 255, 0.92);
}

.work-stats--hot .work-stat-btn:hover,
.work-stats--hot .work-stat-btn.is-active {
  color: #7ee06a;
}

.work-stats--hot .work-stat-btn.is-active em {
  color: #b8f5a8;
}

.exhibit-card .work-stats {
  position: relative;
  z-index: 2;
}

.exhibit-card:hover .work-stat:not(.is-active) em {
  color: #888;
}

.exhibit-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

/* ========== 藏品详情 ========== */
.cd-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 16px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.cd-breadcrumb {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.cd-breadcrumb span {
  margin: 0 8px;
}

.cd-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.cd-poster {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  background: #f5f5f5;
}

.cd-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-hero-info h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
}

.cd-hero-sub {
  font-size: 14px;
  color: #999;
  margin: -8px 0 16px;
  line-height: 1.5;
}

.cd-hero-meta {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
}

.cd-hero-meta dt {
  display: inline;
  color: var(--text-muted);
}

.cd-hero-meta dt::after {
  content: '：';
}

.cd-hero-meta dd {
  display: inline;
  margin: 0 24px 0 0;
}

.cd-main-col h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 4px solid var(--primary);
}

.cd-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.cd-gallery img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
  cursor: pointer;
}

.cd-body {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.cd-body img {
  max-width: 100%;
}

.cd-sidebar .side-box {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
}

.cd-sidebar h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cd-recommend a {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
}

.cd-recommend a:last-child {
  border-bottom: none;
}

.cd-recommend img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

/* 评论 */
.cd-comments {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.cd-comments h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 4px solid var(--primary);
}

.comment-login-tip {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.comment-login-tip p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.comment-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  margin-bottom: 12px;
}

.comment-form textarea:focus {
  border-color: var(--primary);
}

.comment-form-actions {
  display: flex;
  justify-content: flex-end;
}

.comment-list {
  margin-top: 24px;
}

.comment-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comment-item--reply {
  padding: 10px 0;
  border-bottom: none;
}

.comment-replies {
  margin-left: 54px;
  padding-left: 14px;
  border-left: 2px solid #eee;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.comment-body .author {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.comment-body .time {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 10px;
  font-weight: normal;
}

.comment-body .text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.comment-empty {
  text-align: center;
  padding: 32px;
  color: var(--text-muted);
  font-size: 14px;
}

/* 详情顶栏：图库 + 猜你喜欢 */
.cd-top-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.cd-viewer {
  display: flex;
  flex-direction: column;
  height: 520px;
  min-height: 520px;
  max-height: 520px;
  background: #f7f7f7;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-sizing: border-box;
}

.cd-viewer--empty {
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.cd-viewer-tip {
  margin: 0;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--primary);
  background: #f0faf0;
  border-bottom: 1px solid #e8f5e4;
}

.cd-viewer-stage {
  position: relative;
  flex: 0 0 386px;
  height: 386px;
  min-height: 386px;
  max-height: 386px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  cursor: crosshair;
  overflow: hidden;
}

.cd-viewer-stage img {
  max-width: calc(100% - 24px);
  max-height: 386px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  user-select: none;
  pointer-events: none;
}

.cd-viewer-lens {
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 3;
}

.cd-viewer-lens.is-visible {
  opacity: 1;
}

.cd-viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s ease;
}

.cd-viewer-nav:hover {
  background: rgba(50, 157, 21, 0.85);
}

.cd-viewer-prev {
  left: 12px;
}

.cd-viewer-next {
  right: 12px;
}

.cd-viewer-thumbs {
  display: flex;
  flex: 0 0 88px;
  gap: 8px;
  padding: 8px 14px;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #fff;
  border-top: 1px solid var(--border);
}

.cd-viewer-thumbs::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.cd-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
}

.cd-thumb.active {
  border-color: var(--primary);
}

.cd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cd-recommend-side {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-sizing: border-box;
  overflow: visible;
}

.cd-recommend-side h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cd-recommend-scroll {
  flex: 1;
  overflow: visible;
}

.cd-recommend-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
}

.cd-recommend-item:last-child {
  border-bottom: none;
}

.cd-recommend-item:hover .cd-recommend-title {
  color: var(--primary);
}

.cd-recommend-item img,
.cd-recommend-ph {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.cd-recommend-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #bbb;
  font-size: 12px;
}

.cd-recommend-title {
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cd-recommend-empty {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.cd-summary {
  grid-column: 1 / -1;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cd-summary h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
}

.cd-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.cd-tabs {
  grid-column: 1 / -1;
}

.cd-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.cd-tab {
  padding: 12px 24px;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: inherit;
}

.cd-tab:hover {
  color: var(--primary);
}

.cd-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.cd-tab-panel {
  display: none;
  padding: 24px 0;
}

.cd-tab-panel.active {
  display: block;
}

.cd-tab-panel .cd-body {
  margin-bottom: 0;
}

/* 评论（Tab 内） */
.cd-comment-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.cd-comment-form textarea:focus {
  border-color: var(--primary);
}

.cd-comment-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.cd-comment-form-actions .btn-uc-primary,
.cd-comment-reply-actions .btn-uc-primary {
  border: none;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.cd-comment-login-tip {
  text-align: center;
  padding: 28px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 24px;
}

.cd-comment-login-tip p {
  margin: 0 0 14px;
  color: var(--text-muted);
}

.cd-comment-login-tip .btn-uc-primary {
  display: inline-block;
  padding: 8px 24px;
  text-decoration: none;
}

.cd-comment-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cd-comment-item--reply {
  padding: 10px 0;
  border-bottom: none;
}

.cd-comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: #f0f0f0;
}

.cd-comment-meta {
  margin: 0 0 8px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
}

.cd-comment-meta strong {
  font-weight: 600;
  color: #333;
}

.cd-comment-time,
.cd-comment-ip {
  font-size: 12px;
  font-weight: normal;
  color: var(--text-muted);
}

.cd-comment-text {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.cd-comment-reply-btn {
  border: none;
  background: none;
  padding: 0;
  font-size: 13px;
  color: var(--primary);
  cursor: pointer;
  font-family: inherit;
}

.cd-comment-reply-form {
  margin-top: 10px;
}

.cd-comment-reply-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.cd-comment-reply-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cd-reply-cancel {
  border: 1px solid var(--border);
  background: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
}

.cd-comment-replies {
  margin-left: 52px;
  padding-left: 12px;
  border-left: 2px solid #e8e8e8;
}

.cd-comment-replies > .cd-comment-item--reply:first-child {
  padding-top: 4px;
}

.cd-comment-replies > .cd-comment-item--reply:last-child {
  padding-bottom: 4px;
}

.cd-comment-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hot-works-mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hot-works-right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 280px;
  }

  .hot-work-card--main {
    min-height: 240px;
  }

  .hot-works-right .hot-work-card {
    min-height: 140px;
  }
}

@media (max-width: 992px) {
  .cd-layout {
    grid-template-columns: 1fr;
  }

  .cd-top-row {
    grid-template-columns: 1fr;
  }

  .cd-recommend-side {
    min-height: auto;
    max-height: 320px;
  }

  .cd-viewer {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .cd-viewer-stage {
    flex: 0 0 320px;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
  }

  .cd-viewer-stage img {
    max-height: 320px;
  }

  .cd-recommend-side {
    min-height: 0;
  }

  .cd-hero {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 576px) {
  .cd-hero {
    grid-template-columns: 1fr;
  }

  .exhibit-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .exhibit-search-wrap {
    width: 100%;
  }
}
