/* ===================================================================
   NEWS SUMMARY STYLING
   =================================================================== */

/* -------------------------------------------------------------------
   News Grid Layout
   ------------------------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.news-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

/* -------------------------------------------------------------------
   News Cards
   ------------------------------------------------------------------- */
.news-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(22, 72, 106, 0.15);
  transition: all 0.3s ease;
  border-left: 5px solid #2ea2dc;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(22, 72, 106, 0.25);
  border-left-color: #41af49;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 15px;
}

.portfolio-badge {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, #16486a 0%, #2ea2dc 100%);
  color: white;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.date-badge {
  padding: 6px 12px;
  background: #f0f0f0;
  color: #16486a;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
}

/* -------------------------------------------------------------------
   News Content
   ------------------------------------------------------------------- */
.news-content {
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

.news-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-content li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8f4f8;
}

.news-content li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-content strong {
  color: #16486a;
}

.news-content a {
  color: #2ea2dc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.news-content a:hover {
  color: #41af49;
  text-decoration: underline;
}

.news-reference {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #e8f4f8;
  font-size: 1em;
  color: #666;
}

/* -------------------------------------------------------------------
   No Results
   ------------------------------------------------------------------- */
.no-results {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(22, 72, 106, 0.15);
  grid-column: 1 / -1;
}

.no-results h3 {
  color: #16486a;
  margin-bottom: 10px;
}

/* -------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------- */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
