/* News article rich content helpers */
.article-content h2 {
  position: relative;
  margin: 2.4em 0 1em;
  padding: .85em 1em .85em 1.15em;
  border-left: 7px solid #00a568;
  background: linear-gradient(90deg, rgba(0,165,104,.11), rgba(0,165,104,.03));
  border-radius: 18px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.45;
  color: #062b22;
}
.article-content h3 {
  margin: 2em 0 .8em;
  padding-bottom: .45em;
  border-bottom: 2px solid rgba(0,165,104,.22);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.5;
  color: #07372c;
}
.article-content h4 {
  margin: 1.7em 0 .7em;
  font-size: 1.1rem;
  color: #074337;
}
.article-content blockquote {
  position: relative;
  margin: 2em 0;
  padding: 1.25em 1.35em 1.25em 1.55em;
  border: 1px solid rgba(0,165,104,.22);
  border-left: 0;
  border-radius: 20px;
  background: #f2fbf7;
  box-shadow: 0 14px 35px rgba(0,79,54,.08);
}
.article-content blockquote::before {
  content: "POINT";
  display: inline-block;
  margin: 0 0 .65em;
  padding: .28em .75em;
  border-radius: 999px;
  background: #00a568;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.article-content blockquote p { margin: 0; }
.article-content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(0,165,104,.24);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,79,54,.06);
}
.article-content th,
.article-content td {
  padding: 1em 1.1em;
  border-right: 1px solid rgba(0,165,104,.16);
  border-bottom: 1px solid rgba(0,165,104,.16);
  vertical-align: top;
  line-height: 1.75;
}
.article-content th {
  background: #e9f8f1;
  color: #06362b;
  font-weight: 800;
}
.article-content tr:last-child td { border-bottom: 0; }
.article-content th:last-child,
.article-content td:last-child { border-right: 0; }
@media (max-width: 720px) {
  .article-content table { display: block; overflow-x: auto; white-space: nowrap; }
  .article-content th, .article-content td { min-width: 9em; }
}
