/* Pro India — page styles: ESG Training.
   Copied verbatim from the approved HTML design. */

/* course rows */
.course { display: grid; grid-template-columns: 64px 1fr auto; gap: 22px; align-items: start; scroll-margin-top: 90px; }
.course .cbadge { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); }
.course .cbadge .ic { width: 30px; height: 30px; }
.course-body h3 { font-size: 19px; margin-bottom: 6px; letter-spacing: -.01em; }
.course-body p { font-size: 14px; color: var(--tx-soft); margin-bottom: 12px; }
.course-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.course-cta { align-self: center; }
.course.featured { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.course.featured .cbadge { background: rgba(255,255,255,.1); color: var(--mint); }
.course.featured h3 { color: #fff; }
.course.featured p { color: var(--on-dark-s); }
@media (max-width: 760px) {
  .course { grid-template-columns: 52px 1fr; }
  .course .cbadge { width: 52px; height: 52px; border-radius: 14px; }
  .course .cbadge .ic { width: 24px; height: 24px; }
  .course-cta { grid-column: 1 / -1; }
  .course-cta .btn { width: 100%; }
}

/* stats strip */
.tstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tstat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 16px; text-align: center; }
.tstat .n { font-weight: 800; font-size: clamp(20px, 2.4vw, 26px); color: var(--ink); letter-spacing: -.02em; }
.tstat .l { font-size: 12px; color: var(--tx-soft); margin-top: 3px; }

/* career journey stepper */
.journey { display: flex; flex-wrap: wrap; }
.jstep { flex: 1; min-width: 130px; text-align: center; position: relative; padding: 6px 6px 0; }
.jstep .jc { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 16px; color: #fff; margin: 0 auto 12px; position: relative; z-index: 1; box-shadow: var(--sh-sm); }
.jstep:not(:last-child)::after { content: ""; position: absolute; top: 32px; left: 50%; width: 100%; height: 2px; background: var(--line-2); z-index: 0; }
.jstep h4 { font-size: 13.5px; color: var(--ink); margin-bottom: 2px; }
.jstep p { font-size: 11.5px; color: var(--tx-soft); }

/* chart card + roles */
.chart-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(18px,3vw,26px); box-shadow: var(--sh-sm); }
.chart-scroll { overflow-x: auto; }
.chart-card h3 { font-size: 15px; margin-bottom: 16px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.chart-card h3 .ic { width: 18px; height: 18px; color: var(--green); }
.roles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.role-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; transition: transform .2s var(--ease), box-shadow .2s ease; }
.role-card .rt { font-weight: 700; font-size: 14.5px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.role-card .rt .ic { width: 18px; height: 18px; color: var(--green); }
.role-card .rs { font-size: 13.5px; font-weight: 700; color: var(--green-d); margin: 6px 0; }
.role-card .rd { font-size: 12.5px; color: var(--tx-soft); line-height: 1.5; }

/* comparison table */
.ctable { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 560px; }
.ctable th { background: var(--ink); color: #fff; padding: 13px 15px; text-align: left; font-weight: 700; font-size: 13px; }
.ctable th:first-child { border-radius: 10px 0 0 0; }
.ctable th:last-child { border-radius: 0 10px 0 0; }
.ctable td { padding: 12px 15px; border-bottom: 1px solid var(--line); color: var(--tx-soft); }
.ctable td:first-child { font-weight: 600; color: var(--ink); }
.ctable tr:nth-child(even) td { background: var(--cream); }
.ctable .yes { color: var(--green); font-weight: 700; }

/* tab track pane */
.track { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,44px); align-items: center; }
@media (max-width: 820px) { .track { grid-template-columns: 1fr; } .roles-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .tstats { grid-template-columns: repeat(2,1fr); } .roles-grid { grid-template-columns: 1fr; } }
