/* ═══════════════════════════════════════════════
   NEWSROOM PAGE STYLES
   ═══════════════════════════════════════════════ */

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a2a 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/about.jpg') center/cover no-repeat;
  opacity: .08;
}
.page-hero .container { position: relative; }
.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: .5rem;
}
.page-hero-sub {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  max-width: 540px;
  margin: 1rem auto 0;
}

/* NEWSROOM SECTION */
.newsroom-section {
  background: var(--cream);
  padding: 5rem 0;
}

/* FILTER BAR */
.newsroom-filter { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }
.nr-filter-btn {
  padding: .45rem 1.25rem;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 30px;
  font-size: .82rem;
  font-family: 'Cinzel', serif;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .25s;
}
.nr-filter-btn:hover,
.nr-filter-btn.active {
  background: var(--gold);
  color: #fff;
}

/* NEWS CARD */
.nr-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.nr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

/* image wrap */
.nr-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.nr-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.nr-card:hover .nr-img-wrap img { transform: scale(1.07); }

.nr-category-badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  background: var(--green);
  color: #fff;
  font-size: .68rem;
  font-family: 'Cinzel', serif;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border-radius: 20px;
}
.nr-category-badge.digital { background: #1565c0; }
.nr-category-badge.print   { background: var(--green); }

/* card body */
.nr-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nr-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.nr-date, .nr-source {
  font-size: .72rem;
  color: #888;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nr-title {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: .7rem;
}
.nr-excerpt {
  font-size: .84rem;
  color: #666;
  line-height: 1.7;
  flex: 1;
}
.nr-read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--gold);
  font-size: .82rem;
  font-family: 'Cinzel', serif;
  letter-spacing: .06em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
  align-self: flex-start;
}
.nr-read-more:hover { border-bottom-color: var(--gold); color: var(--gold); }

/* PLACEHOLDER ADD CARD */
.nr-add-card {
  justify-content: center;
  align-items: center;
  min-height: 320px;
  border: 2px dashed rgba(200,148,26,.35);
  background: rgba(200,148,26,.04);
  box-shadow: none;
  cursor: default;
}
.nr-add-card:hover { transform: none; box-shadow: none; }
.nr-add-icon { font-size: 3rem; color: rgba(200,148,26,.4); margin-bottom: 1rem; }
.nr-add-text {
  text-align: center;
  color: #999;
  font-size: .85rem;
  line-height: 1.7;
}
.nr-add-text span { font-size: .75rem; color: #bbb; }

/* ═══ MODAL ═══ */
.nr-modal .modal-content {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(200,148,26,.3);
  border-radius: 8px;
}
.nr-modal .modal-header {
  border-bottom: 1px solid rgba(200,148,26,.2);
  padding: 1.25rem 1.5rem;
}
.nr-modal .modal-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
}
.nr-modal .modal-footer { border-top: 1px solid rgba(200,148,26,.2); }
.nr-modal .btn-outline-secondary {
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  font-size: .82rem;
}
.nr-modal .btn-outline-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.nr-modal-img-wrap img { border-radius: 6px; width: 100%; max-height: 380px; object-fit: cover; }
.nr-modal-caption {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  margin-top: .5rem;
  font-style: italic;
}
.nr-modal-content p {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
}
.nr-modal-meta .badge {
  background: rgba(200,148,26,.2);
  color: var(--gold);
  border: 1px solid rgba(200,148,26,.4);
  font-size: .72rem;
  font-weight: 400;
  padding: .4rem .8rem;
  border-radius: 20px;
}
