/* ============================================================
   PRESS RELEASES PAGE — Stylesheet
   SNAP Fraud Watch — Michigan
   ============================================================ */

/* ——— PRESS HERO ——— */
.press-hero {
  background: linear-gradient(135deg, #050505 0%, #0f0505 55%, #050505 100%);
  border-bottom: 3px solid var(--red);
  padding: 54px 0 0;
  position: relative;
  overflow: hidden;
}
.press-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(192,57,43,0.03) 80px,
    rgba(192,57,43,0.03) 81px
  );
}
.press-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 36px;
}
.press-release-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--border);
}
.pr-index-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 7px 14px 7px 8px;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.pr-index-chip:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(192,57,43,0.08);
}
.pr-index-num {
  background: var(--red);
  color: white;
  font-weight: 900;
  font-size: 0.68rem;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ——— DISTRIBUTION BAR ——— */
.distribution-bar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: 4px;
  padding: 16px 22px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.distribution-bar .db-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.dist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dist-tag {
  background: rgba(230,126,34,0.1);
  border: 1px solid rgba(230,126,34,0.3);
  color: var(--amber);
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ——— PRESS RELEASE WRAPPER ——— */
.press-releases-section {
  padding: 50px 0 70px;
  background: var(--dark);
}
.press-release-block {
  margin-bottom: 60px;
  position: relative;
}
.press-release-block::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  margin-top: 50px;
  opacity: 0.3;
}
.press-release-block:last-child::after { display: none; }

/* ——— PR META BAR ——— */
.pr-meta-bar {
  background: #1a0505;
  border: 1px solid rgba(192,57,43,0.3);
  border-left: 4px solid var(--red);
  border-radius: 0 4px 4px 0;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.pr-meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pr-number {
  background: var(--red);
  color: white;
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.pr-outlet-tag {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pr-meta-actions {
  display: flex;
  gap: 8px;
}
.pr-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 7px 14px;
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.pr-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* ——— PRESS RELEASE BODY ——— */
.press-release-body {
  background: #f9f8f5;
  color: #111;
  font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  line-height: 1.9;
  padding: 0;
  border: 1px solid #ddd;
  border-top: none;
}

/* ——— PR LETTERHEAD ——— */
.pr-letterhead {
  background: #111;
  padding: 20px 40px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 3px solid var(--red);
}
.pr-letterhead-logo {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pr-letterhead-logo span { color: var(--red); }
.pr-letterhead-right {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  color: #999;
  text-align: right;
  line-height: 1.6;
}

/* ——— PR HEADER ——— */
.pr-header {
  padding: 28px 40px 20px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.pr-for-immediate {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  color: #c0392b;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.pr-contact-info {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.pr-dateline {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.pr-headline {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: #0a0a0a;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.pr-subheadline {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #c0392b;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 4px;
}

/* ——— PR BODY TEXT ——— */
.pr-content {
  padding: 28px 40px 36px;
  background: #f9f8f5;
}
.pr-content p {
  margin-bottom: 1.3em;
  color: #1a1a1a;
}
.pr-content p:first-child::first-letter {
  font-size: 3rem;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin: 6px 8px 0 0;
  color: #c0392b;
  font-family: 'Arial Black', Arial, sans-serif;
}
.pr-content strong { color: #0a0a0a; }
.pr-content .highlight-red { color: #c0392b; font-weight: 700; }
.pr-content .highlight-box {
  background: #fff3f3;
  border: 1px solid #e0b0b0;
  border-left: 4px solid #c0392b;
  padding: 14px 18px;
  margin: 18px 0;
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #333;
}
.pr-content .highlight-box strong { color: #8b0000; }
.pr-content .quote-block {
  background: #f0f0f0;
  border-left: 4px solid #333;
  padding: 16px 22px;
  margin: 20px 0;
  font-style: italic;
  font-size: 1rem;
  color: #222;
  line-height: 1.8;
}
.pr-content .quote-block cite {
  display: block;
  margin-top: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pr-content h3 {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a0a0a;
  margin: 24px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #c0392b;
  display: inline-block;
}
.pr-content ul {
  margin: 10px 0 16px 20px;
}
.pr-content ul li {
  margin-bottom: 8px;
  color: #222;
  line-height: 1.7;
}

/* ——— PR BOILERPLATE ——— */
.pr-boilerplate {
  padding: 20px 40px 24px;
  border-top: 2px solid #ddd;
  background: #efefed;
}
.pr-boilerplate h4 {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 8px;
}
.pr-boilerplate p {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ——— PR END MARK ——— */
.pr-end {
  text-align: center;
  padding: 14px 40px 20px;
  background: #f9f8f5;
  border-top: 1px solid #ddd;
}
.pr-end span {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: #333;
  letter-spacing: 8px;
}

/* ——— PRINT CTA ——— */
.press-print-cta {
  background: linear-gradient(135deg, #080d14, #0d1520);
  border: 2px solid var(--blue);
  border-radius: 6px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.press-print-cta h3 {
  font-family: 'Arial Black', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.press-print-cta p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}
.press-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ——— MEDIA CONTACT BOX ——— */
.media-contacts {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.media-contacts h3 {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.media-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.media-contact-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 14px;
}
.media-contact-item .outlet {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.media-contact-item .contact-name {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}
.media-contact-item .contact-detail {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.media-contact-item a {
  color: var(--gold);
  text-decoration: none;
}
.media-contact-item a:hover { text-decoration: underline; }

/* ——— PRINT STYLES ——— */
@media print {
  .ticker-wrap,
  .site-nav,
  .press-hero,
  .distribution-bar,
  .pr-meta-bar,
  .pr-meta-actions,
  .press-print-cta,
  .media-contacts,
  footer,
  #reading-progress {
    display: none !important;
  }

  body { background: white !important; }

  .press-releases-section {
    padding: 0 !important;
    background: white !important;
  }

  .press-release-block {
    page-break-after: always;
    margin: 0 !important;
  }

  .press-release-block::after { display: none !important; }

  .press-release-body {
    border: none !important;
    box-shadow: none !important;
  }

  .pr-letterhead { background: #111 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .pr-content, .pr-header, .pr-boilerplate, .pr-end { padding: 20px 30px !important; }
}

/* ——— RESPONSIVE ——— */
@media (max-width: 768px) {
  .pr-header, .pr-content, .pr-boilerplate, .pr-end { padding-left: 20px; padding-right: 20px; }
  .pr-letterhead { padding: 14px 20px; }
  .pr-headline { font-size: 1.2rem; }
  .press-print-cta { flex-direction: column; padding: 22px 18px; }
  .press-cta-btns { justify-content: center; }
  .pr-content p:first-child::first-letter { font-size: 2rem; }
}
