:root {
  --black: #080808;
  --white: #ffffff;
  --grey-950: #0b0b0b;
  --grey-900: #111111;
  --grey-850: #151515;
  --grey-800: #1a1a1a;
  --grey-700: #242424;
  --grey-600: #444444;
  --grey-500: #666666;
  --grey-400: #8a8a8a;
  --grey-300: #aaaaaa;
  --grey-200: #cccccc;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.22);
  --font-display: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 64px;
  --max-w: 1100px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }
button { cursor: pointer; }

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.045) 0%, transparent 70%);
  z-index: 0;
  transition: left 0.12s ease, top 0.12s ease;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 1.1rem;
  position: relative;
  padding-left: 1.75rem;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1px;
  background: var(--grey-500);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(8, 8, 8, 0.78);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-brand { display: flex; align-items: center; }
.nav-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.4s var(--ease-out-expo);
}
.nav-brand:hover .nav-logo { opacity: 0.72; transform: scale(0.94); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a, .nav-action {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  transition: color 0.2s ease;
  position: relative;
  background: none;
  border: 0;
}
.nav-links a::after, .nav-action::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out-expo);
}
.nav-links a:hover, .nav-links a.is-active, .nav-action:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.is-active::after, .nav-action:hover::after { transform: scaleX(1); }

.news-hero, .admin-hero {
  min-height: min(860px, 88svh);
  padding: var(--nav-h) 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
  position: relative;
}
.news-hero::before, .admin-hero::before {
  content: "";
  position: absolute;
  width: min(72vw, 980px);
  aspect-ratio: 1;
  top: -46%;
  left: 46%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.075) 0, rgba(255,255,255,0.018) 38%, transparent 69%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}
.news-hero__grid {
  position: absolute;
  inset: var(--nav-h) 0 0;
  z-index: -2;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(255,255,255,0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.042) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, black 10%, transparent 92%);
  mask-image: linear-gradient(to bottom, black 10%, transparent 92%);
}
.news-hero__inner, .admin-hero__inner {
  min-height: calc(min(860px, 88svh) - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.news-hero__copy { width: min(850px, 83%); position: relative; z-index: 1; }
.news-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  color: #626262;
  font: 600 0.68rem/1 var(--font-mono);
  letter-spacing: 0.16em;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.1s forwards;
}
.news-kicker span { color: var(--white); }
.news-hero h1, .admin-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.45rem, 7.5vw, 7.2rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.23s forwards;
}
.news-hero__intro, .admin-hero p:not(.news-kicker) {
  max-width: 62ch;
  margin-top: 2rem;
  color: var(--grey-400);
  font-size: clamp(0.9rem, 1.5vw, 1.04rem);
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.36s forwards;
}
.news-hero__index {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateY(-38%);
  opacity: 0;
  animation: indexIn 1s var(--ease-out-expo) 0.5s forwards;
}
.news-hero__index-number {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.22);
  font-size: clamp(6rem, 13vw, 12rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
}
.news-hero__index-label {
  margin-top: 1.7rem;
  color: #5f5f5f;
  font: 500 0.64rem/1.4 var(--font-mono);
  letter-spacing: 0.17em;
}
.news-scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #696969;
  font: 600 0.62rem/1 var(--font-mono);
  letter-spacing: 0.15em;
  transition: color 0.25s ease;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.6s forwards;
}
.news-scroll-cue:hover { color: var(--white); }
.news-scroll-cue__line {
  width: 64px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,0.18);
  position: relative;
}
.news-scroll-cue__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  animation: scanLine 2.4s ease-in-out infinite;
}

.news-collection, .admin-workspace {
  padding: clamp(5.5rem, 10vw, 8.5rem) 0;
  background:
    radial-gradient(circle at 14% 33%, rgba(255,255,255,0.025), transparent 25%),
    #080808;
}
.news-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.news-section-head .section-label { margin-bottom: 0; }
.news-section-title {
  color: #4c4c4c;
  font: 600 0.7rem/1 var(--font-mono);
  letter-spacing: 0.15em;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.news-card {
  min-width: 0;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg, #131313, #0c0c0c 70%);
  transition: transform 0.55s var(--ease-out-expo), border-color 0.35s ease, box-shadow 0.55s var(--ease-out-expo);
}
.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.055), transparent 26%);
  opacity: 0.65;
}
.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.23);
  box-shadow: 0 30px 75px rgba(0,0,0,0.38);
}
.news-card__visual {
  min-height: 210px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.075);
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 36px 36px;
}
.news-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: grayscale(1) contrast(1.08);
  transition: transform 0.65s var(--ease-out-expo), opacity 0.3s ease;
}
.news-card:hover .news-card__visual img { transform: scale(1.05); opacity: 1; }
.news-card__placeholder {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 2.3rem;
  letter-spacing: -0.08em;
  background: rgba(255,255,255,0.025);
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
}
.news-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  position: relative;
  z-index: 2;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #686868;
  font: 600 0.58rem/1.3 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.news-card__status { display: inline-flex; align-items: center; gap: 0.45rem; color: #8d8d8d; }
.news-card__status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ddd;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.06);
}
.news-card h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.news-card p {
  margin-top: 0.8rem;
  color: var(--grey-400);
  font-size: 0.86rem;
  line-height: 1.7;
}
.news-card__actions {
  margin-top: auto;
  display: flex;
  gap: 0.65rem;
  padding-top: 1.5rem;
}

.btn-product {
  min-height: 43px;
  padding: 0.75rem 1.15rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.13);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.025);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition: transform 0.3s var(--ease-out-expo), background 0.25s ease, border-color 0.25s ease;
}
.btn-product::after {
  content: "↗";
  font-size: 0.9rem;
  font-weight: 400;
  transition: transform 0.3s var(--ease-out-expo);
}
.btn-product:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.3);
}
.btn-product:hover::after { transform: translate(2px, -2px); }
.btn-product--primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.btn-product--primary:hover {
  border-color: #e8e8e8;
  background: #e8e8e8;
  box-shadow: 0 12px 28px rgba(255,255,255,0.08);
}
.btn-danger {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.035);
  color: var(--grey-200);
}
.btn-danger::after { content: "×"; }

.state-card {
  display: none;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  padding: 1.4rem;
  color: var(--grey-400);
  font-size: 0.9rem;
}
.state-card.is-visible { display: block; }
.state-card--compact { display: block; padding: 1rem; font-size: 0.82rem; }
.state-card--compact:empty { display: none; }

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.news-modal.is-open { display: flex; }
.news-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.news-modal__panel {
  width: min(920px, 100%);
  max-height: min(860px, 90svh);
  overflow: auto;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, #141414, #090909 75%);
  box-shadow: 0 40px 120px rgba(0,0,0,0.58);
}
.news-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}
.news-modal__image-wrap {
  min-height: 320px;
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px),
    #0d0d0d;
  background-size: 36px 36px;
  display: none;
}
.news-modal__image-wrap.has-image { display: block; }
.news-modal__image-wrap img {
  width: 100%;
  height: min(440px, 46svh);
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}
.news-modal__content { padding: clamp(1.4rem, 4vw, 3rem); }
.news-modal__date {
  color: #686868;
  font: 600 0.62rem/1.3 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.news-modal h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.news-modal__body { margin-top: 2rem; color: var(--grey-200); }
.news-modal__body p { margin-bottom: 1rem; color: var(--grey-300); font-size: 1rem; line-height: 1.85; }

.news-footer {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #080808;
}
.news-footer__inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.news-footer__brand img { width: 54px; height: 46px; object-fit: contain; }
.news-footer__inner > p { color: #626262; font-size: 0.72rem; }
.news-footer__meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  color: #555;
  font: 600 0.59rem/1.4 var(--font-mono);
  letter-spacing: 0.05em;
}
.news-footer__meta a { color: #a4a4a4; transition: color 0.2s ease; }
.news-footer__meta a:hover { color: var(--white); }

.auth-main, .admin-main { min-height: 100vh; }
.auth-shell {
  min-height: 100svh;
  padding: calc(var(--nav-h) + 4rem) var(--gutter) 5rem;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(circle at 70% 12%, rgba(255,255,255,0.07), transparent 28%),
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    #080808;
  background-size: auto, 72px 72px, 72px 72px, auto;
}
.auth-card, .admin-card {
  width: min(520px, 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, #131313, #0c0c0c 72%);
  padding: clamp(1.4rem, 4vw, 2rem);
  box-shadow: 0 34px 90px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}
.auth-card::after, .admin-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), transparent 28%);
}
.auth-card > *, .admin-card > * { position: relative; z-index: 1; }
.auth-card h1, .admin-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.auth-card__text { margin-top: 1rem; color: var(--grey-400); }
.auth-form, .admin-form { display: grid; gap: 1rem; margin-top: 1.8rem; }
label { display: grid; gap: 0.45rem; }
label span {
  color: var(--grey-400);
  font: 600 0.62rem/1 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  background: rgba(0,0,0,0.22);
  color: var(--white);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
textarea { resize: vertical; min-height: 110px; }
input:focus, textarea:focus { border-color: rgba(255,255,255,0.42); background: rgba(255,255,255,0.035); }
input[type="file"] { padding: 0.8rem; color: var(--grey-300); }
.form-message { min-height: 1.2rem; color: var(--grey-300); font-size: 0.82rem; }
.form-message.is-error { color: #fca5a5; }
.form-message.is-success { color: #d4d4d4; }

.admin-hero { min-height: 540px; }
.admin-hero__inner { min-height: calc(540px - var(--nav-h)); align-items: flex-end; }
.admin-hero h1 { max-width: 13ch; font-size: clamp(3rem, 7vw, 6.4rem); }
.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: start;
  gap: 1rem;
}
.admin-card { width: 100%; }
.admin-card__head { margin-bottom: 1.2rem; }
.admin-card__head .section-label { margin-bottom: 0.8rem; }
.image-preview {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.025);
}
.image-preview img { width: 100%; max-height: 260px; object-fit: cover; filter: grayscale(1); }
.admin-news-list { display: grid; gap: 0.75rem; }
.admin-news-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255,255,255,0.025);
}
.admin-news-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.admin-news-item h3 { font-size: 1rem; line-height: 1.3; letter-spacing: -0.02em; }
.admin-news-item p { margin-top: 0.55rem; color: var(--grey-400); font-size: 0.78rem; }
.admin-news-item time {
  display: block;
  margin-top: 0.7rem;
  color: #626262;
  font: 600 0.56rem/1.2 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.admin-news-item button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  font-size: 0.65rem;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes indexIn { from { opacity: 0; transform: translateY(-30%); } to { opacity: 1; transform: translateY(-38%); } }
@keyframes scanLine { 0%, 18% { transform: translateX(-100%); } 65%, 100% { transform: translateX(100%); } }

@media (max-width: 1000px) {
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --nav-h: 52px; }
  .nav-logo { height: 42px; }
  .nav-links { gap: 1.4rem; }
  .nav-links li:nth-child(1), .nav-links li:nth-child(2), .nav-links li:nth-child(5) { display: none; }
  .news-hero { min-height: 760px; }
  .news-hero__inner { min-height: calc(760px - var(--nav-h)); }
  .news-hero__copy { width: 88%; }
  .news-hero__index { opacity: 0.42; right: 1.25rem; }
  .news-hero__index-number { font-size: 8rem; }
  .news-hero__index-label { display: none; }
  .news-scroll-cue { left: 1.25rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .news-hero { min-height: 700px; padding-top: var(--nav-h); }
  .news-hero::before, .admin-hero::before { width: 130vw; top: -15%; left: 18%; }
  .news-hero__grid { inset: var(--nav-h) 0 0; background-size: 48px 48px; }
  .news-hero__inner {
    min-height: 648px;
    align-items: center;
    padding-top: 3.5rem;
    padding-bottom: 6.5rem;
  }
  .news-hero__copy { width: 100%; }
  .news-kicker { margin-bottom: 1.5rem; font-size: 0.58rem; }
  .news-hero h1, .admin-hero h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); line-height: 0.98; }
  .news-hero__intro { max-width: 92%; margin-top: 1.5rem; font-size: 0.86rem; }
  .news-hero__index { display: none; }
  .news-scroll-cue { bottom: 2rem; font-size: 0.54rem; }
  .news-scroll-cue__line { width: 40px; }
  .news-collection, .admin-workspace { padding: 4.5rem 0; }
  .news-section-head { align-items: center; margin-bottom: 1.5rem; }
  .news-section-title { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 500px; border-radius: 17px; }
  .news-card__visual { min-height: 205px; }
  .news-card__content { padding: 1.3rem 1.15rem 1.15rem; }
  .btn-product { width: 100%; }
  .news-footer__inner { grid-template-columns: auto 1fr; gap: 1rem; }
  .news-footer__inner > p { display: none; }
  .news-footer__meta { display: block; text-align: right; }
  .news-footer__meta span { display: none; }
  .news-modal { padding: 0.75rem; }
  .news-modal__panel { border-radius: 18px; }
  .news-modal__image-wrap img { height: 250px; }
  .auth-shell { padding-left: 1rem; padding-right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .news-kicker, .news-hero h1, .news-hero__intro, .news-hero__index, .news-scroll-cue, .admin-hero h1, .admin-hero p {
    opacity: 1;
    animation: none;
  }
  .news-hero__index { transform: translateY(-38%); }
  .news-scroll-cue__line::after { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
