/* ==========================================================================
   场地 / 位置（CLASSIFY_POI）专属样式
   —— 与案例/文章区分：会场名录卡片 + 青绿定位色 + 位置/容量信息条
   复用 custom.css 的 .page-hero / .main-layout / .sidebar / .empty-state / .cta-side 等
   ========================================================================== */
.poi-page { --poi-accent: #0E7C86; --poi-accent-600: #0A5C64; --poi-soft: #E6F3F4; }

.poi-page .page-hero-label i { color: #57C6CF; }

/* 列表网格 —— 横向名录卡 */
.poi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.poi-card {
    display: flex; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.poi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--poi-accent); }
.poi-thumb { position: relative; flex: 0 0 168px; width: 168px; background: linear-gradient(135deg, var(--poi-soft), #fff); overflow: hidden; }
.poi-thumb img { width: 100%; height: 100%; object-fit: cover; }
.poi-thumb-empty { display: flex; align-items: center; justify-content: center; height: 100%; color: #9CC8CC; font-size: 34px; }
.poi-tag {
    position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; font-size: 11.5px; font-weight: 700; color: #fff; background: var(--poi-accent);
    border-radius: 999px; box-shadow: 0 4px 10px rgba(14, 124, 134, .3);
}
.poi-body { flex: 1; min-width: 0; padding: 16px 18px; display: flex; flex-direction: column; }
.poi-cat { font-size: 11.5px; font-weight: 700; color: var(--poi-accent-600); margin-bottom: 6px; }
.poi-body h3 { font-size: 16.5px; line-height: 1.45; margin-bottom: 7px; }
.poi-body h3 a:hover { color: var(--poi-accent); }
.poi-loc { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-2); margin-bottom: 8px; }
.poi-loc i { color: var(--poi-accent); }
.poi-body p { font-size: 13px; color: var(--text-2); line-height: 1.65; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.poi-foot { display: flex; align-items: center; gap: 14px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-2); }
.poi-foot span { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); }
.poi-foot i { color: var(--poi-accent-600); }
.poi-foot .poi-more { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--poi-accent); }

/* 首页 / 地区页 场地板块 */
.poi-eyebrow { background: var(--poi-soft); color: var(--poi-accent-600); }

/* ---------- 场地详情 ---------- */
.poi-detail-hero { background: linear-gradient(160deg, #06343A, #0A5C64 60%, #0E7C86 100%); color: #fff; padding: 46px 0 40px; }
.poi-detail-hero .poi-badge {
    display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: 999px;
    font-size: 12.5px; font-weight: 700; color: #06343A; background: #7FD6DD; margin-bottom: 14px;
}
.poi-detail-hero h1 { font-size: 30px; color: #fff; font-family: var(--font-serif); letter-spacing: -.5px; line-height: 1.3; }
.poi-detail-hero .poi-hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 16px; }
.poi-detail-hero .poi-hero-meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: rgba(255, 255, 255, .78); }
.poi-detail-hero .poi-hero-meta i { color: #7FD6DD; }

.poi-cover-lg { border-radius: var(--radius-lg); overflow: hidden; margin: -34px 0 24px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; background: #fff; }
.poi-cover-lg img { width: 100%; display: block; }

/* 场地信息卡 */
.poi-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0 0 26px; }
.poi-spec { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.poi-spec-ic { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: var(--poi-soft); color: var(--poi-accent); font-size: 17px; }
.poi-spec-tx strong { display: block; font-size: 14.5px; color: var(--text); }
.poi-spec-tx span { font-size: 12px; color: var(--text-muted); }

.poi-detail-hero + .container .related-header i,
.poi-page .related-header i { color: var(--poi-accent); }

@media (max-width: 780px) {
    .poi-grid { grid-template-columns: 1fr; }
    .poi-specs { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .poi-thumb { flex-basis: 116px; width: 116px; }
    .poi-cover-lg { margin-top: 0; }
}
