.hall-page {
  min-height: calc(100vh - var(--header-height));
  padding: 30px 0;
  background: var(--bg-page);
}

.hall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.hall-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #eee;
}

.hall-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hall-cover {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.hall-cover-placeholder {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.hall-info {
  padding: 16px;
}

.hall-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  height: 39px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hall-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f5f5f5;
  font-size: 12px;
  color: #999;
}

.hall-location {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hall-detail-page {
  min-height: calc(100vh - var(--header-height));
  padding: 30px 0;
  background: var(--bg-page);
}

.hall-detail-layout {
  display: flex;
  gap: 24px;
}

.hall-detail-main {
  flex: 1;
  min-width: 0;
}

.hall-detail-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.hall-banner {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hall-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hall-banner-placeholder {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.hall-detail-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hall-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.hall-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
  color: #666;
}

.hall-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hall-detail-meta-item .label {
  color: #999;
}

.hall-detail-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 4px solid var(--primary-gold);
}

.hall-detail-content {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.hall-detail-content p {
  margin-bottom: 16px;
}

.hall-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

@media (max-width: 1200px) {
  .hall-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hall-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
