hr {
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Homepage styles */
.home {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eaeaea;
}

.page-title {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #333;
}

.page-subtitle {
  font-size: 1.2em;
  color: #666;
  font-style: italic;
  margin: 0;
}

.posts {
  margin-top: 30px;
}

.post {
  margin-bottom: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.post:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.post-title {
  margin: 0 0 10px 0;
  font-size: 1.8em;
}

.post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: #007acc;
}

.post-meta {
  margin-bottom: 15px;
  color: #666;
  font-size: 0.9em;
}

.post-content {
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.post-content p {
  margin: 0 0 15px 0;
}

.post-footer {
  margin-top: 20px;
}

.read-more {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #005a9e;
  text-decoration: underline;
}

.post-divider {
  border: none;
  height: 1px;
  background: #eaeaea;
  margin: 30px 0;
}

.view-all-posts {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #eaeaea;
}

.view-all-link {
  display: inline-block;
  padding: 12px 24px;
  background: #007acc;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.view-all-link:hover {
  background: #005a9e;
  color: white;
  text-decoration: none;
}

/* Post navigation links */
.post_navi {
  display: flex;
}

.post_navi-label {
  font-size: 0.8em;
  opacity: 0.5;
}

.post_navi .post_navi-item {
  padding: 0 2.2em;
  width: 50%;
  position: relative;
  color: inherit !important;
}

.post_navi .nav_prev {
  text-align: left;
}

.post_navi .nav_next {
  text-align: right;
}

.post_navi .nav_prev .post_navi-arrow {
  left: 0;
}

.post_navi .nav_next .post_navi-arrow {
  right: 0;
}

.post_navi .post_navi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5em;
  opacity: 0.3;
}