/* ===== 场地列表专属样式 ===== */
    .venue-list { display: flex; flex-direction: column; gap: 24px; }
    .venue-head {
      align-items: center;
    }
    .venue-head-left {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      min-width: 0;
    }
    .venue-head-left .dropdown select {
      min-width: 128px;
      height: 40px;
    }

    .venue-card {
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 0;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      overflow: hidden;
      transition: all 0.25s ease;
    }
    .gallery { order: 2; cursor: zoom-in; }
    .venue-body { order: 1; }
    .venue-card:hover {
      border-color: rgba(0,113,227,0.25);
      box-shadow: var(--shadow-md);
    }

    /* gallery */
    .gallery {
      position: relative;
      aspect-ratio: auto;
      min-height: 100%;
      background: var(--surface-3);
      overflow: hidden;
    }
    .gallery-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .gallery-slide.active { opacity: 1; }
    .gallery-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .gallery-placeholder {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: rgba(255,255,255,0.65);
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.06em;
    }
    .gp-1 { background: linear-gradient(135deg, #1d3a8e 0%, #4677d6 60%, #6db4ff 100%); }
    .gp-2 { background: linear-gradient(135deg, #243042 0%, #3e526b 60%, #6f8aa8 100%); }
    .gp-3 { background: linear-gradient(135deg, #2b4a3a 0%, #3e7a5d 60%, #6cb89a 100%); }
    .gp-4 { background: linear-gradient(135deg, #4d3450 0%, #785ea8 60%, #a48dd0 100%); }
    .gp-5 { background: linear-gradient(135deg, #3d2c20 0%, #6f4f38 60%, #b8916a 100%); }

    .gallery::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
      pointer-events: none;
    }

    .gallery-dots {
      position: absolute;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 2;
    }
    .gallery-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      transition: all 0.2s ease;
      cursor: pointer;
    }
    .gallery-dot.active {
      background: #fff;
      width: 18px;
      border-radius: 3px;
    }

    .venue-meta-pill {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      /* display: inline-flex; */
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(10px);
      border-radius: var(--r-pill);
      font-size: 12px;
      font-weight: 600;
      color: var(--fg);
      display: none;
    }

    .venue-body {
      padding: 28px 32px;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }
    .venue-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 600;
      color: var(--fg);
      letter-spacing: -0.012em;
      margin-bottom: 10px;
    }
    .venue-addr {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      font-size: 13.5px;
      color: var(--muted);
      margin-bottom: 22px;
      line-height: 1.5;
    }
    .venue-addr svg { flex-shrink: 0; margin-top: 2px; color: var(--muted-2); }

    .venue-stats {
      display: grid;
      /* grid-template-columns: 1fr 1fr 1fr; */
      gap: 18px 22px;
      padding: 18px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-bottom: 22px;
    }
    .stat-label {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 4px;
      font-weight: 500;
    }
    .stat-value {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--fg);
      letter-spacing: -0.005em;
      line-height: 1.2;
    }
    .stat-value.area {
      color: var(--accent);
      font-variant-numeric: tabular-nums;
    }
    .stat-value.area .unit {
      font-size: 12px;
      color: var(--muted-2);
      font-weight: 500;
      margin-left: 2px;
    }

    .venue-actions {
      display: grid;
      gap: 10px;
      margin-top: auto;
    }
    .venue-actions-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }
    .venue-actions > .venue-actions-row:first-child {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    .venue-actions-row-bottom {
      grid-template-columns: 160px 42px 42px;
      align-items: stretch;
      justify-content: flex-start;
    }
    .venue-actions .btn,
    .venue-actions .btn-icon {
      height: 42px;
      justify-content: center;
    }
    .venue-actions .btn-sm,
    .venue-actions .btn-primary {
      width: 160px;
      max-width: 160px;
      flex: 0 0 160px;
    }
    .venue-actions .btn-primary {
      width: 160px;
    }
    .venue-actions .btn-icon {
      width: 42px;
      min-width: 42px;
      max-width: 42px;
      padding: 0;
      flex: 0 0 42px;
    }

    .venue-lightbox {
      position: fixed;
      inset: 0;
      z-index: 220;
      display: none;
    }
    .venue-lightbox.is-open { display: block; }
    .venue-lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5, 10, 18, 0.82);
      backdrop-filter: blur(6px);
    }
    .venue-lightbox-dialog {
      position: relative;
      z-index: 1;
      width: min(96vw, 1180px);
      margin: 4vh auto;
      height: 92vh;
      display: grid;
      place-items: center;
    }
    .venue-lightbox-dialog img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 18px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    }
    .venue-lightbox-close {
      position: absolute;
      top: 0;
      right: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      display: grid;
      place-items: center;
      color: var(--fg);
    }

    .venue-empty {
      text-align: center;
      padding: 56px 0 0;
      color: var(--muted-2);
      font-size: 13px;
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .venue-empty::before, .venue-empty::after {
      content: '';
      flex: 0 0 36px;
      height: 1px;
      background: var(--border);
    }

    @media (max-width: 1080px) {
      .venue-card { grid-template-columns: 1fr; }
      .gallery { aspect-ratio: 16/9; order: 1; }
      .venue-body { order: 2; }
      .venue-stats { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .venue-body { padding: 20px 18px; }
      .venue-head-left {
        width: 100%;
      }
      .venue-head-left .dropdown {
        width: 100%;
      }
      .venue-head-left .dropdown select {
        width: 100%;
      }
      .venue-actions-row,
      .venue-actions-row-bottom {
        grid-template-columns: 1fr 1fr;
      }
      .venue-actions > .venue-actions-row:first-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
      .venue-actions-row-bottom .btn-primary {
        grid-column: 1 / -1;
        max-width: none;
        width: 100%;
        flex: 1 1 auto;
      }
    }
