/* Blog post specific styles */
body {
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.6;
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
}

h1 {
  font-size: 2.5em;
  margin-top: 0;
}

h2 {
  font-size: 1.8em;
}

.blog-post-header {
  border-bottom: 2px solid #000000;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.blog-post-title {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.blog-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 10px;
}

.blog-post-date {
  font-style: italic;
  color: #666666;
}

.blog-post-author {
  font-weight: bold;
  color: #000000;
}

.blog-post-tags {
  display: flex;
  gap: 8px;
}

.blog-post-tag {
  background-color: #000000;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Code block styling with retro vibe */
pre[class*="language-"] {
  border: 2px solid #000000;
  padding: 15px;
  margin: 20px 0;
  background-color: #f5f5f5;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
}

code[class*="language-"] {
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

/* Link styling for blog content */
.blog-content a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px dotted #000000;
}

.blog-content a:hover {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #000000;
}

/* Blog list styling */
.blog-list {
  list-style: none;
  padding: 0;
}

@media only screen and (max-width: 768px) {
  .blog-list {
    padding: 0;
  }
}

.blog-post-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #000000;
}

@media only screen and (max-width: 768px) {
  .blog-post-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #000000;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.blog-post-item:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 768px) {
  .blog-post-item:last-child {
    border-bottom: none;
  }
}
