.tnfh-news {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.tnfh-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #354237;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tnfh-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tnfh-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tnfh-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tnfh-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #fff;
  text-decoration: none;
}

.tnfh-title:hover {
  color: #0073aa;
  text-decoration: underline;
}

.tnfh-meta {
  font-size: 12px;
  color: #808080;
  margin-bottom: 8px;
  font-weight: bolder;
}

.tnfh-summary {
  font-size: 14px;
  color: #333;
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tnfh-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

.tnfh-news-wrap {
  max-width: none;
  padding-left: 35px;
  padding-right: 35px;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .tnfh-news {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tnfh-news {
    grid-template-columns: 1fr;
  }

  .tnfh-news-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}