@charset "UTF-8";
/* ===== SECTION WRAPPER ===== */

.section-news-list {
  padding-top: 100px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
/* ===== GROUP LAYOUT ===== */

.blue-news-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 80px;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 50px;
}
/* ===== EACH ITEM ===== */

.blue-news-item {
  padding: 12px;
  background: white;
  border-radius: 4px;
  transition: 0.2s;
}
.blue-news-item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
/* ===== LINK LAYOUT ===== */

.newsItemURL {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
/* ===== IMAGE (LEFT) ===== */

.newsItemImage {
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
/* ===== TEXT WIDTH FIX (IMPORTANT) ===== */

.newsItemTitle,
.newsItemDate,
.newsItemSummary {
  width: calc(75%);
}
/* ===== TITLE ===== */

.newsItemTitle {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: #333333;
  text-transform: capitalize;
}
/* ===== DATE ===== */

.newsItemDate {
  position: relative;
  font-size: 12px;
  color: #888888;
  margin-top: -50px;
  margin-left: 112px;
}
/* ===== SUMMARY ===== */

.newsItemSummary {
  font-size: 13px;
  color: #444444;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ===== PAGE TITLE ===== */

.pageTitle {
  margin-bottom: 20px;
  padding-left: 28px;
}
.newsItemSummary {
  display: none;
}
/* ===== News Article ===== */

/* ===== ARTICLE WRAPPER ===== */

.blue-news-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  background: white;
  border-radius: 8px;
  line-height: 1.6;
  color: #333333;
}
/* ===== TITLE ===== */

.articleTitle {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d1f5a;
  line-height: 1.3;
}
/* ===== DATE ===== */

.articleDate {
  display: none;
}
/* ===== CONTENT ===== */

.articleContent {
  font-size: 16px;
  color: #444444;
}
/* Paragraph spacing */

.articleContent p {
  margin-bottom: 16px;
}
/* Strong emphasis */

.articleContent strong {
  color: #111111;
}
/* Lists */

.articleContent ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.articleContent li {
  margin-bottom: 10px;
}
/* Remove weird CMS empty div spacing */

.articleContent div {
  display: none;
}
/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .blue-news-article {
    padding: 20px 15px;
  }
  .articleTitle {
    font-size: 22px;
  }
  .articleContent {
    font-size: 15px;
  }
}
/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .blue-news-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .newsItemImage {
    width: 70px;
    height: 70px;
  }
}
