/* 页面头部 - 现代医院风格 */
.header {
  background: linear-gradient(135deg, #0e3a5f 0%, #1a5a8a 55%, #2c7fb8 100%);
  color: #fff;
  padding: 44px 0 36px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '+';
  position: absolute;
  right: -40px;
  top: -80px;
  font-size: 300px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #4ecdc4, #7fd4b8);
  box-shadow: 0 0 12px rgba(78, 205, 196, 0.5);
}

.hospital-name {
  font-size: 2rem;
  margin: 0 0 10px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hospital-subtitle {
  font-size: 1rem;
  margin: 0 0 24px;
  text-align: center;
  opacity: 0.92;
  letter-spacing: 0.5px;
}

/* 面包屑导航 */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  gap: 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
}

.breadcrumb-item:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.breadcrumb-item.active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
  pointer-events: none;
  border-color: rgba(78, 205, 196, 0.4);
}

.breadcrumb-separator {
  margin: 0 8px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .header {
    padding: 28px 0 24px;
    margin-bottom: 24px;
  }

  .hospital-name {
    font-size: 1.5rem;
  }

  .hospital-subtitle {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .breadcrumb {
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 4px;
  }

  .breadcrumb-item {
    padding: 5px 10px;
  }

  .breadcrumb-separator {
    margin: 0 4px;
  }
}