/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap'); */

.gk-page {
  --gk-navy:  #123C45;
  --gk-navy-2:#0B2A31;
  --gk-teal:  #1E7F74;
  --gk-clay:  #C97C43;
  --gk-cream: #F7F3EA;
  --gk-ink:   #20282A;
  --gk-line:  #DCD3C0;
  --gk-white: #FFFFFF;

  font-family: 'Open Sans', sans-serif;
  color: var(--gk-ink);
  background: var(--gk-white);
  line-height: 1.65;
}

.gk-page * { box-sizing: border-box; font-family: 'Open Sans', sans-serif; }

.gk-page img { max-width: 100%; display: block; }

.gk-page a { color: var(--gk-teal); }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.gk-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(11,42,49,.86), rgba(11,42,49,.72)),
              url('images/bg/bg1.jpg') center/cover no-repeat;
  padding: 72px 20px 56px;
  text-align: center;
  color: var(--gk-white);
}

.gk-hero-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gk-white);
  margin-bottom: 14px;
}

.gk-hero-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 44px);
  margin: 0 0 18px;
  letter-spacing: .01em;
  color: var(--gk-white);
}

.gk-breadcrumbs {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--gk-white);
}

.gk-breadcrumbs a { color: var(--gk-white); text-decoration: none; }
.gk-breadcrumbs .gk-crumb-sep { margin: 0 8px; color: var(--gk-clay); }
.gk-breadcrumbs .gk-crumb-active { color: var(--gk-white); font-weight: 600; }

/* -------------------------------------------------------------------------
   Content shell
   ------------------------------------------------------------------------- */
.gk-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 80px;
  
}

.gk-section { margin-bottom: 56px; }

.gk-section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gk-line);
  padding-bottom: 14px;
}

.gk-section-num {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gk-teal);
  color: var(--gk-white);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.gk-section-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--gk-navy);
  margin: 0;
}

.gk-subhead {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;

  font-size: 17px;
  color: var(--gk-teal);
  margin: 26px 0 10px;
}

.gk-body p { margin: 0 0 12px; }

.gk-body ul.gk-list { list-style: none; margin: 0 0 12px; padding: 0; }
.gk-body ul.gk-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.gk-body ul.gk-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: var(--gk-clay);
}

.gk-intro-card {
  background: var(--gk-cream);
  border-left: 4px solid var(--gk-teal);
  padding: 22px 24px;
  margin-bottom: 4px;
}

.gk-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.gk-pillar {
  background: var(--gk-white);
  border: 1px solid var(--gk-line);
  padding: 18px 20px;
}

.gk-pillar-tag {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gk-clay);
  display: block;
  margin-bottom: 8px;
}

.gk-pillar p { margin: 0; font-size: 15px; }

/* -------------------------------------------------------------------------
   Contact strip
   ------------------------------------------------------------------------- */
.gk-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gk-line);
  border: 1px solid var(--gk-line);
  margin: 20px 0 6px;
}

.gk-contact-cell {
  background: var(--gk-white);
  padding: 18px 20px;
}

.gk-contact-cell h6 {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gk-teal);
  margin: 0 0 8px;
}

.gk-contact-cell p { margin: 0; font-size: 14.5px; word-break: break-word; }

/* -------------------------------------------------------------------------
   Tables — "chart" styling
   ------------------------------------------------------------------------- */
.gk-table-wrap {
  overflow-x: auto;
  margin: 18px 0 28px;
  border: 1px solid var(--gk-line);
}

table.gk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 480px;
}

table.gk-table caption {
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gk-teal);
  padding: 10px 14px 0;
}

table.gk-table thead th {
  background: var(--gk-navy);
  color: var(--gk-white);
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid #7b7f81;
}

table.gk-table tbody td {
  padding: 11px 16px;
  border: 1px solid var(--gk-line);
  vertical-align: top;
  color: #000000;
}

table.gk-table tbody tr:nth-child(even) { background: var(--gk-cream); }

table.gk-table td.gk-num,
table.gk-table td.gk-mono {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  color: #000000;
}

.gk-day-chip {
  display: inline-block;
  color: #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  padding: 3px 10px;
  letter-spacing: .03em;
}

table.gk-table td.gk-total {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  /* font-weight: 600; */
  color: #000000;
}

/* -------------------------------------------------------------------------
   Photo cards (signature element)
   Case-card treatment: corner ticks + caption strip
   ------------------------------------------------------------------------- */
.gk-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0 30px;
}

.gk-photo-grid.gk-cols-3 { grid-template-columns: repeat(3, 1fr); }
.gk-photo-grid.gk-cols-4 { grid-template-columns: repeat(4, 1fr); }

.gk-photo-card {
  position: relative;
  background: var(--gk-white);
  border: 1px solid var(--gk-line);
  padding: 10px;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .2s ease;
}

.gk-photo-card:hover {
  box-shadow: 0 10px 24px rgba(18,60,69,.14);
  transform: translateY(-2px);
}

.gk-photo-card::before,
.gk-photo-card::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--gk-clay);
  border-style: solid;
  opacity: .9;
}
.gk-photo-card::before { top: 6px; left: 6px; border-width: 2px 0 0 2px; }
.gk-photo-card::after  { bottom: 6px; right: 6px; border-width: 0 2px 2px 0; }

.gk-photo-frame {
  overflow: hidden;
  background: var(--gk-cream);
  height: 190px;
}

.gk-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gk-photo-caption {
  background: var(--gk-navy);
  color: var(--gk-white);
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  /* font-style: italic; */
  padding: 9px 12px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.gk-photo-caption .gk-view-icon {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-size: 11px;
  color: var(--gk-clay);
  flex: none;
}

/* Gallery grid (section 12) reuses the photo card at smaller scale */
.gk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0 8px;
}

/* -------------------------------------------------------------------------
   Lightbox popup — light cream box
   ------------------------------------------------------------------------- */
.gk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 60, 69, .5);
  backdrop-filter: blur(3px);
}

.gk-lightbox.gk-open { display: flex; }

.gk-lightbox-box {
  background: var(--gk-cream);
  max-width: 780px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
  border: 1px solid var(--gk-line);
  box-shadow: 0 30px 60px rgba(11,42,49,.35);
  animation: gk-pop .18s ease;
}

@keyframes gk-pop {
  from { transform: scale(.96); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.gk-lightbox-imgwrap {
  /* background: var(--gk-white); */
  background-color: #cdc9c926;;
  padding: 14px;
}

.gk-lightbox-imgwrap img {
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
  margin: 0 auto;
}

.gk-lightbox-caption {
  /* background: var(--gk-navy); */
  background-color: #f0e9e991;
  color: var(--gk-white);
  font-family: 'Open Sans', sans-serif;
  /* font-style: italic; */
  font-size: 15px;
  padding: 14px 18px;
}

.gk-lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.5);
  background: #fff;
  color: black;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.gk-lightbox-close:hover { background: rgba(255,255,255,.12); }

/* -------------------------------------------------------------------------
   Awards / publications blocks
   ------------------------------------------------------------------------- */
.gk-cite {
  border-left: 3px solid var(--gk-clay);
  padding: 4px 0 4px 16px;
  margin: 0 0 14px;
  font-size: 14.5px;
}

.gk-cite b { color: var(--gk-navy); }

.gk-award-note {
  background: var(--gk-cream);
  padding: 14px 18px;
  margin-bottom: 4px;
  font-size: 14.5px;
}

/* -------------------------------------------------------------------------
   Footer plans block
   ------------------------------------------------------------------------- */
.gk-plans {
  background: var(--gk-navy);
  color: var(--gk-white);
  padding: 26px 28px;
}
.gk-plans .gk-section-title,
/* .gk-plans .gk-subhead { color: var(--gk-white); } */
.gk-plans ul.gk-list li::before { background: var(--gk-clay); }
.gk-plans .gk-section-head { border-bottom-color: rgba(255,255,255,.25); }

/* -------------------------------------------------------------------------
   Responsive (RWD)
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .gk-photo-grid.gk-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .gk-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .gk-hero { padding: 52px 16px 40px; }
  .gk-shell { padding: 40px 16px 60px; }
  .gk-pillars { grid-template-columns: 1fr; }
  .gk-contact-strip { grid-template-columns: 1fr; }
  .gk-photo-grid,
  .gk-photo-grid.gk-cols-3,
  .gk-photo-grid.gk-cols-4,
  .gk-gallery-grid { grid-template-columns: 1fr; }
  .gk-photo-frame { height: 210px; }
  .gk-lightbox-close { top: 12px; right: 12px; }
}

@media (max-width: 480px) {
  table.gk-table { min-width: 420px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gk-photo-card, .gk-lightbox-box { transition: none; animation: none; }
}

/* Keyboard focus visibility */
.gk-page a:focus-visible,
.gk-photo-card:focus-visible,
.gk-lightbox-close:focus-visible {
  outline: 2px solid var(--gk-clay);
  outline-offset: 2px;
}
 /* GK-ENT unique highlights strip */
.gk-ent-highlights-section { padding-top: 8px; }
.gk-ent-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gk-ent-highlight-card {
  background: linear-gradient(135deg, var(--gk-navy, #123a63), var(--gk-clay, #a4562c));
  color: #fff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
}
.gk-ent-highlight-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.gk-ent-highlight-label {
  font-size: 0.85rem;
  opacity: 0.9;
}
@media (max-width: 991px) { .gk-ent-highlights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .gk-ent-highlights { grid-template-columns: 1fr; } }

/* GK-PLASTIC-SURGERY unique styling */

  /* Highlight strip - teal "reconstruction" theme (enhancement layer;
     core look is already set inline above so it still renders correctly
     even if this <style> block gets stripped by the CMS) */
  .gk-plastic-highlights-section {
    padding-top: 8px;
  }

  .gk-plastic-highlight-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .gk-plastic-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.18);
  }

  /* Subheadings inside sections (e.g. Clinical Pictures categories) */
  .gk-body .gk-subhead {
    color: #0f766e;
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 8px;
    border-left: 3px solid #0f766e;
    padding-left: 10px;
  }


  /* Section title numerals get the same deep-blue identity */
  /* .gk-section-num {
    color: #1e3a8a;
  } */

  /* Photo cards get a subtle lift on hover, matching the department's blue accent */
  .gk-body .gk-photo-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .gk-body .gk-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(30, 58, 138, 0.2);
  }

  /* Table headers pick up the same accent so Census / faculty tables read clearly */
  /* .gk-body .gk-table thead th {
    background: #1e3a8a;
    color: #ffffff;
  } */
  .gk-body .gk-table td:first-child,
  .gk-body .gk-table th:first-child {
    white-space: nowrap;
  }
  /* .gk-body .gk-table thead th {
    background: #9f1239;
    color: #ffffff;
  } */
   /* Nested list items (e.g. special clinics under Facilities) get a soft indigo left rule
     so the hierarchy is visually distinct without changing the content order */
  .gk-body .gk-list .gk-list {
    border-left: 2px solid #c7d2fe;
    padding-left: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  /* GK-MEDICAL-GASTRO-ENTEROLOGY unique styling — subheadings only */
  /* .gk-body .gk-section-title,
  .gk-section-num {
    color: #0f766e;
  } */
   /* GK-NEURO-SURGERY unique styling — subheadings only */
  /* .gk-body .gk-section-title,
  .gk-section-num,
  .gk-body .gk-subhead {
    color: #5b21b6;
  } */
  .gk-photo-grid img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .gk-photo-frame img {
    height: auto;
  }
}

/* ===================================================================
   Government College of Nursing – unique page styling
   Scoped under .con-page so it never leaks into other site pages
   =================================================================== */
.con-page{ --con-primary:#0b5b74; --con-primary-dark:#083f50; --con-accent:#e08a1e; --con-light:#f4f9fa; }

.con-page .page-title{ position:relative; }

/* ---- Section wrapper ---- */
.con-page .con-section{ padding:70px 0 40px; background:#fff; }
.con-page .con-intro-heading{
  text-align:center; margin-bottom:45px; position:relative;
}
.con-page .con-intro-heading h2{
  font-weight:700; color:var(--con-primary-dark); display:inline-block; position:relative; padding-bottom:16px;
  font-size:32px; letter-spacing:.3px;
}
.con-page .con-intro-heading h2:after{
  content:""; position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  width:70px; height:3px; background:var(--con-accent);
}

/* ---- Image gallery with hover effect ---- */
.con-gallery{ display:flex; flex-wrap:wrap; gap:24px; justify-content:center; margin-bottom:50px; }
.con-gallery .con-img-card{
  flex:1 1 300px; max-width:360px; position:relative; overflow:hidden; border-radius:10px;
  box-shadow:0 10px 25px rgba(8,63,80,.15); cursor:pointer;
}
.con-gallery .con-img-card img{
  width:100%; height:240px; object-fit:cover; display:block;
  transition:transform .6s cubic-bezier(.25,.8,.25,1), filter .6s ease;
  filter:saturate(.95);
}
.con-gallery .con-img-card:hover img{ transform:scale(1.12) rotate(0.3deg); filter:saturate(1.15); }
.con-gallery .con-img-card .con-img-overlay{
  position:absolute; inset:0; display:flex; align-items:flex-end;
  background:linear-gradient(180deg, rgba(11,91,116,0) 40%, rgba(8,45,60,.85) 100%);
  opacity:0; transition:opacity .45s ease;
}
.con-gallery .con-img-card:hover .con-img-overlay{ opacity:1; }
.con-gallery .con-img-card .con-img-caption{
  color:#fff; padding:18px 20px; transform:translateY(15px); transition:transform .45s ease .05s;
  font-weight:600; letter-spacing:.3px; font-size:15px;
}
.con-gallery .con-img-card:hover .con-img-caption{ transform:translateY(0); }
.con-gallery .con-img-card:before{
  content:"\f00e"; font-family:"FontAwesome"; position:absolute; top:14px; right:14px;
  width:36px; height:36px; border-radius:50%; background:var(--con-accent); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:14px;
  opacity:0; transform:scale(.5); transition:all .4s ease; z-index:2;
}
.con-gallery .con-img-card:hover:before{ opacity:1; transform:scale(1); }

/* ---- Body copy ---- */
.con-body p{ color:#4a5a60; line-height:1.85; font-size:15.5px; margin-bottom:18px; }

/* ---- Feature blocks (Mission / Vision) ---- */
.con-mv-wrap{ display:flex; flex-wrap:wrap; gap:24px; margin:35px 0 40px; }
.con-mv-card{
  flex:1 1 280px; background:var(--con-light); border-left:4px solid var(--con-primary);
  padding:26px 28px; border-radius:6px; transition:transform .35s ease, box-shadow .35s ease;
}
.con-mv-card:hover{ transform:translateY(-6px); box-shadow:0 14px 28px rgba(8,63,80,.12); border-left-color:var(--con-accent); }
.con-mv-card h4{ color:var(--con-primary-dark); font-weight:700; margin-bottom:10px; display:flex; align-items:center; gap:10px; }
.con-mv-card h4 i{ color:var(--con-accent); }
.con-mv-card p{ margin:0; }

/* ---- Info cards row (Course Features / Eligibility) ---- */
.con-info-grid{ display:flex; flex-wrap:wrap; gap:24px; margin-bottom:10px; }
.con-info-grid .con-info-card{
  flex:1 1 280px; background:#fff; border:1px solid #e7edef; border-radius:8px; padding:24px 26px;
  transition:box-shadow .3s ease, transform .3s ease;
}
.con-info-grid .con-info-card:hover{ box-shadow:0 12px 24px rgba(0,0,0,.08); transform:translateY(-4px); }
.con-info-grid .con-info-card h4{ color:var(--con-primary); font-weight:700; margin-bottom:12px; }
.con-info-grid .con-info-card ul{ padding-left:18px; margin:0; color:#4a5a60; }
.con-info-grid .con-info-card ul li{ margin-bottom:8px; line-height:1.6; }

/* ---- Generic content block with icon heading ---- */
.con-block{ margin-bottom:34px; }
.con-block h4{
  color:var(--con-primary-dark); font-weight:700; font-size:20px; margin-bottom:12px;
  display:flex; align-items:center; gap:12px;
}
.con-block h4 .con-ico{
  width:38px; height:38px; border-radius:50%; background:var(--con-primary); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:16px; flex:0 0 auto;
}

/* ---- Lab list as chips ---- */
.con-chip-list{ list-style:none; margin:0 0 10px; padding:0; display:flex; flex-wrap:wrap; gap:12px; }
.con-chip-list li{
  background:var(--con-light); border:1px solid #dfe9ec; color:var(--con-primary-dark);
  padding:9px 18px; border-radius:30px; font-size:14px; font-weight:500;
  transition:all .3s ease;
}
.con-chip-list li:hover{ background:var(--con-primary); color:#fff; border-color:var(--con-primary); transform:translateY(-2px); }

/* ---- Salient features ---- */
.con-feature-list{ list-style:none; margin:14px 0; padding:0; }
.con-feature-list li{
  position:relative; padding:10px 0 10px 30px; color:#4a5a60; border-bottom:1px dashed #e2e9eb; line-height:1.6;
}
.con-feature-list li:last-child{ border-bottom:none; }
.con-feature-list li:before{
  content:"\f058"; font-family:"FontAwesome"; position:absolute; left:0; top:10px; color:var(--con-accent);
}

/* ---- Course intake table ---- */
.con-table-wrap{ margin:20px 0 50px; }
.con-table-wrap h3{ color:var(--con-primary-dark); font-weight:700; margin-bottom:18px; }
table.con-course-table{ width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,.06); }
table.con-course-table thead th{
  background:var(--con-primary); color:#fff; padding:14px 20px; text-align:left; font-weight:600; letter-spacing:.3px;
}
table.con-course-table tbody td{ padding:14px 20px; border-bottom:1px solid #eef2f3; color:#3d4b50; }
table.con-course-table tbody tr:nth-child(odd){ background:#fbfdfd; }
table.con-course-table tbody tr:hover{ background:#eef7f9; }
table.con-course-table tbody tr:last-child td{ border-bottom:none; }

/* ---- Contact strip ---- */
.con-contact-strip{
  background:var(--con-primary-dark); color:#fff; border-radius:10px; padding:30px 34px;
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
}
.con-contact-strip .con-contact-ico{
  width:54px; height:54px; border-radius:50%; background:var(--con-accent); color:#fff; flex:0 0 auto;
  display:flex; align-items:center; justify-content:center; font-size:22px;
}
.con-contact-strip h4{ margin:0 0 4px; font-weight:700; }
.con-contact-strip p{ margin:0; color:#dbe9ec; }

@media(max-width:767px){
  .con-intro-heading h2{ font-size:26px; }
  .con-contact-strip{ padding:22px; }
}
    /* ==== Unique CSS for Department of Radiodiagnosis page ==== */

    /* Publication table: keep faculty name column readable when rowspan-merged */
    .gk-page .gk-table td[rowspan] {
        vertical-align: top;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.015);
    }

    /* Long publication text cells - tighter line height for dense academic references
   (Research Papers table has 3 columns vs the usual 2-4 short-value tables) */
    .gk-page .gk-table td:last-child {
        line-height: 1.5;
        font-size: 13.5px;
    }

    /* Modality subsection numbering (1. X-Ray, 2. Fluoroscopy, etc.) inside Services Offered
   gets a touch more breathing room + a left accent bar to separate modalities visually */
    .gk-page .gk-body p.gk-subhead {
        position: relative;
        padding-left: 14px;
    }

    .gk-page .gk-body p.gk-subhead::before {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        bottom: 3px;
        width: 3px;
        border-radius: 2px;
        background: #1c3d6e;
    }

    /* Census / workload tables: highlight the numeric columns for quick scanning */
    .gk-page .gk-table td:not(:first-child):not(:nth-child(2)) {
        font-variant-numeric: tabular-nums;
    }

    /* 24 x 7 highlight chip used inline within Radiodiagnosis intro & services text */
    .gk-page .img-chip {
        display: inline-block;
        padding: 2px 10px;
        border-radius: 20px;
        background: #eaf1ff;
        color: #1c3d6e;
        font-weight: 700;
        font-size: 12.5px;
        letter-spacing: 0.3px;
    }

    /* Responsive tweaks specific to this page's dense multi-row publication table */
    @media (max-width: 767px) {
        .gk-page .gk-table td[rowspan] {
            font-size: 13px;
        }
    }