/* ===== Gallery Page ===== */
.gallery-page { padding: 0 16px 20px; }

.gallery-intro {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 14px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.gallery-card:active { transform: scale(0.97); }

.gallery-card-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.gallery-card h3 {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.gallery-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-enter {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

/* ===== Gallery List Page ===== */
.gallery-list-page { padding: 0 16px 20px; }

.gallery-list-intro {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: center;
}

.exhibit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exhibit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.exhibit-item:active { transform: scale(0.98); }

.exhibit-thumb { flex-shrink: 0; }

.exhibit-info { flex: 1; min-width: 0; }

.exhibit-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.exhibit-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.exhibit-aesthetics {
  font-size: 12px;
  color: var(--primary);
}

.exhibit-arrow { flex-shrink: 0; }
