.news-page .NewsStrip {
  display: flex;
  flex-direction: column;
}

.news-page .FlexContainer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-page .NewsStrip header {
  margin: 25px 10px;
}

.news-page .NewsStrip article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: left;
  margin: 0 0 50px 0;
}

.news-page .NewsStrip span {
  font-family: var(--fontSansSerif);
}

.news-page .NewsStrip article div {
  width: 85%;
}

.news-page .NewsStrip img {
  height: auto;
}

.news-category-page .NewsStrip header h1,
.news-article-page .NewsStrip header h2 {
  font-family: var(--fontSerif);
  color: #003;
  font-size: 1.6rem;
  letter-spacing: -1px;
  border-left: 2px solid #9999994a;
  padding: 0 0 0 18px;
}

.news-category-page .NewsStrip h2,
.news-article-page .NewsStrip h3 {
  display: block;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  vertical-align: baseline;
  color: #474747;
  font-family: var(--fontSerif);
  font-style: normal;
  text-decoration: none;
  padding: 0 0 12px 0;
  margin: 0 0 8px 0;
  border-bottom: 1px #e5e5e5 solid;
}

.news-article-page .NewsStrip {
  border-top: 4px solid #ccc;
  width: 100%;
}

.news-article-page label[for="menu-toggle-cat"] {
  position: relative;
  right: 27px;
  top: -5px;
}

.news-article-page #pig {
  width: 90%;
}

.news-article-page .img-pg-lg {
  height: inherit;
  max-width: 100%;
}

.news-article-page .article-img img {
  object-fit: contain;
}

.news-article-page table,
.news-article-page th,
.news-article-page td {
  width: 100% !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-article-page table img {
  max-width: 100% !important;
  height: unset !important;
}

.news-article-page th,
.news-article-page td {
  margin: 12px 0 0 0;
}

@media (max-width: 670px) {
  .news-page .FlexContainer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-page .FlexContainer > a {
    display: block;
  }

  .news-page .NewsStrip {
    padding: 0 12px;
  }

  .news-page .NewsStrip article div {
    width: 100%;
  }

  .news-page .NewsStrip img {
    width: 100%;
    height: auto;
  }
}
