.news-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  direction: rtl;
  font-family: "Vazirmatn", sans-serif;
}

.news-container h2 {
  text-align: right;
  color: #444;
  font-size: 1.5em;
  margin-bottom: 20px;
  position: relative;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: transform 0.2s ease-in-out;
}

.news-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-item a:hover {
  color: #007bff; /* Adjust hover color */
}

.news-title {
  font-weight: bold;
  margin: 0;
  font-size: 1.1em;
}

.news-date {
  text-align: left;
  font-size: 0.9em;
  color: #888;
  margin: 5px 0 0 0;
}
