/*
Theme Name: PR Intelligence
Theme URI: https://example.com/pr-intelligence
Author: Your Agency
Author URI: https://example.com
Description: A WordPress theme built for public relations agencies, with built-in AI tools: an AI Press Release Analyzer (news-value scoring + auto-improvement) and a Reputation & Crisis Response Center for monitoring and responding to digital mentions and controversies.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pr-intelligence
Tags: business, one-column, two-columns, custom-menu, featured-images, full-width-template, custom-colors
*/

/* -------------------------------------------------
   Design tokens — "wire desk" identity
   A press/PR agency's own world: wire services, datelines,
   press badges, teletype category codes. Ink + newsprint,
   copper + teal duotone instead of a single accent.
------------------------------------------------- */
:root {
  --pr-ink: #14171c;         /* masthead, footer, primary text */
  --pr-paper: #ede8da;       /* page background — warm newsprint, not cream */
  --pr-surface: #faf8f2;     /* card/panel surface */
  --pr-signal: #c2792e;      /* copper — primary accent */
  --pr-signal-deep: #9c5e1f; /* copper hover */
  --pr-teal: #2b6a63;        /* wire-teal — secondary accent, links */
  --pr-teal-deep: #1f4d47;
  --pr-line: #d8d0bc;        /* hairline rule, warm not stark */
  --pr-muted: #6b655a;
  --pr-good: #3f7a4e;
  --pr-warn: #b0791e;
  --pr-bad: #a62b1f;
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Consolas, monospace;
  --radius: 3px;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--pr-paper);
  color: var(--pr-ink);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

a { color: var(--pr-teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.pr-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

button, .pr-btn {
  font-family: var(--font-body);
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--pr-signal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
