/* ═══════════════════════════════════════════
   NEWS & BLOGS
═══════════════════════════════════════════ */

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  color: var(--clr-muted, #888);
  font-size: 0.95rem;
}

/* ─── SKELETON ─── */
@keyframes skel-shimmer {
  0%   { background-position:  200% 0; }
  100% { background-position: -200% 0; }
}

.skel {
  display: block;
  background: linear-gradient(
    90deg,
    var(--ink-5,  #f0ede8) 25%,
    var(--ink-10, #e4e0da) 50%,
    var(--ink-5,  #f0ede8) 75%
  );
  background-size: 200% 100%;
  animation: skel-shimmer 1.6s ease-in-out infinite;
  border-radius: 3px;
  flex-shrink: 0;
}

/* hero image full-bleed skeleton */
.article-image-inner.skel {
  border-radius: 0;
  min-height: 480px;
}
.article-image-inner.skel img { opacity: 0; }

/* skeleton cards in related grid */
.skel-card {
  background: var(--w);
  border: 1px solid var(--ink-10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.skel-card .skel-card-img  { aspect-ratio: 16 / 10; }
.skel-card .skel-card-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

/* ─── HERO ─── */
.news-hero {
  position: relative;
  padding: 150px 52px 80px;
  background: var(--cream);
  overflow: hidden;
}

.news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(109, 145, 116, .14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(229, 168, 32, .08) 0%, transparent 70%);
  pointer-events: none;
}

.news-hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.news-hero-h {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 28px 0 28px;
  max-width: 900px;
}

.news-hero-h em {
  font-style: normal;
  font-weight: 200;
  color: var(--sage-deep);
}

.news-hero-sub {
  font-family: var(--ff-body);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}

/* ─── FEATURED ─── */
.news-featured {
  padding: 80px 52px 40px;
  background: var(--w);
}

.news-featured .wrap {
  max-width: 1180px;
}

.feat-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--ink-10);
  transition: border-color .25s;
}

.feat-card:hover {
  border-color: var(--sage);
}

.feat-img {
  position: relative;
  overflow: hidden;
}

.feat-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}

.feat-card:hover .feat-img img {
  transform: scale(1.04);
}

.feat-cat {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--w);
  color: var(--sage-deep);
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 600;
}

.feat-body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
}

.feat-title {
  font-family: var(--ff-disp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feat-excerpt {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--ink-10);
}

.feat-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feat-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--ink-10);
}

.feat-author-name {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.feat-author-date {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  margin-top: 3px;
}

.feat-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink-10);
  background: var(--w);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s, color .3s, transform .35s var(--ease);
  flex-shrink: 0;
}

.feat-card:hover .feat-arrow {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--w);
  transform: translate(3px, -3px);
}

.feat-arrow svg,
.feat-arrow i {
  width: 18px;
  height: 18px;
}

/* ─── FILTER PILLS ─── */
.news-filter {
  padding: 40px 52px 20px;
  background: var(--w);
}

.nf-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.nf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.nf-pill {
  padding: 10px 20px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--ink-10);
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
}

.nf-pill:hover {
  border-color: var(--sage);
  background: var(--w);
}

.nf-pill.is-active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--w);
}

/* ─── GRID ─── */
.news-grid-sec {
  padding: 40px 52px 100px;
  background: var(--w);
}

.news-grid-sec .wrap {
  max-width: 1180px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--w);
  border: 1px solid var(--ink-10);
  border-radius: 0;
  overflow: hidden;
  transition: border-color .25s;
}

.news-card:hover {
  border-color: var(--sage);
}

.news-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}

.news-card:hover .news-card-img img {
  transform: scale(1.04);
}

.news-card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--w);
  color: var(--sage-deep);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}

.news-card-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-title {
  font-family: var(--ff-disp);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-excerpt {
  font-family: var(--ff-body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-10);
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
}

.news-card-meta .dot {
  color: var(--faint);
  margin: 0 2px;
}

.news-card-arr {
  color: var(--faint);
  transition: color .25s, transform .3s var(--ease);
  display: inline-flex;
}

.news-card:hover .news-card-arr {
  color: var(--sage);
  transform: translate(3px, -3px);
}

.news-card-arr svg,
.news-card-arr i {
  width: 16px;
  height: 16px;
}

.news-more {
  display: block;
  margin: 60px auto 0;
  padding: 14px 36px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--w);
  background: var(--sage);
  border: 1.5px solid var(--sage);
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}

.news-more:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: var(--w);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   ARTICLE DETAIL PAGE
═══════════════════════════════════════════ */
.article-hero {
  position: relative;
  padding: 140px 52px 60px;
  background: var(--cream);
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(109, 145, 116, .12) 0%, transparent 70%);
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  transition: color .2s, transform .3s var(--ease);
}

.article-back:hover {
  color: var(--ink);
}

.article-back svg,
.article-back i {
  width: 14px;
  height: 14px;
  transition: transform .3s var(--ease);
}

.article-back:hover svg,
.article-back:hover i {
  transform: translateX(-3px);
}

.article-category {
  display: inline-block;
  padding: 7px 16px;
  background: var(--sage-faint);
  color: var(--sage-deep);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  margin-bottom: 26px;
}

.article-h1 {
  font-family: var(--ff-disp);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.022em;
  color: var(--ink);
  margin-bottom: 22px;
}

.article-h1 em {
  font-style: normal;
  font-weight: 200;
  color: var(--sage-deep);
}

.article-sub {
  font-family: var(--ff-body);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 48px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .06em;
}

.article-meta .art-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}

.article-meta .art-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--ink-10);
}

.article-meta .art-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--faint);
}

/* Hero image */
.article-image {
  padding: 0 52px;
  background: var(--cream);
}

.article-image-inner {
  max-width: 1180px;
  margin: 0 auto;
  transform: translateY(60px);
}

.article-image-inner img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 0;
  display: block;
  box-shadow: 0 30px 80px rgba(14, 13, 10, .12);
}

/* Body */
.article-body {
  padding: 130px 52px 120px;
  background: var(--w);
}

.article-body-inner {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #2a2925;
}

.article-body-inner > p:first-child {
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 36px;
}

.article-body-inner p {
  margin-bottom: 22px;
}

.article-body-inner h2 {
  font-family: var(--ff-disp);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 56px 0 18px;
}

.article-body-inner h3 {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 36px 0 12px;
}

.article-body-inner ul,
.article-body-inner ol {
  padding-left: 24px;
  margin: 18px 0 24px;
}

.article-body-inner li {
  margin-bottom: 12px;
}

.article-body-inner li::marker {
  color: var(--sage);
}

.article-body-inner a {
  color: var(--sage-deep);
  font-weight: 500;
  border-bottom: 1px solid rgba(79, 110, 86, .3);
  transition: color .2s, border-color .2s;
}

.article-body-inner a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.article-body-inner blockquote {
  margin: 40px -20px;
  padding: 30px 40px;
  background: var(--cream);
  border-left: 3px solid var(--sage);
  border-radius: 0;
  font-family: var(--ff-inst);
  font-size: 22px;
  font-style: normal;
  line-height: 1.5;
  color: var(--ink);
}

.article-body-inner blockquote cite {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 14px;
}

.article-body-inner figure {
  margin: 46px 0;
}

.article-body-inner figure img {
  width: 100%;
  border-radius: 0;
  display: block;
}

.article-body-inner figcaption {
  margin-top: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
  text-align: center;
}

/* Author card */
.article-author-card {
  max-width: 760px;
  margin: 60px auto 0;
  padding: 36px 40px;
  background: var(--cream);
  border: 1px solid var(--ink-10);
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}

.article-author-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--ink-10);
}

.article-author-name {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.article-author-role {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.article-author-bio {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}

/* Related posts */
.article-related {
  padding: 100px 52px;
  background: var(--cream);
}

.article-related .wrap {
  max-width: 1180px;
}

.article-related-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
  gap: 24px;
}

.article-related-h {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-top: 18px;
}

.article-related-h em {
  font-style: normal;
  font-weight: 200;
  color: var(--sage-deep);
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .news-hero {
    padding: 110px 24px 50px;
  }

  .news-hero-h {
    font-size: clamp(38px, 11vw, 60px);
    margin: 22px 0 20px;
  }

  .news-hero-sub {
    font-size: 15px;
  }

  .news-featured {
    padding: 50px 24px 30px;
  }

  .feat-card {
    grid-template-columns: 1fr;
  }

  .feat-img img {
    min-height: 260px;
  }

  .feat-body {
    padding: 32px 26px;
  }

  .feat-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .feat-excerpt {
    font-size: 15px;
  }

  .feat-author img {
    width: 38px;
    height: 38px;
  }

  .feat-arrow {
    width: 38px;
    height: 38px;
  }

  .news-filter {
    padding: 30px 24px 10px;
  }

  .nf-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 22px -24px 0;
    padding: 0 24px 4px;
  }

  .nf-pills::-webkit-scrollbar {
    display: none;
  }

  .nf-pill {
    flex-shrink: 0;
    font-size: 12px;
    padding: 9px 16px;
  }

  .news-grid-sec {
    padding: 30px 24px 60px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-card-body {
    padding: 24px 24px 26px;
  }

  .news-card-title {
    font-size: 19px;
  }

  .news-card-excerpt {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .news-more {
    margin: 40px auto 0;
    padding: 12px 28px;
  }

  /* Article page */
  .article-hero {
    padding: 100px 24px 40px;
  }

  .article-back {
    margin-bottom: 28px;
  }

  .article-h1 {
    font-size: clamp(30px, 8vw, 48px);
  }

  .article-sub {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .article-meta {
    gap: 14px;
    font-size: 11px;
  }

  .article-image {
    padding: 0 24px;
  }

  .article-image-inner {
    transform: translateY(40px);
  }

  .article-image-inner img {
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }

  .article-body {
    padding: 90px 24px 70px;
  }

  .article-body-inner {
    font-size: 16px;
  }

  .article-body-inner > p:first-child {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .article-body-inner h2 {
    font-size: clamp(22px, 6vw, 28px);
    margin: 42px 0 14px;
  }

  .article-body-inner h3 {
    font-size: 19px;
  }

  .article-body-inner blockquote {
    margin: 30px 0;
    padding: 22px 24px;
    font-size: 18px;
  }

  .article-author-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
    gap: 18px;
  }

  .article-related {
    padding: 60px 24px;
  }

  .article-related-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 14px;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
