*{box-sizing:border-box}
.news-page{
  margin:0;
  background:#f1f1ed;
  color:#090909;
  font-family:Inter,Arial,sans-serif;
}
.news-site-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:26px 32px;
  border-bottom:1px solid rgba(0,0,0,.18);
}
.news-site-brand,
.news-back{
  color:#090909;
  text-decoration:none;
  font-size:11px;
  font-weight:700;
  letter-spacing:.22em;
}
.news-article-shell{
  width:min(1100px,calc(100% - 48px));
  margin:0 auto;
  padding:90px 0 120px;
}
.news-article-kicker{
  margin:0 0 24px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.25em;
}
.news-article-shell h1{
  max-width:1050px;
  margin:0;
  font-size:clamp(54px,9vw,130px);
  line-height:.88;
  letter-spacing:-.07em;
}
.news-article-meta{
  margin-top:30px;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.news-article-cover{
  width:100%;
  aspect-ratio:16/9;
  margin-top:55px;
  background:#111 center/cover no-repeat;
}
.news-article-excerpt{
  max-width:800px;
  margin:55px 0 0;
  font-size:clamp(22px,3vw,36px);
  line-height:1.2;
  letter-spacing:-.025em;
}
.news-article-body{
  max-width:760px;
  margin:55px 0 0;
  font-size:17px;
  line-height:1.8;
  white-space:pre-wrap;
}
.news-article-message{
  color:#a22;
  margin-top:30px;
}
@media(max-width:620px){
  .news-site-header{padding:20px 16px}
  .news-back{font-size:9px}
  .news-article-shell{width:min(100% - 28px,1100px);padding-top:60px}
}


.news-article-gallery{
  margin-top:80px;
  padding-top:24px;
  border-top:1px solid rgba(0,0,0,.18);
}
.news-gallery-label{
  margin:0 0 26px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.22em;
}
.news-gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.news-gallery-item{
  margin:0;
}
.news-gallery-item img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  cursor:zoom-in;
  background:#111;
}
.news-gallery-item figcaption{
  margin-top:8px;
  font-size:11px;
  color:#666;
  line-height:1.5;
}
@media(max-width:700px){
  .news-gallery-grid{grid-template-columns:1fr}
}


/* Final article polish */
.news-article-shell{
  width:min(1080px,calc(100% - 48px));
  padding-top:82px;
}

.news-article-shell h1{
  max-width:980px;
  font-size:clamp(48px,7.4vw,108px);
  line-height:.91;
  letter-spacing:-.065em;
}

.news-article-meta{
  margin-top:26px;
}

.news-article-excerpt{
  max-width:760px;
  margin-top:62px;
  font-size:clamp(22px,2.5vw,34px);
  line-height:1.22;
}

.news-article-body{
  max-width:700px;
  margin-top:48px;
  font-size:17px;
  line-height:1.9;
}

.news-article-gallery{
  margin-top:110px;
  padding-top:30px;
}

.news-gallery-label{
  margin-bottom:32px;
}

.news-gallery-grid{
  gap:18px;
}

@media(max-width:700px){
  .news-article-shell{
    width:min(100% - 28px,1080px);
    padding-top:56px;
  }

  .news-article-shell h1{
    font-size:clamp(42px,13vw,72px);
    line-height:.94;
  }

  .news-article-excerpt{
    margin-top:46px;
  }

  .news-article-body{
    font-size:16px;
    line-height:1.82;
  }

  .news-article-gallery{
    margin-top:82px;
  }
}


/* Mobile and performance safeguards */
html{
  -webkit-text-size-adjust:100%;
}
img,
video{
  max-width:100%;
}
img{
  height:auto;
}
button,
a,
input,
select,
textarea{
  touch-action:manipulation;
}
@media (hover:none), (pointer:coarse){
  .custom-cursor,
  .cursor,
  .cursor-dot,
  .cursor-ring{
    display:none !important;
  }
  body{
    cursor:auto !important;
  }
}
@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto !important;
  }
  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}
