/* Quote styling */
  blockquote {
    background-color: rgba(134, 197, 255, 0.08);
    border-left: 4px solid var(--quote-accent, #78b7f7);
    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 12px;
    margin: 0;
    border-bottom: 1px solid var(--border-color, #263041);
    transition: background-color 0.3s;
  }
  
  .post-item:hover {
    background-color: rgba(134, 197, 255, 0.07);
  }
  
  .post-title {
    flex: 1;
    text-align: left;
    font-size: 1.5em;
    margin-bottom: 0;
  }
  
  .post-title a {
    color: var(--text-primary, #e6edf3);
    text-decoration: none;
  }
  
  .post-date {
    flex: 0 0 auto;
    text-align: right;
    color: var(--text-tertiary, #909caf);
    font-size: 0.875em;
    margin: 0;
  }
  
