/* =============================================================
   News article (single post) — clean, magazine-style typography.
   Scoped to #news #singlezone .mainarea so it only affects News
   article pages. Loaded after style.css (overrides by specificity).
   ============================================================= */

/* ---- Featured image: centered, framed, with breathing room ---- */
#news #singlezone .mainarea .p1 {
  text-align: center;
  padding-bottom: 24px;
}
#news #singlezone .mainarea .p1 img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: inline-block;
  border-radius: 12px;
  box-shadow: 0 14px 32px -20px rgba(0, 87, 122, 0.28);
}

/* ---- Title ---- */
#news #singlezone .mainarea .t2 {
  font-size: 30px;
  line-height: 1.5;
  color: #1a1a1a;
  padding-bottom: 30px;
}

/* ---- Body: comfortable measure, rhythm and color ---- */
#news #singlezone .mainarea .post {
  font-size: 16px;
  line-height: 1.95;
  color: #333;
}
#news #singlezone .mainarea .post p {
  margin: 0 0 1.7em;
  padding-bottom: 0;
  text-align: justify;
  text-justify: inter-character;
  word-break: normal;
  overflow-wrap: anywhere;
}
/* Lead paragraph (first) slightly larger, editorial feel */
#news #singlezone .mainarea .post > p:first-of-type {
  font-size: 17px;
  line-height: 2;
  color: #222;
}

/* ---- Headings: clear hierarchy with a brand accent ---- */
#news #singlezone .mainarea .post h2 {
  font-size: 24px;
  font-weight: 500;
  color: #00577a;
  margin: 2.4em 0 1em;
  padding: 0 0 .5em;
  border-bottom: 2px solid #00a3e2;
  line-height: 1.4;
}
#news #singlezone .mainarea .post h2:first-child { margin-top: 0; }
#news #singlezone .mainarea .post h3 {
  font-size: 18px;
  font-weight: 500;
  color: #00577a;
  margin: 1.9em 0 .7em;
  padding: 0;
  line-height: 1.5;
}

/* ---- Real bullet / numbered lists (override global list-style:none) ---- */
#news #singlezone .mainarea .post ul {
  list-style: disc;
  padding-left: 1.6em;
  margin: 0 0 1.8em;
}
#news #singlezone .mainarea .post ol {
  list-style: decimal;
  padding-left: 1.7em;
  margin: 0 0 1.8em;
}
#news #singlezone .mainarea .post li {
  margin-bottom: .55em;
  line-height: 1.85;
  padding-left: .2em;
  text-align: justify;
  text-justify: inter-character;
  overflow-wrap: anywhere;
}
#news #singlezone .mainarea .post li::marker { color: #00a3e2; }

/* ---- Figures & captions: room around the image, clear caption gap ---- */
#news #singlezone .mainarea .post figure {
  margin: 1.8em auto;
  text-align: center;
}
#news #singlezone .mainarea .post figure img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: inline-block;
  border-radius: 12px;
  box-shadow: 0 14px 32px -22px rgba(0, 87, 122, 0.26);
}
#news #singlezone .mainarea .post figcaption {
  margin-top: .8em;
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

/* ---- Tables: spacing + readable ---- */
#news #singlezone .mainarea .post table {
  margin: .5em 0 2em;
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Inline links keep underline (theme default) but add hover ---- */
#news #singlezone .mainarea .post a:hover { color: #00a3e2; }

@media (max-width: 600px) {
  #news #singlezone .mainarea .post { font-size: 15px; line-height: 1.9; }
  #news #singlezone .mainarea .post h2 { font-size: 21px; }
}
