/* ============================================================
   STYLE ADDITIONS — Press Release Desk
   Paste this into your style.css file
   (or @import it at the bottom of style.css)
   ============================================================ */


/* ──────────────────────────────────────────────────────────
   COOKIE CONSENT BANNER — full rewrite
   ────────────────────────────────────────────────────────── */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid var(--accent, #c0392b);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.14);
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 24px 20px;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-header h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
}

.cookie-icon {
  font-size: 1.4rem;
}

.cookie-desc {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cookie-desc a {
  color: var(--accent, #c0392b);
  text-decoration: underline;
}

/* Radio options */
.cookie-options {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  flex: 1;
  min-width: 200px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
}

.cookie-option:has(input:checked) {
  border-color: var(--accent, #c0392b);
  background: #fff5f5;
}

.cookie-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--accent, #c0392b);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cookie-radio-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-radio-label strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.cookie-radio-label small {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
}

/* Buttons */
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cookie-actions button {
  padding: 9px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, transform 0.1s;
}

.cookie-actions button:active {
  transform: scale(0.97);
}

.cookie-actions .ok {
  background: var(--accent, #c0392b);
  color: #fff;
}

.cookie-actions .ok:hover {
  background: #a93226;
}

.cookie-actions .secondary {
  background: #2c3e50;
  color: #fff;
}

.cookie-actions .secondary:hover {
  background: #1a252f;
}

.cookie-actions #declineCookie {
  background: #f0f0f0;
  color: #555;
}

.cookie-actions #declineCookie:hover {
  background: #e0e0e0;
}

.cookie-legal {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
}

.cookie-legal a {
  color: var(--accent, #c0392b);
}


/* ──────────────────────────────────────────────────────────
   LEGAL PAGES — About, Terms, Privacy, Disclaimer
   ────────────────────────────────────────────────────────── */
.legal-page {
  max-width: 780px;
  margin: 40px auto;
  padding: 0 20px 60px;
}

.legal-header {
  border-bottom: 3px solid var(--accent, #c0392b);
  padding-bottom: 18px;
  margin-bottom: 36px;
}

.legal-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.legal-meta {
  font-size: 0.825rem;
  color: #888;
  margin: 0;
}

.legal-body section {
  margin-bottom: 36px;
}

.legal-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}

.legal-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin: 18px 0 8px;
}

.legal-body p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #333;
  margin: 0 0 12px;
}

.legal-body ul {
  margin: 8px 0 12px 20px;
  padding: 0;
}

.legal-body ul li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 5px;
  list-style: disc;
}

.legal-body a {
  color: var(--accent, #c0392b);
  text-decoration: underline;
}

.legal-body code {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 0.82rem;
  font-family: monospace;
  color: #333;
}

/* Notice box (disclaimer warning) */
.legal-notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.875rem;
  color: #5a4200;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .cookie-options {
    flex-direction: column;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-actions button {
    width: 100%;
    text-align: center;
  }
  .legal-header h2 {
    font-size: 1.5rem;
  }
}
