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

.section-news-list {
  padding-top: 90px;
  /* space from header */
  max-width: 1200px;
  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-flow: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding-left: 112px;
  position: relative;
}
/* ===== IMAGE (LEFT) ===== */

.newsItemImage {
  position: absolute;
  left: 0;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
/* ===== 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 {
  font-size: 12px;
  color: #888888;
}
/* ===== 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: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.3;
}
/* ===== DATE ===== */

.articleDate {
  font-size: 13px;
  color: #777777;
  margin-bottom: 20px;
}
.articleDate b {
  color: #444444;
  font-weight: 600;
}
/* ===== 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;
  }
}
