.post-content {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 auto;
  width: 70%;
  max-width: 900px;
  padding: 2rem 0;
}
.post-content h1 {
  font-size: 2.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.post-content h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.post-content h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.post-content p {
  margin: 1.2rem 0;
}
.post-content a {
  color: #0366d6;
  text-decoration: none;
  transition: color 0.2s;
}
.post-content a:hover {
  color: #0056b3;
  text-decoration: underline;
}
.post-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #0366d6;
  background-color: #f6f8fa;
  color: #555;
  font-style: italic;
}
.post-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.post-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
  display: block;
}
.post-content th, .post-content td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
.post-content th {
  background-color: #f6f8fa;
  font-weight: 600;
}
.post-content tr:nth-child(even) {
  background-color: #f9f9f9;
}
.post-content code {
  background-color: #f6f8fa;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
}
.post-content pre {
  background-color: #f6f8fa;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.post-content pre code {
  background-color: transparent;
  padding: 0;
}
.post-content ul, .post-content ol {
  margin: 1.2rem 0;
  padding-left: 2rem;
}
.post-content li {
  margin: 0.5rem 0;
}

.post-header {
  position: relative;
  margin-bottom: 2rem;
}

.post-title {
  text-align: center;
}
.post-title h1 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.recent-posts {
  padding: 3rem 0;
  background-color: #f9f9f9;
}
.recent-posts .recent-posts-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.recent-posts .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .recent-posts .post-grid {
    grid-template-columns: 1fr;
  }
}
.recent-posts .post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.recent-posts .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.recent-posts .post-card .post-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.recent-posts .post-card .post-card-content {
  padding: 1.5rem;
}
.recent-posts .post-card .post-card-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.recent-posts .post-card .post-card-title a {
  color: #333;
  text-decoration: none;
}
.recent-posts .post-card .post-card-title a:hover {
  color: #0366d6;
}
.recent-posts .post-card .post-card-meta {
  color: #777;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.recent-posts .post-card .post-card-excerpt {
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

/*# sourceMappingURL=blogpage.css.map */