/* ================================================================
   AdRise Studio — blog.css
   Additional styles loaded only on blog/archive/single pages.
   ================================================================ */

/* ── POST CARD META ── */
.post-card-meta time { font-size: 12px; color: var(--c-muted); }

/* ── PAGE LINKS (multi-page posts) ── */
.page-links { margin: 2em 0; font-size: 14px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.page-links a, .page-links span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px; padding: 0 8px;
  border: 1px solid var(--c-border); border-radius: 8px;
  font-size: 14px; color: var(--c-text); text-decoration: none;
  transition: var(--trans);
}
.page-links a:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }

/* ── COMMENTS ── */
.comments-area {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--c-border);
}
.comments-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--c-text); margin-bottom: 28px;
}
.comment-list    { list-style: none; padding: 0; margin: 0; }
.comment-list .children { list-style: none; padding-left: 40px; margin-top: 8px; }

.comment {
  padding: 20px 0;
  border-bottom: 0.5px solid var(--c-border);
  display: flex; gap: 16px;
}
.comment:last-child { border-bottom: none; }
.comment-author-avatar img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
}
.comment-body { flex: 1; }
.comment-meta  { margin-bottom: 8px; }
.comment-meta .fn a {
  font-size: 14px; font-weight: 700;
  color: var(--c-text); text-decoration: none;
}
.comment-meta .fn a:hover { color: var(--c-accent); }
.comment-metadata { font-size: 12px; color: var(--c-muted); margin-top: 2px; }
.comment-metadata a { color: var(--c-muted); text-decoration: none; }
.comment-content p { font-size: 15px; color: var(--c-muted); line-height: 1.7; margin: 0 0 8px; }
.reply a {
  font-size: 13px; font-weight: 600;
  color: var(--c-accent); text-decoration: none;
}
.reply a:hover { text-decoration: underline; }

/* Bypostauthor highlight */
.bypostauthor > .comment-body { background: var(--c-surface); border-radius: var(--radius); padding: 16px; }

/* ── COMMENT FORM ── */
.comment-respond { margin-top: 40px; }
.comment-respond h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--c-text); margin-bottom: 24px;
}
.comment-form { display: flex; flex-direction: column; gap: 16px; }
.comment-form label {
  display: block; font-size: 14px;
  font-weight: 500; margin-bottom: 6px; color: var(--c-text);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--c-text); outline: none;
  transition: border-color 0.2s; background: #fff;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--c-accent); }
.comment-form textarea { resize: vertical; min-height: 140px; }
.form-submit { margin: 0; }
.comment-form .submit {
  background: var(--c-accent); color: #fff; border: none;
  padding: 13px 32px; border-radius: var(--pill);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.comment-form .submit:hover {
  background: var(--c-accent2); transform: translateY(-2px);
}

/* ── ARCHIVE ── */
.no-comments { font-size: 14px; color: var(--c-muted); font-style: italic; }
.comment-navigation {
  display: flex; justify-content: space-between;
  margin: 24px 0; font-size: 14px;
}
.comment-navigation a { color: var(--c-accent); text-decoration: none; font-weight: 600; }
