/* Press Club Newsroom — Public News styles
   Unlike the journalist portal, these pages inherit the active
   theme's header/footer/width, so this stylesheet stays lightweight
   and content-scoped rather than imposing its own page frame. */

.pctts-article,
.pctts-news-archive,
.pctts-news-listing,
.pctts-news-search,
.pctts-journalist-profile {
	--pctts-primary: #b3261e;
	--pctts-ink: #1c1c1c;
	--pctts-muted: #6b6b6b;
	--pctts-border: #e3e3e3;
	--pctts-bg: #f7f7f5;
	max-width: 780px;
	margin: 0 auto;
	padding: 20px 16px 60px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--pctts-ink);
	line-height: 1.7;
}

.pctts-breadcrumbs { font-size: 13px; color: var(--pctts-muted); margin-bottom: 14px; }
.pctts-breadcrumbs a { color: var(--pctts-muted); text-decoration: none; }
.pctts-breadcrumbs a:hover { text-decoration: underline; }

.pctts-article-category {
	display: inline-block;
	background: var(--pctts-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: 4px 10px;
	border-radius: 999px;
	text-decoration: none;
	margin-bottom: 12px;
}

.pctts-article-headline { font-size: 30px; font-weight: 800; line-height: 1.25; margin: 0 0 16px; }

.pctts-article-byline { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 14px; }
.pctts-byline-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.pctts-article-byline a { color: var(--pctts-ink); font-weight: 600; text-decoration: none; }
.pctts-article-byline a:hover { text-decoration: underline; }
.pctts-article-meta { color: var(--pctts-muted); font-size: 13px; }

.pctts-article-featured img { width: 100%; height: auto; border-radius: 10px; margin-bottom: 20px; }

.pctts-article-content { font-size: 17px; }
.pctts-article-content p { margin: 0 0 1.2em; }

.pctts-article-video { margin: 20px 0; }
.pctts-article-video a { display: inline-block; background: var(--pctts-ink); color: #fff; padding: 10px 18px; border-radius: 8px; text-decoration: none; font-weight: 600; }

.pctts-article-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.pctts-article-gallery figure { margin: 0; }
.pctts-article-gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; display: block; }
.pctts-article-gallery figcaption { font-size: 12px; color: var(--pctts-muted); margin-top: 4px; }

.pctts-article-share { display: flex; align-items: center; gap: 12px; margin: 24px 0; padding-top: 16px; border-top: 1px solid var(--pctts-border); font-size: 14px; }
.pctts-article-share a { color: var(--pctts-primary); text-decoration: none; font-weight: 600; }

.pctts-reporter-card { display: flex; gap: 14px; align-items: center; background: var(--pctts-bg); border-radius: 10px; padding: 16px; margin: 20px 0 40px; }
.pctts-reporter-card img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.pctts-reporter-card span { color: var(--pctts-muted); font-size: 13px; }

.pctts-related h2, .pctts-news-archive h1, .pctts-archive-title { font-size: 22px; font-weight: 800; margin-bottom: 16px; }

/* News card grid — reused by listing/archive/related/search/profile */
.pctts-news-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .pctts-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .pctts-news-grid { grid-template-columns: repeat(3, 1fr); } }

.pctts-news-card { display: block; text-decoration: none; color: inherit; border: 1px solid var(--pctts-border); border-radius: 10px; overflow: hidden; background: #fff; }
.pctts-news-card-thumb { aspect-ratio: 16/10; background: var(--pctts-bg); overflow: hidden; }
.pctts-news-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pctts-news-card .pctts-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.pctts-news-card-body { padding: 14px; }
.pctts-news-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--pctts-primary); letter-spacing: .04em; }
.pctts-news-card-title { font-size: 16px; font-weight: 700; margin: 6px 0; line-height: 1.35; }
.pctts-news-card-meta { font-size: 12px; color: var(--pctts-muted); }

.pctts-pagination { display: flex; gap: 16px; justify-content: center; margin-top: 30px; }
.pctts-pagination .page-numbers { padding: 8px 12px; border: 1px solid var(--pctts-border); border-radius: 6px; text-decoration: none; color: var(--pctts-ink); font-size: 14px; }
.pctts-pagination .page-numbers.current { background: var(--pctts-primary); color: #fff; border-color: var(--pctts-primary); }

/* Search form */
.pctts-search-form { margin-bottom: 24px; }
.pctts-search-row { display: flex; gap: 8px; margin-bottom: 10px; }
.pctts-search-row input[type=text] { flex: 1; padding: 12px 14px; border: 1px solid var(--pctts-border); border-radius: 8px; font-size: 16px; }
.pctts-search-row button { background: var(--pctts-primary); color: #fff; border: none; border-radius: 8px; padding: 0 20px; font-weight: 600; cursor: pointer; }
.pctts-search-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.pctts-search-filters select, .pctts-search-filters input[type=date] { padding: 8px 10px; border: 1px solid var(--pctts-border); border-radius: 8px; font-size: 14px; }
.pctts-search-count { color: var(--pctts-muted); font-size: 14px; }

.pctts-empty-state { text-align: center; color: var(--pctts-muted); padding: 30px 10px; }

/* Journalist profile */
.pctts-journalist-header { display: flex; gap: 18px; align-items: center; margin-bottom: 20px; }
.pctts-journalist-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.pctts-journalist-header h1 { font-size: 24px; font-weight: 800; margin: 0 0 4px; }
.pctts-journalist-designation { color: var(--pctts-primary); font-weight: 600; margin: 0 0 2px; }
.pctts-journalist-org, .pctts-journalist-area { color: var(--pctts-muted); font-size: 14px; margin: 0; }
.pctts-journalist-bio { margin-bottom: 30px; font-size: 15px; }

/* ---------------- Public issue pages ---------------- */

.pctts-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.pctts-issue-badge-submitted { background: #eee; color: #555; }
.pctts-issue-badge-under_review { background: #fff3d6; color: #b06a00; }
.pctts-issue-badge-verified { background: #eaf2ff; color: #123a75; }
.pctts-issue-badge-news_published { background: #e6e0ff; color: #4a2fb3; }
.pctts-issue-badge-government_contacted { background: #ffe9d6; color: #9a4b00; }
.pctts-issue-badge-response_received { background: #d6f0ff; color: #05597a; }
.pctts-issue-badge-work_started { background: #fff3d6; color: #b06a00; }
.pctts-issue-badge-resolved { background: #e3f5e6; color: #1e7d32; }
.pctts-issue-badge-closed { background: #eee; color: #555; }
.pctts-issue-badge-rejected { background: #f1f1f1; color: #888; }

.pctts-issue-timeline { margin: 30px 0; }
.pctts-issue-timeline h2 { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.pctts-issue-timeline ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.pctts-issue-timeline li { display: flex; align-items: center; gap: 12px; padding: 8px 0; position: relative; }
.pctts-issue-timeline li:not(:last-child)::before {
	content: ''; position: absolute; left: 5px; top: 26px; bottom: -8px; width: 2px; background: var(--pctts-border);
}
.pctts-step-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--pctts-border); flex-shrink: 0; z-index: 1; }
.pctts-step-label { color: var(--pctts-muted); font-size: 14px; }
.pctts-step-reached .pctts-step-dot { background: var(--pctts-primary); }
.pctts-step-reached .pctts-step-label { color: var(--pctts-ink); font-weight: 600; }
.pctts-step-reached:not(:last-child)::before { background: var(--pctts-primary); }

.pctts-gov-responses { margin: 24px 0; }
.pctts-gov-responses h2 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.pctts-gov-response-card { background: var(--pctts-bg); border-radius: 10px; padding: 16px; margin-bottom: 12px; }
.pctts-gov-dept { font-weight: 700; font-size: 14px; }
.pctts-gov-officer { font-size: 13px; color: var(--pctts-muted); margin-bottom: 8px; }

.pctts-issue-history { margin: 24px 0; }
.pctts-issue-history h2 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.pctts-report-item { padding: 10px 0; border-bottom: 1px solid var(--pctts-border); }
.pctts-report-item:last-child { border-bottom: none; }
.pctts-report-title { font-weight: 600; font-size: 14px; }
.pctts-report-meta { font-size: 12px; color: var(--pctts-muted); margin-top: 2px; }
