* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Clash Display', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
  }
  
  .read-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 7px 18px;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    background: transparent;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    text-decoration: none;
    width: fit-content;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  
  .read-btn:hover {
    background: rgba(122, 122, 0, 1);
    border-color: rgba(122, 122, 0, 1);
    color: #fff;
  }
  
  .post-date {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  
  .tag-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 295px;
    margin: 0 auto 16px;
  }
  
  .tag-label .line {
    flex: 1;
    height: 1px;
    background: rgba(122, 122, 0, 0.6);
  }
  
  .tag-label span {
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(122, 122, 0, 1);
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  @media (max-width: 768px) {
    .tag-label {
      width: 240px;
    }
  }
  
  @media (max-width: 480px) {
    .tag-label {
      width: 200px;
    }
  }