/* === Single Post Page === */
.single-post-page {
  margin-top: 30px;
}
.content-sidebar-wrap {
  display: flex;
  gap: 24px;
}

/* ==== Main Post Content ==== */
.post-content-area {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.single-post .post-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--weatherlitep);
    margin-bottom: 12px;
    background: var(--weatherliteh);
    padding: 14px 26px;
}
.single-post .post-meta {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}
.post-featured-image {
  margin-bottom: 20px;
}
.post-featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.post-content {
  line-height: 1.8;
  color: #333;
  font-size: 16px;
}

/* ==== Navigation ==== */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.post-navigation .prev-post,
.post-navigation .next-post {
  background: var(--wioh);
  color: var(--wiop);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}
.post-navigation a {
  color: var(--wiop);
}
.post-navigation a:hover {
  background: var(--wioh);
}

/* ==== Comments ==== */
.comments-wrap {
  margin-top: 50px;
}

/* ==== Sidebar ==== */
.sidebar-area {
  width: 300px;
  flex-shrink: 0;
}
.sidebar-widget {
  background: #fff;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.sidebar-widget h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
  .content-sidebar-wrap {
    flex-direction: column;
  }
  .sidebar-area {
    width: 100%;
  }
}


/* === Comments Section === */
.comments-area {
  margin-top: 50px;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.comments-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--wioh);
  padding-bottom: 6px;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list li {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--wiop);
  padding-bottom: 15px;
}
.comment-author {
  font-weight: 600;
  margin-bottom: 4px;
}
.comment-meta {
  font-size: 13px;
  color: #888;
}
.comment-content {
  margin-top: 8px;
  font-size: 15px;
  color: #333;
}

/* === Comment Form === */
.comment-form-box {
  margin-top: 40px;
}
.comment-form-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #222;
}
.comment-form-box .input,
.comment-form-box .textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}
.submit-button {
  background-color: var(--wioh);
  border: none;
  color: var(--wiop);
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;
}
.submit-button:hover {
  background-color: var(--wioh);
}

/* === Responsive === */
@media (max-width: 768px) {
  .comment-form-box .input,
  .comment-form-box .textarea {
    font-size: 14px;
  }
}
