/* Reset + Base Styles */
body {
  background: #111;
  color: #eee;
  margin: 0;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Grid Overlay */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* Top Navigation */
.top-nav {
  background: transparent;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 2;
}
.centered-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
}
.centered-nav a {
  color: #fff;
  text-decoration: none;
}

/* Layout Wrapper */
.page-wrapper {
  display: flex;
  padding: 5rem 5vw;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

/* Sidebar */
.sidebar {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 7rem;
}
.profile-photo {
  width: 220px;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
.sidebar h1 {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-align: center;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 3rem;
  padding-right: 2vw;
}
.latest-heading {
  text-align: right;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-top: -2rem;
  margin-bottom: 2rem;
  padding-right: 1rem;
}

/* Posts */
.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.post-preview {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 0.8rem;
  transition: background 0.3s ease;
}
.post-preview:hover {
  background: rgba(255, 255, 255, 0.07);
}
.post-preview h3 {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}
.post-preview p {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
