/**
 * 2カラムページ用ヘッダーコンポーネント
 * 実績アーカイブページの灰色ベースデザインを基にした統一ヘッダー
 */

/* ========================================
   ページヘッダー（実績アーカイブ風）
   ======================================== */
.page-header-modern {
    background: var(--bg-secondary);
    color: var(--text-primary);
    margin-bottom: 3rem;
    padding: 2rem 0 1.5rem;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* パンくずナビ */
.page-header-modern .breadcrumb {
    margin-bottom: 1rem;
}

.page-header-modern .breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-header-modern .breadcrumb-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.page-header-modern .breadcrumb-item:hover {
    color: var(--purple-primary);
    text-decoration: underline;
}

.page-header-modern .breadcrumb-item.current {
    color: var(--text-muted);
    font-weight: 500;
}

.page-header-modern .breadcrumb-separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ページタイトル */
.page-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1rem 0;
    line-height: 1.2;
}

/* ページ説明 */
.page-description-modern {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

/* ページメタ情報 */
.page-meta-modern {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.page-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.page-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-300);
}

.page-action-btn:hover {
    background: var(--purple-primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(103, 98, 166, 0.2);
    text-decoration: none;
}


/* ========================================
   レスポンシブ対応
   ======================================== */
@media (max-width: 768px) {
    .page-header-modern {
        padding: 1.5rem 0 1rem;
    }
    
    .page-header-content {
        padding: 0 1rem;
    }
    
    .page-title-modern {
        font-size: 1.875rem;
    }
    
    .page-description-modern {
        font-size: 0.9375rem;
    }
    
    .page-header-modern .breadcrumb-list {
        gap: 0.25rem;
    }
    
    .page-header-modern .breadcrumb-item {
        font-size: 0.8125rem;
    }
    
    .page-meta-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .page-actions {
        width: 100%;
    }
    
    .page-action-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .page-header-modern {
        padding: 1rem 0;
    }
    
    .page-title-modern {
        font-size: 1.5rem;
    }
    
    .page-description-modern {
        font-size: 0.875rem;
    }
}