body {
  background: var(--black-deep);
}

.news-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.82);
  border-bottom: var(--border-gold);
  backdrop-filter: blur(10px);
}

.news-header-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.news-nav {
  display: flex;
  gap: 18px;
}

.news-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.news-nav a.is-active {
  color: var(--gold-light);
}

.news-page {
  min-height: 100vh;
  padding-top: 96px;
}

.news-hero {
  padding: 24px 0 30px;
}

.news-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.news-hero p {
  color: rgba(244, 244, 242, 0.75);
  margin: 0;
  font-size: 1.02rem;
}

.feed-wrap {
  max-width: 860px;
}

.news-feed-status {
  color: rgba(244, 244, 242, 0.7);
  margin: 0 0 18px;
}

.single-post-view.is-hidden {
  display: none;
}

.is-hidden {
  display: none !important;
}

.single-back-link {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-light);
  text-decoration: none;
}

.article-page {
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: var(--radius);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(207, 177, 99, 0.12) inset;
  padding: clamp(22px, 3vw, 38px);
}

.article-title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-meta {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 0.86rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.article-meta-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.article-lead-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(85vh, 920px);
  object-fit: contain;
  object-position: center;
  background: rgba(6, 6, 6, 0.88);
  border-radius: 16px;
  border: var(--border-gold);
  margin-bottom: 24px;
  cursor: zoom-in;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.52);
}

.article-body {
  width: min(100%, 760px);
}

.article-body p {
  margin: 0 0 16px;
  color: rgba(244, 244, 242, 0.95);
  line-height: 1.82;
  font-size: 1.08rem;
}

.article-body p:first-child {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #fff;
  margin-bottom: 18px;
}

.article-gallery {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(207, 177, 99, 0.2);
}

.article-gallery h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  letter-spacing: 0.6px;
  color: var(--gold-light);
}

.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.article-gallery-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 13px;
  border: var(--border-gold);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-gallery-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.news-feed {
  display: grid;
  gap: 14px;
}

.post-card {
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(207, 177, 99, 0.06) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  border-color: rgba(207, 177, 99, 0.46);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(246, 226, 122, 0.11) inset;
}

.post-card--list {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%), var(--black-card);
}

.post-card-main {
  min-width: 0;
}

.post-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.post-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.62rem);
  letter-spacing: 0.4px;
  line-height: 1.28;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.post-meta {
  margin: 8px 0 0;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  opacity: 0.9;
}

.post-meta-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  min-height: 30px;
}

.post-category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: var(--black-deep);
  background: var(--gold-gradient);
  border: 1px solid rgba(246, 226, 122, 0.55);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

.post-card p {
  margin: 0;
  color: rgba(244, 244, 242, 0.9);
  line-height: 1.75;
  font-size: 1.03rem;
}

.post-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 7.2em;
}

.post-expand-link {
  display: inline-block;
  margin-top: 13px;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.post-expand-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.post-image {
  margin-top: 14px;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 14px;
  border: var(--border-gold);
  cursor: zoom-in;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.post-image--lead {
  margin-top: 0;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  background: rgba(6, 6, 6, 0.88);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
}

.post-gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.post-gallery .post-image {
  margin-top: 0;
  height: 240px;
}

.feed-actions {
  margin-top: 22px;
  text-align: center;
}

#news-feed > .post-card--list:not(:last-child) {
  border-bottom: 1px solid rgba(207, 177, 99, 0.16);
}

.news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
  padding: 24px;
}

.news-lightbox[hidden] {
  display: none;
}

.news-lightbox-image {
  max-width: min(1240px, 92vw);
  max-height: 88vh;
  border-radius: 14px;
  border: var(--border-gold);
  object-fit: contain;
}

.news-lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border-gold);
  background: rgba(18, 18, 18, 0.9);
  color: var(--gold-light);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 780px) {
  .news-header-inner {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }
  .post-gallery {
    grid-template-columns: 1fr;
  }
  .post-card--list {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .post-image--lead {
    max-height: 280px;
  }

  .article-lead-image {
    max-height: min(70vh, 640px);
  }
  .article-page {
    padding: 16px;
  }
  .article-gallery-grid {
    grid-template-columns: 1fr;
  }
  .article-gallery-image {
    height: 200px;
  }
}

@media (max-width: 700px) {
  .news-page {
    padding-top: 152px;
  }
}
