/* Satta Matka Result - blog pages (index, category, post). Loaded after smr.css. */
.post-cats { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding: 2px 0 6px; margin-top: 8px; -webkit-overflow-scrolling: touch; }
.post-cats::-webkit-scrollbar { display: none; }
.post-cats a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 4px 12px; border-radius: 8px; background: #fff; border: 1px solid var(--line); color: var(--maroon); font-weight: 700; font-size: 13px; text-decoration: none; }
.post-cats a .n { font-size: 11px; font-weight: 800; padding: 1px 7px; border-radius: 6px; background: var(--tint); color: var(--hero-2); }
.post-cats a.on { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.post-cats a.on .n { background: rgba(255, 255, 255, .2); color: #fff; }

.post-feed { display: grid; gap: 10px; margin-top: 8px; }
.post-item { padding: 0; overflow: hidden; margin: 0; border-left: 5px solid var(--gold); }
.post-item.is-featured { border-left-color: var(--title-2); }
.post-img { display: block; }
.post-img img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.post-inner { padding: 12px 14px 14px; }
.post-info { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.post-info .tag-feat { background: var(--amber-bg); color: var(--orange); }
.post-h { margin: 0 0 6px; font-size: clamp(17px, 5vw, 21px); line-height: 1.25; }
.post-h a { color: var(--maroon); text-decoration: none; }
.post-h a:hover { text-decoration: underline; }
.post-sum { margin: 0 0 8px; font-size: 14px; color: #333; }
.post-go { font-weight: 800; color: var(--title-2); text-decoration: none; font-size: 13px; }
@media (min-width: 640px) {
  .post-item.has-img:not(.is-featured) { display: grid; grid-template-columns: 220px 1fr; }
  .post-item.has-img:not(.is-featured) .post-img img { height: 100%; aspect-ratio: auto; }
}

/* single post */
.entry { padding: 0; overflow: hidden; margin-top: 8px; }
.entry-head { padding: 14px 14px 6px; border-left: 6px solid var(--gold); }
.entry-head h1 { margin: 4px 0 6px; font-size: clamp(21px, 6vw, 28px); line-height: 1.2; color: var(--maroon); }
.entry-lead { margin: 0; font-size: 15px; color: var(--muted); }
.entry-hero { margin: 0; }
.entry-hero img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.entry-body { padding: 8px 14px 14px; font-size: 15px; line-height: 1.6; }
.entry-body img { height: auto; border-radius: 8px; }
.entry-body table { width: 100%; font-size: 14px; border: 1px solid var(--line); }
.entry-body th, .entry-body td { padding: 6px 8px; border-bottom: 1px solid #eef1ee; text-align: left; }
.entry-body th { background: var(--tint); }
.entry-body blockquote { margin: 10px 0; padding: 8px 14px; border-left: 4px solid var(--gold); background: var(--amber-bg); border-radius: 0 8px 8px 0; }
.entry-foot { padding: 10px 14px 14px; border-top: 1px dashed var(--line); }
.share-box { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin: 8px 0; }
.share-cap { font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-right: 4px; }
.share-box a { display: inline-flex; align-items: center; min-height: 36px; padding: 4px 12px; border-radius: 8px; color: #fff; font-weight: 700; font-size: 12.5px; text-decoration: none; }
.share-box a.wa { background: #1fa855; }
.share-box a.tg { background: #1c8fc9; }
.share-box a.fb { background: #1b5fbf; }
.share-box a.x { background: #222; }

.older-newer { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.on-link { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; color: var(--ink); min-height: 60px; }
.on-link.next { text-align: right; }
.on-link.empty { visibility: hidden; }
.on-link .cap { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--title-2); }
.on-link .on-title { font-weight: 700; font-size: 13.5px; color: var(--maroon); line-height: 1.3; }

/* comments */
.replies-box { margin-top: 10px; }
.replies-h { margin: 0 0 8px; font-size: 18px; color: var(--maroon); }
.replies-n { font-weight: 600; color: var(--muted); font-size: 14px; }
.reply-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.reply-item { padding: 10px 12px; background: #f7f9f6; border: 1px solid #eef1ee; border-left: 4px solid var(--maroon-2); border-radius: 8px; }
.reply-head { display: flex; gap: 8px; align-items: baseline; font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.reply-name { font-weight: 800; color: var(--maroon); font-size: 14px; }
.reply-body { font-size: 14px; white-space: pre-line; overflow-wrap: anywhere; }
.reply-form-box { margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--line); }
.reply-form-h { margin: 0; font-size: 16px; color: var(--maroon); }
.err-list { margin: 0; padding-left: 18px; }
