.news-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
  }

  .news-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .news-content {
    flex: 1;
  }

  .news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
  }

  .news-meta .tag {
    background-color: #f1f1f1;
    color: #666;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
  }

  .news-meta .time {
    font-size: 12px;
    color: #999;
  }

  .news-content .title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
  }

  .news-content .description {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
  }