.logo__cursor {
  background: #00ff00 !important;
}

.header__right {
  display: flex;
  align-items: center;
}

.header__right .separator {
  margin: 0 12px;   /* slightly more spacing so it looks like your 2nd screenshot */
  color: #aaa;
  font-weight: bold;
}

.header__right .posts-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  margin-right: 4px; /* adds subtle spacing between Posts and the separator */
}

.header__right .posts-link:hover {
  text-decoration: underline;
}


/* ========================= */
/* Home Section Styling      */
/* ========================= */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* push content down instead of full center */
  text-align: center;
  min-height: 100vh; /* full viewport height */
  padding-top: 15vh; /* pushes avatar + text lower */
}

/* Avatar */
.home .avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 25px;
  display: block;
}

/* Main name */
.home h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Subtitle */
.home p {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 25px;
}

/* Social icons row */
.home .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px; /* even spacing */
  font-size: 24px;
}

.home .social-icons a {
  color: inherit;
  transition: color 0.2s ease;
}

.home .social-icons a:hover {
  color: #00ff00; /* match your cursor green */
}

/* ========================= */
/* Posts list + Cards        */
/* ========================= */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.post-card-vertical {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-decoration: none;
  color: var(--text-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s, color 0.3s;
}

.post-card-vertical:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Title */
.post-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--text-color);
  transition: color 0.3s;
}

/* Description */
.post-desc {
  font-size: 1rem;
  margin: 0;
  color: var(--text-secondary);
  transition: color 0.3s;
}

/* ========================= */
/* Theme Variables           */
/* ========================= */
:root {
  --card-bg: #f5f5f5;
  --text-color: #222;
  --text-secondary: #555;
}

body.dark-theme {
  --card-bg: #1e1e1e;
  --text-color: #fff;
  --text-secondary: #aaa;
}

body.light-theme {
  --card-bg: #f5f5f5;
  --text-color: #222;
  --text-secondary: #555;
}
