/* ==================================
   SHARED PAGE STYLES
   Used by:
   - about.html
   - admission.html
   - contact.html
   - news.html
   - research.html

   Purpose:
   Replaces inline styles with reusable,
   semantic classes shared across pages.
   ================================== */


/* ---- Main Content Area ---- */

.shared-main {
  padding: 70px 0;
  background: var(--bg-white);
}


/* ---- Narrow Content Column ---- */

.content-narrow {
  max-width: 920px;
}


/* ---- Section Headings ---- */

.content-heading {
  color: var(--iugb-blue);
  margin-bottom: 12px;
}

.content-heading--spaced {
  color: var(--iugb-blue);
  margin: 28px 0 12px;
}


/* ---- Content Lists ---- */

.content-list {
  margin-left: 18px;
  line-height: 1.9;
}


/* ---- Info / Callout Box ---- */

.info-box {
  margin-top: 26px;
  padding: 18px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
}


/* ---- Cards ---- */

.card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px;
}

.card-title {
  color: var(--iugb-blue);
  margin-bottom: 10px;
}


/* ---- Card Grids ---- */

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card-grid--auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}


/* ---- Text Helpers ---- */

.text-muted {
  color: var(--text-gray);
}

.text-muted--mt {
  color: var(--text-gray);
  margin-top: 10px;
}

.text-note {
  margin-top: 26px;
  color: var(--text-gray);
}


/* ---- Responsive ---- */

@media (max-width: 768px) {
  .shared-main {
    padding: 50px 0;
  }

  .card-grid--2col {
    grid-template-columns: 1fr;
  }
}
