/* ==========================================================================
   PRAG — Policy Research and Analytics for Governance Initiative
   IIT Gandhinagar. Palette lifted from the launch poster.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* brand — sampled from the poster */
  --navy:        #143e71;
  --navy-dark:   #0c2a4f;
  --navy-deep:   #081d38;
  --navy-tint:   #eaf0f8;

  --orange:      #f29034;
  --orange-dark: #d9761c;
  --orange-tint: #fdf0e2;

  --green:       #0d562c;
  --green-tint:  #e8f2ea;

  --cream:       #fdf7e8;
  --cream-deep:  #f7f0dd;

  /* neutrals */
  --ink:         #141d2b;
  --body:        #3c4756;
  --muted:       #6d7887;
  --line:        #e4e7ec;
  --line-soft:   #eef0f4;
  --bg:          #ffffff;
  --bg-soft:     #f7f8fa;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap:   1180px;
  --narrow: 760px;

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 18px;

  --sh-sm: 0 1px 2px rgba(16, 29, 43, .06), 0 1px 3px rgba(16, 29, 43, .05);
  --sh:    0 2px 6px rgba(16, 29, 43, .06), 0 8px 24px rgba(16, 29, 43, .07);
  --sh-lg: 0 4px 12px rgba(16, 29, 43, .08), 0 20px 48px rgba(16, 29, 43, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 68px;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 52px);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.22;
  margin: 0 0 .55em;
  font-weight: 600;
  letter-spacing: -.01em;
}

p { margin: 0 0 1.05em; }
ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  width: auto; height: auto; clip: auto; margin: 0;
  padding: 10px 18px; background: var(--navy); color: #fff; border-radius: var(--r-sm);
}

.muted { color: var(--muted); }
.t-navy   { color: var(--navy); }
.t-orange { color: var(--orange); }
.t-green  { color: var(--green); }

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .12), 0 2px 14px rgba(8, 29, 56, .22);
}

.site-header__inner {
  display: flex; align-items: center; gap: 18px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 13px; color: #fff; flex: 1 1 auto; min-width: 0; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; min-width: 0; }
.brand__name {
  font-family: var(--serif); font-weight: 700; font-size: 21px;
  line-height: 1.1; letter-spacing: .02em;
}
.brand__deva { color: var(--orange); font-weight: 600; }
.brand__sub {
  font-size: 11px; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255, 255, 255, .72); line-height: 1.45;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.site-header__inst {
  flex: none; font-size: 12px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255, 255, 255, .8);
}

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; isolation: isolate; }

.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 88% 4%,  rgba(242, 144, 52, .55) 0%, rgba(242, 144, 52, 0) 46%),
    radial-gradient(110% 80% at 6% 100%, rgba(120, 200, 110, .48) 0%, rgba(120, 200, 110, 0) 52%),
    linear-gradient(170deg, var(--cream) 0%, #fefbf2 42%, var(--cream-deep) 100%);
}
/* A whisper of the poster's network texture, kept to the right so the copy
   column stays on clean cream. */
.hero__bg::after {
  content: ""; position: absolute; inset: 0 0 0 40%;
  background: url("../img/network-abstract.jpg") right center / cover no-repeat;
  opacity: .085; mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 45%);
          mask-image: linear-gradient(to right, transparent 0%, #000 45%);
}

.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 56px; align-items: center;
  padding-top: 62px; padding-bottom: 62px;
}

.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy); margin: 0 0 26px;
}

.hero__kicker {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 34px);
  color: var(--navy); margin: 0 0 6px; font-weight: 400;
}

.hero__title { display: flex; align-items: flex-start; gap: 26px; flex-wrap: wrap; margin: 0 0 24px; }
.hero__wordmark { width: clamp(180px, 24vw, 250px); height: auto; }
.hero__expand {
  display: flex; flex-direction: column;
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(21px, 2.6vw, 31px); line-height: 1.16;
  letter-spacing: -.015em; padding-top: 4px;
}

.hero__pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.hero__pills span {
  background: var(--orange); color: #fff;
  padding: 5px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
}

.hero__lede {
  font-family: var(--serif); font-size: clamp(19px, 2vw, 23px);
  color: var(--green); font-weight: 600; line-height: 1.45;
  margin: 0 0 30px; max-width: 34ch; text-wrap: balance;
}

.event-facts {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 26px;
  border-top: 1px solid rgba(20, 62, 113, .18);
  border-bottom: 1px solid rgba(20, 62, 113, .18);
  padding: 20px 0;
}
.event-facts > div { flex: 1 1 150px; }
.event-facts dt {
  font-size: 11.5px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--orange-dark); margin-bottom: 4px;
}
.event-facts dd {
  margin: 0; font-size: 16.5px; font-weight: 600; color: var(--navy); line-height: 1.4;
}
.event-facts dd .muted { font-weight: 400; font-size: 14px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 22px; }

.hero__invite {
  font-size: 13px; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--navy); margin: 0;
}

.hero__poster { margin: 0; }
.hero__poster img {
  width: 100%; border-radius: var(--r); box-shadow: var(--sh-lg);
  transition: transform .3s var(--ease);
}
.hero__poster a:hover img { transform: translateY(-4px); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  font-size: 15.5px; font-weight: 600; line-height: 1.3;
  border: 2px solid transparent; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--lg { padding: 15px 34px; font-size: 17px; }

.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; }

.btn--orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(20, 62, 113, .38); }
.btn--ghost:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--outline-light:hover { background: #fff; border-color: #fff; color: var(--navy); }

/* --------------------------------------------------------------------------
   6. Section bar
   -------------------------------------------------------------------------- */
.sectionbar {
  position: sticky; top: var(--header-h); z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(8px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sectionbar ul {
  display: flex; gap: 2px; list-style: none;
  overflow-x: auto; scrollbar-width: none;
}
.sectionbar ul::-webkit-scrollbar { display: none; }
/* Wider than the content wrap so all nine source headings fit on one line. */
.sectionbar .wrap { max-width: 1360px; }
.sectionbar a {
  display: block; white-space: nowrap; padding: 13px 11px;
  font-size: 14px; font-weight: 500; color: var(--body);
  border-bottom: 3px solid transparent;
}
.sectionbar a:hover { color: var(--navy); text-decoration: none; }
.sectionbar a.is-active { color: var(--navy); font-weight: 700; border-bottom-color: var(--orange); }

/* --------------------------------------------------------------------------
   7. Sections — shared
   -------------------------------------------------------------------------- */
.section { padding: 78px 0; }
.section--tint { background: var(--bg-soft); }

.section__eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-dark); margin: 0 0 10px;
}
.section__eyebrow--light { color: var(--orange); }

.section__title { font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 18px; max-width: 28ch; text-wrap: balance; }
.section__title--light { color: #fff; }

.section__intro { max-width: var(--narrow); font-size: 18px; margin-bottom: 34px; }

.prose { max-width: 68ch; }
.prose--lead p { font-size: 18.5px; }
.prose p:last-child { margin-bottom: 0; }

.pull {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px);
  color: var(--green); font-weight: 600; line-height: 1.4;
  border-left: 4px solid var(--orange); padding-left: 20px; margin-top: 28px;
}

.group-label {
  font-family: var(--sans); font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin: 38px 0 18px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.group-label:first-of-type { margin-top: 28px; }

/* --------------------------------------------------------------------------
   8. About
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
  gap: 48px; align-items: center; margin-bottom: 54px;
}
.venn { margin: 0; }
.venn img { width: 100%; }
.venn figcaption { margin-top: 10px; font-size: 13.5px; color: var(--muted); text-align: center; }

/* --------------------------------------------------------------------------
   9. Vision
   -------------------------------------------------------------------------- */
.section--vision {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative; overflow: hidden;
}
.section--vision::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/network-abstract.jpg") center / cover no-repeat;
  opacity: .17;
}
.vision { position: relative; max-width: 900px; }
.vision__quote {
  margin: 0; font-family: var(--serif); color: #fff;
  font-size: clamp(23px, 3.1vw, 34px); line-height: 1.42; font-weight: 500;
}
.vision__quote::before {
  content: "\201C"; display: block; font-size: 86px; line-height: 1;
  color: var(--orange); margin: -18px 0 -6px;
}

/* --------------------------------------------------------------------------
   10. Objectives
   -------------------------------------------------------------------------- */
.objectives { list-style: none; counter-reset: obj; display: grid; gap: 2px; max-width: 950px; }
.objectives li {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px 4px; border-bottom: 1px solid var(--line);
}
.objectives li:first-child { border-top: 1px solid var(--line); }
.objectives__num {
  flex: none; font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--orange); line-height: 1.35; width: 34px;
}
.objectives p { margin: 0; font-size: 17.5px; color: var(--ink); }

/* --------------------------------------------------------------------------
   11. Rationale
   -------------------------------------------------------------------------- */
.rationale { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: 48px; }
.rationale__media { display: grid; gap: 18px; align-content: start; }
.rationale__media figure { margin: 0; }
.rationale__media img {
  width: 100%; border-radius: var(--r); box-shadow: var(--sh);
  cursor: zoom-in; transition: transform .3s var(--ease);
}
.rationale__media img:hover { transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   12. Cards (institutional significance)
   -------------------------------------------------------------------------- */
.cards {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px; list-style: none;
}
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; box-shadow: var(--sh-sm);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.card { border-left: 3px solid var(--orange); }
.card:nth-child(2) { border-left-color: var(--navy); }
.card:nth-child(3) { border-left-color: var(--green); }
.card:nth-child(4) { border-left-color: var(--navy); }
.card:nth-child(5) { border-left-color: var(--orange); }
.card p { margin: 0; font-size: 16px; color: var(--ink); }

/* --------------------------------------------------------------------------
   13. Launch event
   -------------------------------------------------------------------------- */
.section--launch {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, var(--green) 190%);
  color: rgba(255, 255, 255, .9);
}
.launch {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 52px; align-items: center; margin-top: 8px;
}
.launch__list { list-style: none; display: grid; gap: 0; margin-bottom: 26px; }
.launch__list li {
  display: flex; gap: 20px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .17);
}
.launch__list li:first-child { border-top: 1px solid rgba(255, 255, 255, .17); }
.launch__list span {
  flex: none; width: 90px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--orange);
}
.launch__list strong { font-family: var(--serif); font-size: 20px; color: #fff; font-weight: 600; }
.launch__pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 26px; }
.launch__pills span {
  background: var(--orange); color: #fff; padding: 5px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
}
.launch__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.launch__poster { margin: 0; }
.launch__poster img {
  width: 100%; border-radius: var(--r); box-shadow: var(--sh-lg);
  cursor: zoom-in; transition: transform .3s var(--ease);
}
.launch__poster img:hover { transform: translateY(-4px); }

/* --------------------------------------------------------------------------
   14. Timeline
   -------------------------------------------------------------------------- */
.timeline { list-style: none; position: relative; max-width: 900px; padding-left: 8px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 12px; bottom: 12px;
  width: 2px; background: var(--line);
}
.timeline__item { position: relative; padding: 0 0 30px 40px; }
.timeline__item::before {
  content: ""; position: absolute; left: 1px; top: 8px;
  width: 15px; height: 15px; border-radius: 50%;
  background: #fff; border: 3px solid var(--navy);
}
.timeline__item:first-child::before { border-color: var(--orange); background: var(--orange); }
.timeline__when {
  font-size: 12.5px; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--orange-dark); margin-bottom: 4px;
}
.timeline__body h3 { font-size: 21px; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   15. People
   -------------------------------------------------------------------------- */
.people {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px; list-style: none;
}
.person {
  display: flex; gap: 18px; align-items: center;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px; box-shadow: var(--sh-sm);
}
.person__photo {
  flex: none; width: 78px; height: 78px; border-radius: 50%;
  overflow: hidden; background: var(--navy-tint);
}
.person__photo--placeholder {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.person__photo--placeholder span {
  font-family: var(--serif); font-size: 30px; font-weight: 700; color: #fff;
}
.person__meta { min-width: 0; }
.person__meta h4 { font-size: 19px; margin: 0 0 2px; }
.person__role { margin: 0; font-size: 14.5px; color: var(--navy); font-weight: 600; }

/* --------------------------------------------------------------------------
   16. CTA
   -------------------------------------------------------------------------- */
.section--cta {
  background: linear-gradient(150deg, var(--green) 0%, #07401f 100%);
  color: rgba(255, 255, 255, .9);
}
.cta { max-width: 820px; }
.cta__text {
  font-family: var(--serif); font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.5; color: #fff; font-weight: 600; margin-bottom: 30px;
}
.cta__text a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.cta__text a:hover { color: var(--orange); }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .74); padding: 58px 0 26px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr) minmax(0, 1fr); gap: 44px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand strong { font-family: var(--serif); font-size: 23px; color: #fff; letter-spacing: .02em; }
.site-footer h4 {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: grid; gap: 7px; }
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: var(--orange); text-decoration: none; }
.footer-plain { margin-bottom: 16px; color: rgba(255, 255, 255, .9); }
.footer-tag { color: var(--orange); font-weight: 600; margin-bottom: 0; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  margin-top: 44px; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 13.5px; color: rgba(255, 255, 255, .58);
}

/* --------------------------------------------------------------------------
   18. Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 20, 36, .93);
  display: grid; place-items: center; padding: 40px 24px;
}
.lightbox[hidden] { display: none; }
.lightbox__fig { margin: 0; max-width: min(880px, 92vw); }
.lightbox__fig img { max-height: 82vh; width: auto; margin: 0 auto; border-radius: var(--r-sm); }
.lightbox__cap { color: rgba(255, 255, 255, .8); text-align: center; margin-top: 14px; font-size: 14.5px; }
.lightbox__close {
  position: absolute; top: 18px; right: 20px;
  width: 46px; height: 46px; font-size: 30px; line-height: 1;
  background: rgba(255, 255, 255, .12); color: #fff;
  border: 0; border-radius: 50%; cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .24); }

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1040px) {
  .hero__inner   { grid-template-columns: 1fr; gap: 44px; }
  .hero__poster  { max-width: 420px; margin: 0 auto; }
  .about-grid,
  .rationale,
  .launch        { grid-template-columns: 1fr; gap: 36px; }
  .venn          { max-width: 460px; margin: 0 auto; }
  .launch__poster{ max-width: 420px; margin: 0 auto; }
  .rationale__media { grid-template-columns: repeat(3, 1fr); }
  .rationale__media img { aspect-ratio: 3 / 4; object-fit: cover; }
  .cards         { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .site-header__inst { display: none; }
}

@media (max-width: 860px) {
  .brand__sub { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .wrap { padding: 0 18px; }
  .hero__inner { padding-top: 40px; padding-bottom: 44px; }
  .hero__title { gap: 18px; }
  .rationale__media { grid-template-columns: 1fr; }
  .rationale__media img { aspect-ratio: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .objectives li { gap: 14px; }
  .objectives__num { font-size: 21px; width: 34px; }
  .cards { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
  .hero__cta, .launch__cta { flex-direction: column; }
  .person { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .sectionbar, .nav-toggle, .lightbox, .hero__cta, .launch__cta { display: none !important; }
  .section--vision::before, .hero__bg::after { display: none; }
  body { font-size: 12pt; }
}
