.natca-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.natca-news-card {
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.natca-news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.natca-news-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.natca-news-title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
}

.natca-news-title a {
  color: #020b1a;
  text-decoration: none;
}

.natca-news-title a:hover {
  text-decoration: underline;
}

.natca-news-date {
  font-size: 0.85rem;
  color: #333d52;
  margin-bottom: 0.75rem;
}

.natca-news-excerpt {
  font-size: 0.95rem;
  color: #020b1a;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.natca-read-more {
  align-self: flex-start;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: #003366;
  color: #fcfdff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.natca-read-more:hover {
  background: #01274d;
  text-decoration: underline;
}
