

/* =====================================
   TITLE (First H2 as Main Title)
===================================== */
.single-news h2:first-of-type,
.single-post h2:first-of-type {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Date Meta */
.single-news .text-xs,
.single-post .text-xs {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 24px;
}

/* =====================================
   HEADINGS
===================================== */
.single-news h2.wp-block-heading,
.single-news h2:not(:first-of-type),
.single-post h2.wp-block-heading,
.single-post h2:not(:first-of-type) {
  font-size: 26px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

.single-news h3.wp-block-heading,
.single-post h3.wp-block-heading {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 14px;
}

/* =====================================
   PARAGRAPH
===================================== */
.single-news p,
.single-post p {
  margin-bottom: 18px;
  color: #444;
}

/* =====================================
   STRONG TEXT
===================================== */
.single-news strong,
.single-post strong {
  font-weight: 600;
  color: #111;
}

/* =====================================
   IMAGE (GUTENBERG)
===================================== */
.single-news figure.wp-block-image,
.single-post figure.wp-block-image {
  margin: 30px 0;
  text-align: center;
}

.single-news figure.wp-block-image img,
.single-post figure.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* =====================================
   LISTS
===================================== */
.single-news ul,
.single-news ol,
.single-post ul,
.single-post ol {
  padding-left: 22px;
  margin-bottom: 22px;
}

.single-news li,
.single-post li {
  margin-bottom: 8px;
}

.single-news ul ul,
.single-post ul ul {
  margin-top: 8px;
  padding-left: 20px;
}

/* =====================================
   TABLE
===================================== */
.single-news figure.wp-block-table,
.single-post figure.wp-block-table {
  margin: 30px 0;
  overflow-x: auto;
}

.single-news table,
.single-post table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.single-news table td,
.single-post table td {
  border: 1px solid #e5e5e5;
  padding: 12px;
  vertical-align: top;
}

.single-news table tr:nth-child(odd),
.single-post table tr:nth-child(odd) {
  background-color: #fafafa;
}

/* =====================================
   HR
===================================== */
.single-news hr,
.single-post hr {
  margin: 40px 0;
  border: none;
  height: 1px;
  background: #eee;
}

/* =====================================
   SECTION SPACING
===================================== */
.single-news > *:last-child,
.single-post > *:last-child {
  margin-bottom: 0;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
  .single-news,
  .single-post {
    padding: 25px 16px;
    font-size: 15px;
  }

  .single-news h2:first-of-type,
  .single-post h2:first-of-type {
    font-size: 26px;
  }

  .single-news h2.wp-block-heading,
  .single-post h2.wp-block-heading {
    font-size: 22px;
  }

  .single-news h3.wp-block-heading,
  .single-post h3.wp-block-heading {
    font-size: 18px;
  }

  .single-news table,
  .single-post table {
    font-size: 13px;
  }
}