/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  margin: 0 auto 50px;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  color: black;
}

.top-navigation {
  margin-top: 20px;
  margin-bottom: 30px;
}

.top-navigation a {
  display: inline-block;
  text-decoration: none;
}

.nav-logo-horizontal {
  height: 36px;
  width: auto;
  display: block;
}

.top-navigation a:hover .nav-logo-horizontal {
  opacity: 0.8;
}

h1 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
}

.content-container {
  padding-bottom: 20px;
  text-align: left;
}

p {
  font-size: 16px;
  line-height: 1.5;
  color: black;
  margin-top: 1em;
}

p img.blog-main-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 6px;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
  width: 100%;
}

.follow-text {
  text-align: left;
  font-size: 16px;
  margin-top: 0;
}

.follow-text a {
  color: inherit;
  text-decoration: none;
}

.follow-text a:hover {
  text-decoration: underline;
}

.x-icon {
  font-size: 17px;
}

/* Blog index specific styles */
.posts-list {
  margin-top: 20px;
  text-align: left;
}

.posts-list a {
  color: #007AFF;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.posts-list a:hover {
  text-decoration: underline;
}

.posts-list li {
  margin-bottom: 14px;
  list-style-type: none;
} 