/* single.css */

/* Reset some defaults */
body, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding: 20px;
}

#main-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 200px;
}

.post-header {
  position: relative;
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  overflow: hidden;
}

.post-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.post-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.post-meta {
  font-size: 0.9rem;
  color: #666;
}

.post-content {
  margin-bottom: 30px;
}

.post-content img {
  max-width: 100%;
  height: auto;
}

.post-footer {
  border-top: 1px solid #eaeaea;
  padding-top: 10px;
}

.post-tags {
  font-size: 0.9rem;
  color: #555;
}

.post-tags span {
  font-weight: bold;
  margin-right: 5px;
}