.ge-page { max-width: 1000px; margin: 0 auto; padding: 4px 0 40px; font-family: 'Noto Sans', system-ui, sans-serif; color: #0D1B3E; }

/* Hero */
.ge-hero {
  background: linear-gradient(135deg, #0D1B3E 0%, #16244f 100%);
  border-radius: 22px; padding: 30px 32px; margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.ge-hero::after {
  content: ""; position: absolute; top: -40%; right: -8%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(56,138,221,0.28), transparent 70%);
  pointer-events: none;
}
.ge-hero__eyebrow {
  display: inline-block; background: rgba(56,138,221,0.18);
  border: 1px solid rgba(56,138,221,0.45); color: #93c5fd;
  font-size: 0.7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; position: relative; z-index: 1;
}
.ge-hero h1 { color: #fff; font-family: 'Baloo 2', sans-serif; font-size: 1.9rem; margin: 0 0 6px; position: relative; z-index: 1; }
.ge-hero p { color: rgba(255,255,255,0.62); margin: 0; font-size: 0.95rem; position: relative; z-index: 1; }

.ge-back { display: inline-block; margin-bottom: 16px; color: #185FA5; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.ge-back:hover { text-decoration: underline; }

/* List */
.ge-list { display: flex; flex-direction: column; gap: 16px; }
.ge-card {
  display: flex; gap: 18px; align-items: stretch;
  background: #fff; border: 1px solid #e7e9ef; border-radius: 16px;
  padding: 18px; text-decoration: none; color: inherit;
  box-shadow: 0 4px 16px rgba(13,27,62,0.06);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease;
}
.ge-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(13,27,62,0.14); }

.ge-card__logo {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 14px;
  background: #eef2fb; display: grid; place-items: center; overflow: hidden;
}
.ge-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.ge-card__logo-fallback { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.4rem; color: #185FA5; }
.ge-card__logo--lg { width: 90px; height: 90px; border-radius: 18px; }

.ge-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.ge-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.ge-card__head h2 { font-family: 'Baloo 2', sans-serif; font-size: 1.15rem; margin: 0; color: #0D1B3E; }

.ge-tag { font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.ge-tag--new { background: #e6f1fb; color: #185FA5; }
.ge-tag--admit { background: #ecfdf5; color: #16a34a; }

.ge-card__desc { color: #6b7280; font-size: 0.88rem; line-height: 1.5; margin: 0 0 10px; }
.ge-card__meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.ge-card__date { color: #8892A4; font-size: 0.82rem; }
.ge-card__cta { color: #FF6B00; font-weight: 700; font-size: 0.85rem; font-family: 'Baloo 2', sans-serif; }

/* Detail */
.ge-detail { background: #fff; border: 1px solid #e7e9ef; border-radius: 20px; padding: 28px; box-shadow: 0 4px 16px rgba(13,27,62,0.06); }
.ge-detail__head { display: flex; gap: 18px; align-items: center; margin-bottom: 22px; }
.ge-detail__head h1 { font-family: 'Baloo 2', sans-serif; font-size: 1.7rem; margin: 0 0 4px; }
.ge-detail__desc { line-height: 1.7; color: #44485a; margin-bottom: 24px; }

.ge-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.ge-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 22px; border-radius: 12px; font-weight: 700; font-size: 0.92rem;
  text-decoration: none; font-family: 'Baloo 2', sans-serif; transition: all .15s ease;
}
.ge-btn--primary { background: #FF6B00; color: #fff; box-shadow: 0 6px 16px rgba(255,107,0,0.3); }
.ge-btn--primary:hover { background: #e25e00; transform: translateY(-2px); }
.ge-btn--ghost { background: #fff; color: #0D1B3E; border: 1px solid #e7e9ef; }
.ge-btn--ghost:hover { background: #f6f7fb; }
.ge-btn--admit { background: #16a34a; color: #fff; box-shadow: 0 6px 16px rgba(22,163,74,0.28); }
.ge-btn--admit:hover { background: #15803d; transform: translateY(-2px); }

/* Eligibility table */
.ge-eligibility h3 { font-family: 'Baloo 2', sans-serif; font-size: 1.1rem; margin: 0 0 12px; }
.ge-elig-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.ge-elig-table th { text-align: left; background: #0D1B3E; color: #fff; padding: 10px 14px; font-weight: 600; }
.ge-elig-table th:first-child { border-radius: 8px 0 0 0; }
.ge-elig-table th:last-child { border-radius: 0 8px 0 0; }
.ge-elig-table td { padding: 10px 14px; border-bottom: 1px solid #eef0f6; }
.ge-elig-table tr:nth-child(even) td { background: #f6f7fb; }

/* Empty */
.ge-empty { text-align: center; padding: 70px 20px; background: #fff; border: 1px dashed #e7e9ef; border-radius: 20px; }
.ge-empty__icon { font-size: 3rem; margin-bottom: 10px; }
.ge-empty h3 { font-family: 'Baloo 2', sans-serif; margin: 0 0 6px; }
.ge-empty p { color: #8892A4; margin: 0; }

@media (max-width: 640px) {
  .ge-hero { padding: 24px; }
  .ge-hero h1 { font-size: 1.5rem; }
  .ge-card { flex-direction: column; }
  .ge-card__logo { width: 60px; height: 60px; }
}
