/* ══════════════════════════════════════════════════════════════
   press-releases.css  —  Press Releases listing page
   All classes prefixed  pr-  to guarantee zero conflicts
   Sections:
   1. Page background + hero banner
   2. Breadcrumb (below hero, centred)
   3. Page wrap + heading
   4. Toolbar (filter tabs + search)
   5. Press release card grid
   6. No-results state
   7. Load more button
   8. Responsive
══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   KEYFRAMES  (pr- prefix)
─────────────────────────────────────────── */
@keyframes pr-slideRight {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pr-slideLeft {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pr-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.pr-hero {
  background: var(--navy);
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}

.pr-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: repeating-linear-gradient(
    -55deg, transparent, transparent 40px,
    rgba(255,255,255,.025) 40px, rgba(255,255,255,.025) 41px
  ); */
  pointer-events: none;
}

.pr-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 60%);
  z-index: 2;
}

.pr-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pr-hero-left {
  opacity: 0;
  animation: pr-slideRight .7s cubic-bezier(.4, 0, .2, 1) .05s forwards;
}

.pr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.pr-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.pr-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.pr-hero-title span {
  color: var(--red);
  display: block;
}

.pr-hero-right {
  opacity: 0;
  animation: pr-slideLeft .7s cubic-bezier(.4, 0, .2, 1) .2s forwards;
}

.pr-hero-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.78;
  max-width: 420px;
}

/* ──────────────────────────────────────────
   2. BREADCRUMB  (below hero, centred)
─────────────────────────────────────────── */
.pr-breadcrumb {
  background: #f8f9fc;
  border-bottom: 1px solid rgba(13, 27, 62, .07);
  padding: 11px 0;
  display: flex;
  justify-content: center;
}

.pr-breadcrumb-inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 500;
}

.pr-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  transition: color .15s;
}

.pr-breadcrumb a:hover {
  color: var(--red);
}

.pr-bc-sep {
  color: #c0cad8;
}

.pr-bc-cur {
  color: var(--red);
  font-weight: 600;
}

/* ──────────────────────────────────────────
   3. PAGE WRAP + HEADING
─────────────────────────────────────────── */
.pr-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 60px 100px;
}

.pr-page-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
  opacity: 0;
  animation: pr-fadeUp .65s ease forwards .15s;
}

.pr-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.pr-page-desc {
  font-size: .86rem;
  line-height: 1.72;
  color: var(--muted);
  padding-bottom: 4px;
}

/* ──────────────────────────────────────────
   4. TOOLBAR
─────────────────────────────────────────── */
.pr-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: pr-fadeUp .6s ease forwards .25s;
}

.pr-filter-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pr-tab {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .15s;
  border: 1.5px solid rgba(13, 27, 62, .12);
  background: #fff;
  color: #6b7a8d;
  font-family: 'Outfit', sans-serif;
}

.pr-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.pr-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.pr-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pr-result-count {
  font-size: .76rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.pr-result-count strong {
  color: var(--navy);
  font-weight: 700;
}

.pr-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(13, 27, 62, .1);
  border-radius: 8px;
  padding: 9px 14px;
  transition: border-color .15s;
}

.pr-search:focus-within {
  border-color: var(--navy);
}

.pr-search svg {
  width: 13px;
  height: 13px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.pr-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: .8rem;
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  width: 200px;
}

.pr-search input::placeholder {
  color: var(--muted);
}

/* ──────────────────────────────────────────
   5. CARD GRID
─────────────────────────────────────────── */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  animation: pr-fadeUp .65s ease forwards .35s;
}

/* Individual card */
.pr-card {
  background: #fff;
  border: 1px solid rgba(13, 27, 62, .09);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s, border-color .2s;
  position: relative;
}

.pr-card:hover {
  box-shadow: 0 8px 32px rgba(13, 27, 62, .12);
  transform: translateY(-3px);
  border-color: rgba(13, 27, 62, .18);
}

/* Thumbnail */
.pr-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dde5f0;
  flex-shrink: 0;
}

.pr-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.pr-card:hover .pr-thumb-img {
  transform: scale(1.04);
}

/* Category badge on image */
.pr-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.pr-badge-press {
  background: rgba(13, 27, 62, .85);
  color: #fff;
}

.pr-badge-statement {
  background: rgba(230, 57, 70, .9);
  color: #fff;
}

.pr-badge-notice {
  background: rgba(180, 110, 0, .9);
  color: #fff;
}

/* Hover overlay */
.pr-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, .38);
  opacity: 0;
  transition: opacity .22s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-card:hover .pr-thumb-overlay {
  opacity: 1;
}

.pr-thumb-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(4px);
  transform: translateY(6px);
  transition: transform .22s;
}

.pr-card:hover .pr-thumb-read-btn {
  transform: translateY(0);
}

.pr-thumb-read-btn svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card body */
.pr-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pr-card-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pr-card-date {
  font-size: .76rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.pr-card-cat-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ced5e0;
  flex-shrink: 0;
}

.pr-card-cat {
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pr-card-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}

.pr-card:hover .pr-card-title {
  color: var(--red);
}

.pr-card-excerpt {
  font-size: .82rem;
  line-height: 1.65;
  color: #6b7a8d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex: 1;
}

.pr-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f2f6;
  margin-top: auto;
}

.pr-read-more {
  font-size: .76rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
}

.pr-card:hover .pr-read-more {
  gap: 8px;
}

.pr-read-more svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ──────────────────────────────────────────
   6. NO RESULTS
─────────────────────────────────────────── */
.pr-no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}

.pr-no-results.show {
  display: block;
}

.pr-no-results svg {
  width: 36px;
  height: 36px;
  stroke: #ced5e0;
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 14px;
}

.pr-no-results h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pr-no-results p {
  font-size: .84rem;
  color: var(--muted);
}

/* ──────────────────────────────────────────
   7. LOAD MORE
─────────────────────────────────────────── */
.pr-load-more {
  text-align: center;
  margin-top: 48px;
}

.pr-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  background: #fff;
  border: 1.5px solid rgba(13, 27, 62, .12);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all .18s;
  letter-spacing: .02em;
}

.pr-load-more-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.pr-load-more-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ──────────────────────────────────────────
   8. RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .pr-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 36px;
  }

  .pr-hero {
    padding: 48px 0 44px;
  }

  .pr-breadcrumb-inner {
    padding: 0 36px;
  }

  .pr-page-wrap {
    padding: 40px 36px 60px;
  }

  .pr-page-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .pr-hero-inner {
    padding: 0 20px;
  }

  .pr-breadcrumb-inner {
    padding: 0 20px;
  }

  .pr-page-wrap {
    padding: 28px 20px 60px;
  }

  .pr-page-top .pr-page-desc {
    display: none;
  }

  .pr-grid {
    grid-template-columns: 1fr;
  }

  .pr-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .pr-search input {
    width: 160px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f0f2f6;
  color: #6b7a8d;
  -webkit-font-smoothing: antialiased;
}

/* ══ NAV ══ */
/* .nav {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
} */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: #c8102e;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-brand {
  font-size: 18px;
  font-weight: 800;
  color: #1a2744;
  letter-spacing: .3px;
}

.logo-brand em {
  color: #c8102e;
  font-style: normal;
}

.logo-tagline {
  font-size: 8px;
  color: #9aabb8;
  margin-top: 2px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  color: #1a2744;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: .2px;
  transition: color .15s;
  opacity: .75;
}

.nav-links a:hover {
  color: #c8102e;
  opacity: 1;
}

.nav-links a.active {
  color: #c8102e;
  opacity: 1;
}

/* ══ BREADCRUMB ══ */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
}

.breadcrumb-bar a {
  color: #1a2744;
  text-decoration: none;
  transition: color .14s;
}

.breadcrumb-bar a:hover {
  color: #c8102e;
}

.breadcrumb-bar .bc-sep {
  color: #ced5e0;
  font-size: 13px;
}

.breadcrumb-bar .bc-cur {
  color: #c8102e;
  font-weight: 600;
}

/* ══ PAGE WRAP ══ */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px 100px;
}

/* ══ TOP SECTION: Heading left + description right ══ */
.page-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.page-top-left {}

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

.eyebrow-line {
  width: 26px;
  height: 2px;
  background: #c8102e;
  flex-shrink: 0;
}

.eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c8102e;
}

.page-title {
  font-size: 40px;
  font-weight: 900;
  color: #1a2744;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.page-top-right {
  padding-bottom: 6px;
}

.page-desc {
  font-size: 13.5px;
  line-height: 1.72;
  color: #9aabb8;
}

/* ══ TOOLBAR ══ */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tab {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: all .15s;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #6b7a8d;
  font-family: 'Inter', sans-serif;
}

.tab:hover {
  border-color: #1a2744;
  color: #1a2744;
}

.tab.active {
  background: #1a2744;
  border-color: #1a2744;
  color: #fff;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-count {
  font-size: 12px;
  font-weight: 500;
  color: #9aabb8;
  white-space: nowrap;
}

.result-count strong {
  color: #1a2744;
  font-weight: 700;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 14px;
  transition: border-color .15s;
}

.search-box:focus-within {
  border-color: #1a2744;
}

.search-box svg {
  width: 13px;
  height: 13px;
  stroke: #9aabb8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
  color: #1a2744;
  width: 200px;
}

.search-box input::placeholder {
  color: #9aabb8;
}

/* ══ PRESS RELEASE CARD GRID ══
     Reference: FNCCI — image top, date + title below
  ══ */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual card */
.pr-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s, border-color .2s;
  position: relative;
}

.pr-card:hover {
  box-shadow: 0 8px 32px rgba(26, 39, 68, .12);
  transform: translateY(-3px);
  border-color: #d0d8e8;
}

/* Thumbnail — top of card, matches FNCCI reference */
.pr-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dde5f0;
  flex-shrink: 0;
}

.pr-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.pr-card:hover .pr-thumb-img {
  transform: scale(1.04);
}

/* Category badge top-left on image */
.pr-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.badge-press {
  background: rgba(26, 39, 68, .85);
  color: #fff;
}

.badge-statement {
  background: rgba(200, 16, 46, .9);
  color: #fff;
}

.badge-notice {
  background: rgba(180, 110, 0, .9);
  color: #fff;
}

/* Image overlay on hover */
.pr-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, .38);
  opacity: 0;
  transition: opacity .22s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-card:hover .pr-thumb-overlay {
  opacity: 1;
}

.thumb-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  backdrop-filter: blur(4px);
  transform: translateY(6px);
  transition: transform .22s;
}

.pr-card:hover .thumb-read-btn {
  transform: translateY(0);
}

.thumb-read-btn svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card body — date then title then excerpt */
.pr-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Date row */
.pr-card-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pr-card-date {
  font-size: 12px;
  font-weight: 700;
  color: #c8102e;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.pr-card-cat-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ced5e0;
  flex-shrink: 0;
}

.pr-card-cat {
  font-size: 10px;
  font-weight: 700;
  color: #9aabb8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Title */
.pr-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}

.pr-card:hover .pr-card-title {
  color: #c8102e;
}

/* Excerpt */
.pr-card-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: #6b7a8d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex: 1;
}

/* Bottom: Read more link */
.pr-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f2f6;
  margin-top: auto;
}

.pr-read-more {
  font-size: 12px;
  font-weight: 700;
  color: #c8102e;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
}

.pr-card:hover .pr-read-more {
  gap: 8px;
}

.pr-read-more svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══ NO RESULTS ══ */
.no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}

.no-results.show {
  display: block;
}

.no-results svg {
  width: 36px;
  height: 36px;
  stroke: #ced5e0;
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 14px;
}

.no-results h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 6px;
}

.no-results p {
  font-size: 13px;
  color: #9aabb8;
}

/* ══ LOAD MORE ══ */
.load-more {
  text-align: center;
  margin-top: 48px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  font-size: 13px;
  font-weight: 700;
  color: #1a2744;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .18s;
  letter-spacing: .2px;
}

.load-more-btn:hover {
  border-color: #1a2744;
  background: #1a2744;
  color: #fff;
}

.load-more-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .breadcrumb-bar {
    padding: 11px 20px;
  }

  .page-wrap {
    padding: 36px 20px 60px;
  }

  .page-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-top-right {
    display: none;
  }

  .page-title {
    font-size: 30px;
  }

  .pr-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-box input {
    width: 160px;
  }
}

.media-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}