/* Reset some defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4d04e;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 8px 8px 0 #000;
    max-width: 350px;
    overflow: hidden;
    padding: 24px;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: scale(1.02);
  }
  
  .card-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .tag {
    background-color: #000;
    color: #f4d04e;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
  }
  
  .publish-date {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 12px;
  }
  
  .title {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 12px;
    cursor: pointer;
  }
  
  .title:hover {
    color: #f4d04e;
  }
  
  .description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  
  .author-name {
    font-size: 0.85rem;
    font-weight: bold;
  }
  