.expanded {
  gap: 8rem;
}

/* .expanded .subscribe-form {
  margin-top: -3rem; */
/* margin-bottom: -2rem;
} */

.posts-navigation {
  display: flex; /* Enables flexbox */
  justify-content: space-between; /* Spaces out the children evenly */
  align-items: stretch; /* Centers items vertically */
  text-align: center; /* Ensures text is centered if needed */
  gap: 1rem;
  font-family: "Nunito", sans-serif;
}

.posts-navigation a {
  color: var(--decoration-secondary);
  flex: 1; /* Allows each link to grow and fill the space */
  padding: 10px; /* Adds some padding for better readability */
  box-sizing: border-box; /* Ensures padding is included in the total width */
  text-decoration: none; /* Optional: Removes underline from links */
  border-radius: 16px;
}

.posts-navigation a:hover {
  color: var(--tx);
  background-color: var(--bg-2);
}

.posts-navigation .older {
  text-align: right;
}

.posts-navigation .newer {
  text-align: left;
}
