/* ══════════════════════════════════════════════════════════
   ARTICLE — News detail page
══════════════════════════════════════════════════════════ */

/* ─── Hero ───────────────────────────────────────────── */
.art-hero {
  position: relative;
  width: 100%;
  height: clamp(18rem, 55vw, 38rem);
  overflow: hidden;
  background: var(--off-black);
}

.art-hero-media {
  position: absolute;
  inset: 0;
}
.art-hero-blur {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(28px);
  opacity: .55;
}
.art-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Gradient scrims — bottom to top + slight left tint */
.art-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top,
      var(--black)                   0%,
      rgba(var(--rgb-black),.85)    25%,
      rgba(var(--rgb-black),.3)     60%,
      transparent                   100%
    ),
    linear-gradient(to right,
      rgba(var(--rgb-black),.6) 0%,
      transparent 60%
    );
}

.art-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  max-width: 56rem;
}

.art-hero-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .875rem;
}

.art-hero-time {
  font-size: 1.2rem;
  color: var(--subtle);
  font-weight: 500;
}

.art-hero-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(var(--rgb-pure-black),.5);
}

/* ─── Image caption — below hero ─────────────────────── */
.art-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .6rem clamp(1.25rem, 5vw, 3rem);
  background: var(--off-black);
  border-bottom: 1px solid rgba(var(--rgb-white),.06);
  border-left: .25rem solid var(--red);
  text-align: center;
}
.art-caption span {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gray-200);
  line-height: 1.5;
  max-width: 50rem;
}

/* Red left bar (matches hero card) */
.art-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: .25rem;
  background: var(--red);
  z-index: 3;
}

/* ─── Back nav ────────────────────────────────────────── */
.art-back-bar {
  display: flex;
  align-items: center;
  padding: 1rem clamp(1.25rem, 5vw, 2rem);
}
.art-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
  flex-shrink: 0;
}
.art-back-link:hover { color: var(--white); }
.art-back-link svg {
  width: .75rem; height: .75rem;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round;
}

/* ─── Main layout ─────────────────────────────────────── */
.art-main {
  background: var(--black);
  padding: 2.5rem clamp(1.25rem, 5vw, 2rem) 5rem;
}

.art-body {
  max-width: 54rem;
  margin: 0 auto;
}

/* ─── LIPPE Summary (editorial intro, no avatar) ──────── */
.art-summary {
  margin-bottom: 2.5rem;
  padding: 1.125rem 1.375rem;
  border-left: 3px solid var(--red);
  background: rgba(var(--rgb-red),.06);
}

.art-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .625rem;
}

.art-summary-text {
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--gray-100);
  font-style: italic;
  margin: 0;
}

/* ─── Sourced article wrapper ─────────────────────────── */
.art-article {
  margin-bottom: 2rem;
}

.art-article-label {
  padding: .875rem 0;
  font-family: 'Teko', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}

.art-article-credit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .625rem;
  padding: 1rem 0 1.25rem;
}
.art-article-credit-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.art-article-credit img {
  height: 2rem;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* ─── Blocks content ──────────────────────────────────── */
.art-content {
  line-height: 1.8;
  color: var(--gray-100);
  padding: .25rem 0 .5rem;
}

.art-content p {
  margin-bottom: 1.25rem;
}
.art-content p:last-child { margin-bottom: 0; }

.art-content strong {
  color: var(--white);
  font-weight: 500;
}

.art-content a {
  color: var(--red);
  text-decoration: none;
  transition: color .15s;
}
.art-content a:hover { color: var(--red-d); }

.art-content h2 {
  font-family: 'Teko', sans-serif;
  font-size: 1.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  margin: 2.5rem 0 .875rem;
  padding-left: .875rem;
  border-left: 3px solid var(--red);
  line-height: 1.1;
}

.art-content h3 {
  font-family: 'Teko', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-100);
  margin: 2rem 0 .625rem;
}

.art-content blockquote {
  margin: 1.75rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--red);
  background: rgba(var(--rgb-red),.07);
  color: var(--gray-100);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ─── LIPPE Analysis card ─────────────────────────────── */
.art-lippe {
  position: relative;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2rem 2rem 1.75rem;
  background:
    linear-gradient(135deg,
      rgba(var(--rgb-red),.18)        0%,
      rgba(var(--rgb-dark-grain),.97) 45%,
      var(--black)                    100%
    );
  border: 1px solid rgba(var(--rgb-red),.22);
  border-left: 3px solid var(--red);
  overflow: hidden;
}

/* Radial red glow behind avatar */
.art-lippe::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(var(--rgb-red),.22) 0%, transparent 68%);
  pointer-events: none;
}

.art-lippe-avatar {
  width: 130px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(var(--rgb-red),.45));
}

.art-lippe-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.art-lippe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .625rem;
  margin-bottom: .875rem;
}

.art-lippe-badge-row {
  display: flex;
  align-items: center;
  gap: .5rem;
}


.art-lippe-badge {
  font-family: 'Teko', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .2rem .55rem .18rem;
  background: var(--red);
  color: var(--white);
  transition: background .15s;
}
a.art-lippe-badge { color: var(--white); text-decoration: none; }
a.art-lippe-badge:hover { background: var(--red-d); color: var(--white); }

.art-lippe-label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.art-lippe-text {
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--gray-100);
  font-style: italic;
}

@media (max-width: 36rem) {
  .art-lippe {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
  }
  .art-lippe-avatar { width: 80px; }
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 40rem) {
  .art-hero { height: clamp(14rem, 60vw, 22rem); }
  .art-content { font-size: 1.2rem; }
  .art-content h2 { font-size: 1.375rem; }
}


/* ══════════════════════════════════════════════════════════
   NEWS LISTING PAGE
══════════════════════════════════════════════════════════ */

/* ─── Page header ─────────────────────────────────────── */
.nl-header {
  padding-top: var(--nav-h);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.nl-header::before { content: 'NEWS'; font-size: clamp(6rem, 18vw, 16rem); }
.nl-header-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  position: relative;
  z-index: 1;
}
.nl-header .sec-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .9;
  color: var(--white);
  margin: 0;
}
.nl-count {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
  margin-top: .25rem;
}

/* ─── Grid wrapper ────────────────────────────────────── */
.nl-main {
  background: var(--black);
  padding: 0 clamp(1.25rem, 5vw, 3rem) 5rem;
}
.nl-grid-wrap {
  max-width: 90rem;
  margin: 0 auto;
  padding-top: 3rem;
}

/* ─── News empty state ────────────────────────────────── */
.nl-empty {
  padding: 7rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.nl-empty svg {
  width: 4rem; height: 4rem;
  stroke: var(--subtle);
}
.nl-empty-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--white);
}
.nl-empty-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 26rem;
  line-height: 1.6;
}

/* ─── Featured first article — full-bleed overlay ──────── */
.nl-featured {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 3rem;
}
/* Red left accent bar — same visual language as news-card-hero */
.nl-featured::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: .25rem;
  background: var(--red);
  z-index: 3;
}
.nl-featured-img-wrap {
  aspect-ratio: 21/8;
  overflow: hidden;
  background: var(--surface-darker);
  position: relative;
}
.nl-featured-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(var(--rgb-pure-black),.96) 0%,
    rgba(var(--rgb-pure-black),.65) 35%,
    rgba(var(--rgb-pure-black),.12) 70%,
    transparent 100%
  );
  z-index: 1;
}
.nl-featured-img-blur {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  opacity: .6;
}
.nl-featured-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .7s ease;
}
.nl-featured:hover .nl-featured-img-wrap img { transform: scale(1.03); }

.nl-featured-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark-red-bg) 0%, var(--black) 100%);
}

.nl-featured-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  z-index: 2;
}
.nl-featured-body::before { display: none; }

.nl-featured-meta {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.nl-featured-time {
  font-size: 1.2rem;
  color: var(--gray-100);
  font-weight: 500;
}
.nl-featured-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.625rem, 3.5vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.05;
  color: var(--white);
  max-width: 50rem;
  text-shadow: 0 2px 20px rgba(var(--rgb-pure-black),.5);
  transition: color .2s;
}
.nl-featured:hover .nl-featured-title { color: var(--red); }
.nl-featured-summary {
  line-height: 1.6;
  color: var(--gray-100);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 46rem;
  text-shadow: 0 1px 8px rgba(var(--rgb-pure-black),.6);
}

/* ─── Regular card grid ───────────────────────────────── */
.nl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  background: transparent;
  border: none;
}

.nl-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .22s ease;
}
.nl-card:hover { transform: translateY(-5px); }

.nl-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--off-black);
  flex-shrink: 0;
  position: relative;
}
.nl-card-img-blur {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  opacity: .6;
}
.nl-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .45s ease;
}
.nl-card:hover .nl-card-img-wrap img { transform: scale(1.06); }

.nl-card-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark-red-bg) 0%, var(--black) 100%);
}

.nl-card-body {
  padding: .875rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.nl-card-meta {
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}
.nl-card-time {
  font-size: 1rem;
  color: var(--faint);
  font-weight: 500;
}

.nl-card-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.15;
  color: var(--white);
  transition: color .15s;
}
.nl-card:hover .nl-card-title { color: var(--red); }

.nl-card-summary {
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--gray-200);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

/* ─── Pagination ──────────────────────────────────────── */
.nl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.nl-page-btn {
  min-width: 2.25rem; height: 2.25rem;
  padding: 0 .5rem;
  letter-spacing: .06em;
}

.nl-page-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  pointer-events: none;
}
.nl-page-dots {
  color: var(--gray-300);
  border-color: transparent;
  pointer-events: none;
}
.nl-page-disabled {
  opacity: .25;
  pointer-events: none;
}
.nl-page-btn svg {
  width: .75rem; height: .75rem;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 56rem) {
  .nl-featured-img-wrap { aspect-ratio: 4/3; }
  .nl-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; }
}
@media (max-width: 36rem) {
  .nl-featured-img-wrap { aspect-ratio: 3/2; }
  .nl-featured-body { padding: 1.5rem 1.25rem; }
  .nl-grid { grid-template-columns: 1fr; }
}
