/* Quote styling */
  blockquote {
    background-color: #f8f8f8;
    border-left: 4px solid #0366d6;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
  }
  
  blockquote p {
    margin: 0;
    font-style: italic;
  }
  
  /* Page title styling */
  .page-title {
    font-size: 2em;
    margin-bottom: 0.5em;
  }
  
  /* Post list styling - exactly matching homepage */
  .post-list {
    margin-left: 0;
    list-style: none;
    padding: 0;
  }
  
  .post-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.3s;
  }
  
  .post-item:hover {
    background-color: #f0f0f0;
  }
  
  .post-title {
    flex: 1;
    text-align: left;
    font-size: 1.5em;
    margin-bottom: 0;
  }
  
  .post-title a {
    color: #0366d6;
    text-decoration: none;
  }
  
  .post-date {
    flex: 0 0 auto;
    text-align: right;
    color: #828282;
    font-size: 0.875em;
    margin: 0;
  }
  