.card {
    max-width: 680px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: auto;
    font-family: 'Space Grotesk', sans-serif;
  }

  .card img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
  }

  .card-content {
    padding: 20px 24px 30px;
  }

  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  .tag {
    background-color: #e6e6e6;
    color: #666;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 500;
  }

  .card-content .date {
    font-size: 12px;
    color: #999;
  }

  .card-content .title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 12px;
    color: #1f2d3d;
  }

  .card-content .description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }