body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .site-title {
    text-decoration: none;  /* removes underline */
    color: inherit;         /* inherits text color, no blue */
    cursor: pointer;        /* shows hand cursor on hover */
  }

  .container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .profile {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .profile h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
  }
  
  .bio {
    font-size: 1rem;
    color: #666;
  }
  
  .icons a {
    margin: 0 0.5rem;
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .icons a:hover {
    color: #0077b5; /* LinkedIn blue */
  }
  
  .posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .post-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-height: 200px;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  
  .post-card h2 {
    margin-top: 0;
    font-size: 1.2rem;
  }
  
  .post-card p {
    margin: 0.5rem 0 0;
  }
  
  .pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  
  .pagination a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  /* Add custom font */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

  .footer {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
  }