/* ══════════════════════════════════════════════════════════════
   press-release-detail.css  —  Press Release detail page
   All classes prefixed  prd-  to guarantee zero conflicts
   Sections:
   1. Page background + breadcrumb
   2. Page layout (main article + sidebar)
   3. Article hero image
   4. Article card (meta, title, standfirst, actions, body, footer)
   5. Prev / Next navigation
   6. Sidebar cards (attachments, related, media contact)
   7. Toast
   8. Responsive
══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   KEYFRAMES
─────────────────────────────────────────── */
@keyframes prd-fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────
   1. PAGE BG + BREADCRUMB
─────────────────────────────────────────── */
.prd-page-bg { background: #f0f2f6; }

.prd-breadcrumb {
  background: #fff;
  border-bottom: 1px solid rgba(13,27,62,.07);
  padding: 13px 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 500;
  flex-wrap: wrap;
}
.prd-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  transition: color .14s;
  white-space: nowrap;
}
.prd-breadcrumb a:hover { color: var(--red); }
.prd-bc-sep { color: #ced5e0; }
.prd-bc-cur {
  color: var(--red);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 500px;
}

/* ──────────────────────────────────────────
   2. PAGE LAYOUT
─────────────────────────────────────────── */
.prd-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px 100px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ──────────────────────────────────────────
   3. ARTICLE HERO IMAGE
─────────────────────────────────────────── */
.prd-article-col {
  opacity: 0;
  animation: prd-fadeUp .65s ease forwards .1s;
}
.prd-article-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #dde5f0;
  position: relative;
}
.prd-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.prd-hero-badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  background: rgba(13,27,62,.88);
  color: #fff;
  backdrop-filter: blur(6px);
}
.prd-hero-badge.statement { background: rgba(230,57,70,.9); }
.prd-hero-badge.notice    { background: rgba(180,110,0,.9); }

/* ──────────────────────────────────────────
   4. ARTICLE CARD
─────────────────────────────────────────── */
.prd-article-card {
  background: #fff;
  border: 1px solid rgba(13,27,62,.09);
  border-radius: 14px;
  overflow: hidden;
}

/* Meta row */
.prd-article-meta {
  padding: 28px 36px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.prd-meta-date {
  font-size: .82rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.prd-meta-sep {
  width: 1px; height: 14px;
  background: rgba(13,27,62,.1);
  flex-shrink: 0;
}
.prd-meta-type {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.prd-meta-ref {
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
}

/* Title */
.prd-article-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -.02em;
  padding: 20px 36px 0;
}

/* Standfirst */
.prd-standfirst {
  margin: 18px 36px 0;
  font-size: .94rem;
  font-weight: 500;
  line-height: 1.72;
  color: #3d4f66;
  border-left: 3px solid var(--red);
  padding-left: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f2f6;
}

/* Action buttons */
.prd-actions {
  padding: 16px 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid #f0f2f6;
  background: #fafbfc;
}
.prd-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 7px;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .15s;
  line-height: 1;
}
.prd-btn svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.prd-btn-red    { background: var(--red); color: #fff; border-color: var(--red); }
.prd-btn-red:hover { background: #a80d25; border-color: #a80d25; }
.prd-btn-outline { background: #fff; color: var(--navy); border-color: rgba(13,27,62,.12); }
.prd-btn-outline:hover { border-color: var(--navy); }
.prd-btn-ghost { background: transparent; color: #6b7a8d; border-color: rgba(13,27,62,.1); }
.prd-btn-ghost:hover { color: var(--navy); border-color: #ced5e0; }

/* Article body */
.prd-article-body {
  padding: 32px 36px 36px;
  font-size: .94rem;
  line-height: 1.82;
  color: #4a5a6e;
}
.prd-article-body p { margin-bottom: 20px; }
.prd-article-body p:last-child { margin-bottom: 0; }
.prd-article-body h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 14px;
  letter-spacing: -.02em;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f2f6;
}
.prd-article-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.prd-article-body ul,
.prd-article-body ol { padding-left: 22px; margin-bottom: 20px; }
.prd-article-body li {
  margin-bottom: 9px;
  font-size: .94rem;
  line-height: 1.72;
  color: #4a5a6e;
}
.prd-article-body blockquote {
  border-left: 3px solid var(--red);
  padding: 18px 22px;
  margin: 28px 0;
  background: #f8f9fc;
  border-radius: 0 10px 10px 0;
}
.prd-article-body blockquote p {
  font-size: .97rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
  line-height: 1.72;
}
.prd-article-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--muted);
  font-style: normal;
  letter-spacing: .02em;
}
.prd-article-body a { color: var(--red); font-weight: 600; text-decoration: none; }
.prd-article-body a:hover { text-decoration: underline; }
.prd-press-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f0f2f6;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.72;
}
.prd-press-note strong { color: var(--navy); }

/* Article footer: tags + share */
.prd-article-footer {
  padding: 20px 36px 28px;
  border-top: 1px solid #f0f2f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.prd-tags { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.prd-tag-lbl {
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-right: 2px;
}
.prd-tag {
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid rgba(13,27,62,.1);
  background: #f8f9fc;
  font-size: .72rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all .14s;
  cursor: pointer;
}
.prd-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.prd-share-group { display: flex; align-items: center; gap: 8px; }
.prd-share-lbl {
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.prd-share-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(13,27,62,.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .14s;
}
.prd-share-btn:hover { background: var(--navy); border-color: var(--navy); }
.prd-share-btn:hover svg { stroke: #fff; }
.prd-share-btn svg {
  width: 14px; height: 14px;
  stroke: #6b7a8d; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ──────────────────────────────────────────
   5. PREV / NEXT NAV
─────────────────────────────────────────── */
.prd-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.prd-nav-item {
  background: #fff;
  border: 1px solid rgba(13,27,62,.09);
  border-radius: 10px;
  padding: 18px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow .18s, border-color .18s;
}
.prd-nav-item:hover { box-shadow: 0 4px 16px rgba(13,27,62,.09); border-color: var(--red); }
.prd-nav-item.prd-next { align-items: flex-end; text-align: right; }
.prd-nav-dir {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.prd-nav-dir svg {
  width: 12px; height: 12px;
  stroke: var(--muted); fill: none;
  stroke-width: 2.5; stroke-linecap: round;
}
.prd-nav-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prd-nav-item:hover .prd-nav-title { color: var(--red); }
.prd-nav-date { font-size: .7rem; font-weight: 500; color: var(--muted); }

/* ──────────────────────────────────────────
   6. SIDEBAR
─────────────────────────────────────────── */
.prd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: prd-fadeUp .65s ease forwards .25s;
}
.prd-s-card {
  background: #fff;
  border: 1px solid rgba(13,27,62,.09);
  border-radius: 12px;
  overflow: hidden;
}
.prd-s-head {
  padding: 14px 18px;
  border-bottom: 1px solid #f0f2f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prd-s-head h3 {
  font-size: .72rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.prd-s-head a {
  font-size: .7rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: gap .14s;
}
.prd-s-head a:hover { gap: 6px; }

/* Attachments */
.prd-attach-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border-bottom: 1px solid #f8f9fc;
  text-decoration: none;
  transition: background .12s;
}
.prd-attach-item:last-child { border-bottom: none; }
.prd-attach-item:hover { background: #f8f9fc; }
.prd-attach-icon {
  width: 36px; height: 36px;
  border-radius: 7px;
  background: #fef0f0;
  border: 1px solid #fcd4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prd-attach-icon svg {
  width: 15px; height: 15px;
  stroke: var(--red); fill: none;
  stroke-width: 2; stroke-linecap: round;
}
.prd-attach-info { flex: 1; min-width: 0; }
.prd-attach-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prd-attach-meta { font-size: .66rem; color: var(--muted); font-weight: 500; }
.prd-attach-dl {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f0f2f6;
  border: 1px solid rgba(13,27,62,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .14s;
}
.prd-attach-item:hover .prd-attach-dl { background: var(--red); border-color: var(--red); }
.prd-attach-dl svg {
  width: 12px; height: 12px;
  stroke: #6b7a8d; fill: none;
  stroke-width: 2.5; stroke-linecap: round;
}
.prd-attach-item:hover .prd-attach-dl svg { stroke: #fff; }

/* Related releases */
.prd-rel-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 14px 18px;
  border-bottom: 1px solid #f8f9fc;
  text-decoration: none;
  transition: background .12s;
}
.prd-rel-item:last-child { border-bottom: none; }
.prd-rel-item:hover { background: #f8f9fc; }
.prd-rel-thumb {
  width: 60px; height: 44px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #dde5f0;
}
.prd-rel-thumb svg,
.prd-rel-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prd-rel-date {
  font-size: .66rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 3px;
}
.prd-rel-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .14s;
}
.prd-rel-item:hover .prd-rel-title { color: var(--red); }

/* Media contact */
.prd-contact-body { padding: 18px; }
.prd-contact-body p {
  font-size: .8rem;
  line-height: 1.65;
  color: #6b7a8d;
  margin-bottom: 14px;
}
.prd-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
  font-size: .8rem;
  color: var(--navy);
  font-weight: 500;
}
.prd-contact-row svg {
  width: 13px; height: 13px;
  stroke: var(--red); fill: none;
  stroke-width: 2; stroke-linecap: round;
  margin-top: 1px;
  flex-shrink: 0;
}
.prd-contact-row a { color: var(--navy); text-decoration: none; }
.prd-contact-row a:hover { color: var(--red); }

/* ──────────────────────────────────────────
   7. TOAST
─────────────────────────────────────────── */
.prd-toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: var(--navy);
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  opacity: 0;
  transition: all .27s;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.prd-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ──────────────────────────────────────────
   8. RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .prd-page-wrap { grid-template-columns: 1fr; gap: 28px; padding: 32px 40px 60px; }
  .prd-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .prd-breadcrumb { padding: 11px 20px; }
  .prd-page-wrap { padding: 24px 20px 60px; }
  .prd-article-meta,
  .prd-article-title,
  .prd-standfirst,
  .prd-actions,
  .prd-article-body,
  .prd-article-footer { padding-left: 20px; padding-right: 20px; }
  .prd-sidebar { grid-template-columns: 1fr; }
  .prd-article-nav { grid-template-columns: 1fr; }
  .prd-article-title { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .prd-bc-cur { max-width: 200px; }
}
.media-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-fit: cover;
}
