/* ═══════════════════════════════════════════════════════════
   Academy — detailed course / syllabus layout
   (loaded on academy.php via $page_css)
═══════════════════════════════════════════════════════════ */
#cGridFull { grid-template-columns: 1fr !important; gap: 30px; }

.gc-course {
  display: block;
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 90px;
}
.gc-course-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--brown, #4a3520), var(--g6, #6b4f3a));
  color: #fff;
}
.gc-course-head h3 {
  font-family: var(--ff-h, "Playfair Display", serif);
  font-size: 1.55rem;
  margin: 0;
  color: #fff;
}
.gc-course-head .gc-course-sub {
  font-size: .82rem;
  opacity: .85;
  margin-top: 4px;
  letter-spacing: .03em;
}
.gc-course-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
}
.gc-tier {
  padding: 24px 26px;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
}
.gc-tier:last-child { border-right: none; }
.gc-tier-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--g3, #c9a86a);
}
.gc-tier-name {
  font-family: var(--ff-h, "Playfair Display", serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brown, #4a3520);
}
.gc-tier-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--g6, #6b4f3a);
  white-space: nowrap;
}
.gc-tier-note {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--g5, #b08d57);
  background: rgba(201,168,106,.12);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.gc-modules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}
.gc-modules li {
  position: relative;
  padding-left: 22px;
  font-size: .9rem;
  line-height: 1.5;
  color: #4a4a4a;
}
.gc-modules li::before {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--g4, #c9a86a);
  font-size: .76rem;
}
.gc-course-foot {
  padding: 18px 26px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--cream, #faf7f2);
}
.gc-course-foot .gc-foot-note {
  font-size: .82rem;
  color: var(--gray, #777);
}
@media (max-width: 600px) {
  .gc-tier { border-right: none; }
  .gc-course-head h3 { font-size: 1.3rem; }
}
