/* Single Post Page CSS */

#site-main.site-main.full-width {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--blog-text-dark);
  background: var(--color-page-background);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.article {
  background: var(--color-page-background);
  padding: 60px 0;
}

.article-header {
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--blog-border-color);
  padding-bottom: 40px;
}

.article-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blog-primary), var(--blog-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .75rem;
}

.article-excerpt {
  font-size: 1.2rem;
  color: #666;
  margin: 0 0 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #666;
  font-size: 1rem;
}

.article-meta time {
  color: var(--blog-secondary);
  font-weight: bold;
}

.byline-reading-time {
  background: rgba(253, 99, 90, 0.1);
  color: var(--blog-secondary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.post-feature-image {
  margin: -60px 0 60px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.post-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px;
}

.gh-content {
  font-size: 1.1rem;
  color: var(--blog-text-dark);
  justify-content: center;
}

.gh-content h1,
.gh-content h2,
.gh-content h3,
.gh-content h4,
.gh-content h5,
.gh-content h6 {
  color: var(--blog-text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.gh-content h1 {
  font-size: 2.5rem;
  color: var(--blog-secondary);
}

.gh-content p {
  margin-bottom: 20px;
}

.gh-content a {
  color: var(--blog-secondary);
  text-decoration: none;
  font-weight: bold;
}

.gh-content a:hover {
  color: var(--blog-primary);
}

.gh-content blockquote {
  border-left: 4px solid var(--blog-secondary);
  padding-left: 30px;
  margin: 30px 0;
  color: #666;
  font-style: italic;
}

.gh-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gh-content ul,
.gh-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.gh-content li {
  margin-bottom: 10px;
}

/* Comments Section */
.article-comments {
  padding: 60px 0;
  border-top: 1px solid var(--blog-border-color);
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.article-comments .gh-comment {
  background: var(--color-card-background);
  border: 1px solid var(--blog-border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--blog-shadow-color);
}

.article-comments .gh-comment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.article-comments .gh-comment-author {
  font-weight: bold;
  color: var(--blog-secondary);
}

.article-comments .gh-comment-body {
  color: var(--blog-text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  #site-main.site-main.full-width {
    padding: 0 15px;
  }

  .article {
    padding: 40px 0;
  }

  .article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-excerpt {
    font-size: 1rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 10px;
  }

  .post-feature-image {
    margin: -40px 0 40px;
  }

  .post-feature-image img {
    min-height: 250px;
  }

  .gh-content h1 {
    font-size: 2rem;
  }

  .article-comments {
    padding: 40px 0;
  }
}