/* ==========================
   NEWS PAGE
========================== */

.news-page {
  padding: 60px 0;
}

.news-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

.news-card {
  background: white;

  border-radius: 15px;

  overflow: hidden;

  border: 1px solid #eee;
}

.news-card img {
  width: 100%;
  height: 260px;

  object-fit: cover;
}

.news-content {
  padding: 25px;
}

.news-content span {
  background: #5c22ff;

  color: white;

  padding: 6px 12px;

  border-radius: 4px;

  font-size: 12px;
}

.news-content h3 {
  font-size: 24px;

  margin: 15px 0;

  font-weight: 700;
}

.news-content p {
  color: #666;

  line-height: 1.7;
}

.news-content a {
  color: #5c22ff;

  font-weight: 600;

  text-decoration: none;
}

/* SIDEBAR */

.sidebar {
  position: sticky;

  top: 120px;
}

.widget {
  background: white;

  padding: 25px;

  border-radius: 15px;

  border: 1px solid #eee;

  margin-bottom: 25px;
}

.widget h4 {
  margin-bottom: 20px;

  font-weight: 700;
}

.widget ul {
  list-style: none;

  padding: 0;
}

.widget li {
  padding: 12px 0;

  border-bottom: 1px solid #eee;
}
