.gh-section { background: var(--bg); padding-top: 110px; padding-bottom: 56px; min-height: 70vh; }

.gh-header { text-align: center; margin-bottom: 52px; }
.gh-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 10px;
}
.gh-title em { color: #0097a7; font-style: normal; }
.gh-subtitle { font-size: 16px; font-weight: 600; color: var(--muted); }

.gh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.gh-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 18px;
  border: 2px solid transparent;
  box-shadow: 0 6px 28px rgba(0,80,140,0.09);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
}
.gh-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: 28px 28px 0 0;
}
.gh-card--jumble::before { background: linear-gradient(90deg, #0097a7, #1565c0); }
.gh-card--jumble:hover   { border-color: #67e8f9; }
.gh-card--trivia::before { background: linear-gradient(90deg, #7c3aed, #ec4899); }
.gh-card--trivia:hover   { border-color: #d8b4fe; }
.gh-card--spelloff::before { background: linear-gradient(90deg, #d97706, #f59e0b); }
.gh-card--spelloff:hover   { border-color: #fcd34d; }
.gh-card:hover { transform: translateY(-8px); box-shadow: 0 20px 52px rgba(0,80,140,0.15); }

.gh-card-header { display: flex; flex-direction: row; align-items: center; gap: 18px; }
.gh-card-icon {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.gh-card-icon--jumble { background: linear-gradient(135deg, #cffafe, #67e8f9); }
.gh-card-icon--trivia { background: linear-gradient(135deg, #ede9fe, #d8b4fe); }
.gh-card-icon--spelloff { background: linear-gradient(135deg, #fef3c7, #fcd34d); }
.gh-card-title-block { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.gh-card-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.gh-card-eyebrow--jumble { color: #00767f; }
.gh-card-eyebrow--trivia { color: #7c3aed; }
.gh-card-eyebrow--spelloff { color: #b45309; }
.gh-card-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--navy);
  line-height: 1.25;
}
.gh-card-desc {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.72;
  max-width: 420px;
  flex: 1;
}

.gh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  white-space: nowrap;
}
.gh-btn--jumble {
  background: linear-gradient(135deg, #0097a7, #1565c0);
  color: #fff;
  box-shadow: 0 6px 22px rgba(0,151,167,0.38);
}
.gh-btn--jumble:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(0,151,167,0.52); }
.gh-btn--trivia {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #fff;
  box-shadow: 0 6px 22px rgba(124,58,237,0.38);
}
.gh-btn--trivia:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(236,72,153,0.52); }
.gh-btn--spelloff {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  box-shadow: 0 6px 22px rgba(217,119,6,0.38);
}
.gh-btn--spelloff:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(245,158,11,0.52); }

@media (max-width: 768px) {
  .gh-grid { grid-template-columns: 1fr; }
  .gh-card { padding: 40px 28px; }
}
