/* ============================================================
   全局样式 — 配合 GrMine UI 主题变量
   不再包含任何 Bootstrap 覆盖。
   ============================================================ */

/* 主内容容器 */
.main-content {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding: 2rem 1.25rem;
  min-height: calc(100vh - 64px);
}

/* 居中布局（用于错误页等单卡片场景） */
.main-content--centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

/* 链接默认 */
a {
  color: var(--gm-primary);
  transition: color var(--gm-transition);
}

a:hover {
  color: var(--gm-primary-strong);
}

/* 标题尺度（响应式） */
h1 {
  font-size: clamp(2rem, 1.2rem + 2vw, 2.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 1rem + 1.2vw, 2rem);
  font-weight: 700;
}

h3 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.15rem;
}

/* 小屏适配 */
@media (max-width: 640px) {
  .main-content {
    padding: 1.25rem 1rem;
  }
}
