/* ===== BASE STYLES ===== */
html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.subheading {
  text-align: right;
  font-style: italic;
  color: #ccc;
  margin-right: 20px;
  font-size: 1.2rem;
}

.news-container {
  max-width: 820px;
  margin: 20px auto;
  padding: 20px;
  background-color: #e5e5e5;
  border-radius: 15px;
}

.news-card {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

.news-card:last-child {
  border-bottom: none;
}

.news-title {
  font-weight: bold;
  color: #a40000;
  font-size: 18px;
  margin-bottom: 5px;
  cursor: pointer;
}

.news-date {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.news-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .news-container {
    padding: 15px;
  }

  .subheading {
    font-size: 1rem;
    margin-right: 10px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-date,
  .news-desc {
    font-size: 14px;
  }
}
