/* ========================================
   iLink Team Market — 组队大厅
   Hero + shared page layout only.
   Card styles live in search-bar.css (loaded later).
   ======================================== */

/* === Hero Section === */
.hero-section {
    padding: 40px 24px 32px;
    background: transparent;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #faf6f0;
    border: 1px solid #f5efe6;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a08055;
    margin-bottom: 16px;
}

.hero-eyebrow svg {
    width: 14px;
    height: 14px;
    stroke: #a08055;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-title {
    font-family: 'SimSun', '宋体', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.3;
    color: #2c2419;
    max-width: 600px;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #6b5e4f;
    margin-top: 16px;
    max-width: 480px;
}

/* === Toolbar Section === */
.toolbar-section {
    padding: 0 24px 24px;
    background: transparent;
}

.toolbar-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* === Content Section === */
.content-section {
    padding: 24px 24px 80px;
    background: transparent;
}

.content-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Empty state --- */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    color: #a89a8a;
}

.empty-state svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: block;
    opacity: 0.5;
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 8px;
}

/* --- Pagination --- */
#pagination {
    margin: 40px auto 60px;
    text-align: center;
}

#pagination ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#pagination li {
    margin: 0;
}

#pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #6b5e4f;
    background: #fff;
    border: 1px solid #e8e2d9;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

#pagination .page-link:hover {
    border-color: #b8956a;
    color: #2c2419;
}

#pagination .page-item.active .page-link {
    background: #3d3229;
    color: #faf6f0;
    border-color: #3d3229;
}

#pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
}
