/* ===== COMMON PAGE STYLES ===== */

/* ---- Page Hero ---- */
.page-hero {
    background: var(--background-color);
    padding: 24px 0;
    position: relative;
    margin-bottom: 20px;
}

.page-hero-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.page-hero-left {
    display: flex;
    flex-direction: column;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.page-hero h1 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.2;
}

.page-hero-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    white-space: nowrap;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: #fff;
}

.breadcrumb-nav .sep {
    opacity: 0.3;
    font-size: 10px;
}

.breadcrumb-nav .current {
    color: #fff;
    font-weight: 600;
}

/* ---- Page Content ---- */
.page-content {
    background: #f4f7fb;
    min-height: 50vh;
}

.page-content-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

/* ---- Section Title ---- */
.section-title {
    text-align: center;
    margin-bottom: 28px;
}

.section-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.section-title .title-bar {
    width: 32px;
    height: 3px;
    background: var(--background-color);
    border-radius: 3px;
    margin: 0 auto;
}

/* ---- Card base ---- */
.page-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.page-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

/* ---- Empty state ---- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #bbb;
}

.empty-state i {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .page-hero {
        padding: 18px 0;
    }

    .page-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .page-hero h1 {
        font-size: 20px;
    }
}