/* =========================================================
   ISOLELE News — dedicated editorial layer
   Loaded after util.css so the page can remain theme-aware.
   ========================================================= */

.news-page {
  --news-line: color-mix(in srgb, var(--isolele-accent) 26%, transparent);
  --news-surface: color-mix(in srgb, var(--isolele-bg-secondary) 92%, var(--isolele-text) 8%);
  --news-surface-strong: color-mix(in srgb, var(--isolele-bg-secondary) 84%, var(--isolele-text) 16%);
  --news-muted: var(--isolele-text-secondary);
}

.news-page main,
.news-page main.min-h-screen {
  background: var(--isolele-bg) !important;
  color: var(--isolele-text) !important;
  transition: background-color .65s ease, color .65s ease;
}

.news-page main > section:first-of-type {
  max-width: 1240px !important;
  padding: 34px clamp(18px, 3vw, 48px) 58px !important;
  gap: clamp(22px, 3vw, 42px) !important;
}

.news-page main > section:first-of-type > article:first-child {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--news-line) !important;
  border-radius: 30px !important;
  background: var(--news-surface-strong) !important;
  box-shadow: 0 26px 70px color-mix(in srgb, var(--isolele-text) 16%, transparent) !important;
  transition: border-color .45s ease, box-shadow .45s ease, transform .45s ease;
}

.news-page main > section:first-of-type > article:first-child:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--isolele-accent) 55%, transparent) !important;
}

.news-page .news-feature-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .67;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.01);
  transition: opacity .75s ease, transform 1.2s cubic-bezier(.22,1,.36,1), filter .75s ease;
}

.news-page .news-feature-image.is-changing {
  opacity: 0;
  transform: scale(1.04);
}

.news-page .news-feature-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.24) 38%, rgba(0,0,0,.9) 100%);
  pointer-events: none;
}

.news-page .news-feature-copy {
  padding: clamp(22px, 4vw, 48px);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.34);
}

.news-page .news-feature-copy h2,
.news-page .news-feature-copy p,
.news-page .news-feature-copy span {
  color: inherit !important;
}

.news-page .news-feature-copy h2 {
  max-width: 820px;
  margin-top: 12px;
  font-size: clamp(30px, 4.8vw, 66px) !important;
  line-height: .98 !important;
  letter-spacing: -.045em;
}

.news-page .news-feature-copy > p {
  max-width: 700px;
  margin-top: 18px !important;
  color: rgba(255,255,255,.82) !important;
  font-size: clamp(14px, 1.35vw, 18px) !important;
  line-height: 1.65 !important;
}

.news-page .news-feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--isolele-accent) !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.news-page .news-feature-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.news-page .news-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.news-page .news-feature-actions button,
.news-page .news-comment-form button {
  border: 1px solid rgba(255,255,255,.3) !important;
  background: rgba(0,0,0,.28) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease, color .22s ease;
}

.news-page .news-feature-actions button:hover,
.news-page .news-feature-actions button.is-active,
.news-page .news-comment-form button:hover {
  background: var(--isolele-accent) !important;
  border-color: var(--isolele-accent) !important;
  color: #111 !important;
  transform: translateY(-2px);
}

.news-page .news-feature-actions button i {
  width: 14px;
  text-align: center;
}

.news-page .news-comment-form {
  display: flex;
  gap: 9px;
  width: min(100%, 600px);
  margin-top: 15px;
}

.news-page .news-comment-form input {
  min-width: 0;
  flex: 1;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(0,0,0,.26) !important;
  color: #fff !important;
  outline: none;
}

.news-page .news-comment-form input:focus { border-color: var(--isolele-accent); }

.news-page .news-comment-list {
  display: grid;
  gap: 7px;
  max-width: 600px;
  margin-top: 9px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.news-page .news-comment-list:empty { display: none; }

.news-page .news-comment-item {
  padding: 8px 12px;
  border-left: 2px solid var(--isolele-accent);
  background: rgba(0,0,0,.22);
  border-radius: 0 10px 10px 0;
}

.news-page main > section:first-of-type > aside {
  display: grid;
  align-content: start;
  gap: 14px;
}

.news-page .news-queue-label {
  margin: 0 0 2px;
  color: var(--isolele-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.news-page main > section:first-of-type > aside article {
  border: 1px solid var(--news-line) !important;
  border-radius: 20px !important;
  background: var(--news-surface) !important;
  color: var(--isolele-text) !important;
  transition: transform .3s ease, border-color .3s ease, background-color .5s ease;
}

.news-page main > section:first-of-type > aside article:hover {
  transform: translateX(5px);
  border-color: color-mix(in srgb, var(--isolele-accent) 58%, transparent) !important;
}

.news-page main > section:first-of-type > aside article h3,
.news-page main > section:first-of-type > aside article p {
  color: inherit !important;
}

.news-page main > section:first-of-type > aside article h3 { font-size: 18px !important; line-height: 1.25 !important; }
.news-page main > section:first-of-type > aside article p { color: var(--news-muted) !important; line-height: 1.65 !important; }
.news-page main > section:first-of-type > aside article button { color: var(--isolele-accent) !important; }

.news-page .news-rotation-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-page .news-rotation-note i { color: var(--isolele-accent); }

.news-page main > section:last-of-type {
  max-width: 1240px !important;
  padding: 0 clamp(18px, 3vw, 48px) 80px !important;
}

.news-page main > section:last-of-type article {
  border: 1px solid var(--news-line) !important;
  border-radius: 24px !important;
  background: var(--news-surface) !important;
  color: var(--isolele-text) !important;
}

.news-page main > section:last-of-type h3 { color: var(--isolele-accent) !important; }
.news-page main > section:last-of-type p { color: var(--news-muted) !important; }

.site-footer--news .site-footer__grid { grid-template-columns: minmax(0, 1.4fr) minmax(180px, .6fr); }
.site-footer--news .site-footer__nl,
.site-footer--news .site-footer__grid > .site-footer__col:first-of-type { display: none; }

@media (max-width: 767px) {
  .news-page main > section:first-of-type { padding-top: 22px !important; }
  .news-page main > section:first-of-type > article:first-child { min-height: 570px; border-radius: 22px !important; }
  .news-page .news-feature-copy { padding: 22px 20px 24px; }
  .news-page .news-feature-copy h2 { font-size: clamp(30px, 10vw, 46px) !important; }
  .news-page .news-feature-copy > p { font-size: 14px !important; }
  .news-page main > section:first-of-type > aside article:hover { transform: none; }
  .news-page .news-comment-form { flex-wrap: wrap; }
  .news-page .news-comment-form input { flex-basis: 100%; }
  .news-page .news-comment-form button { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .news-page * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Final News controls: operational Next/Read-more feedback */
.news-page .news-feature-next {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid color-mix(in srgb, var(--isolele-accent) 66%, rgba(255,255,255,.34));
  border-radius: 999px;
  background: color-mix(in srgb, var(--isolele-accent) 15%, rgba(0,0,0,.32));
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.news-page .news-feature-next:hover,
.news-page .news-feature-next:focus-visible {
  background: var(--isolele-accent);
  border-color: var(--isolele-accent);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--isolele-accent) 28%, transparent);
  outline: none;
}
.news-page .news-feature-next:active { transform: translateY(0) scale(.98); }
.news-page .news-feature-next i:last-child { transition: transform .24s ease; }
.news-page .news-feature-next:hover i:last-child { transform: translateX(3px); }
.news-page .news-read-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}
.news-page .news-read-more::after {
  content: "→";
  font-size: 15px;
  line-height: 1;
  transition: transform .2s ease;
}
.news-page .news-read-more:hover,
.news-page .news-read-more:focus-visible {
  opacity: .9;
  transform: translateX(3px);
  outline: none;
}
.news-page .news-read-more:hover::after,
.news-page .news-read-more:focus-visible::after { transform: translateX(3px); }
.news-page .news-feature-actions button[data-feedback] { position: relative; }
.news-page .news-feature-actions button[data-feedback]::after {
  content: attr(data-feedback);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 4;
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--isolele-accent);
  color: #111;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
  transform: translateX(-50%);
  animation: news-feedback-in .2s ease both;
}
@keyframes news-feedback-in { from { opacity: 0; transform: translate(-50%, 4px); } to { opacity: 1; transform: translate(-50%, 0); } }
@media (max-width: 767px) {
  .news-page .news-feature-next { width: 100%; justify-content: center; }
  .news-page .news-feature-copy { position: relative; }
}

.news-page .news-share-popover {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(26px, 4vw, 50px);
  z-index: 5;
  display: grid;
  gap: 10px;
  width: min(330px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--isolele-accent) 48%, rgba(255,255,255,.28));
  border-radius: 16px;
  background: color-mix(in srgb, var(--isolele-bg-secondary) 90%, #000 10%);
  color: var(--isolele-text);
  box-shadow: 0 20px 48px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
  animation: news-share-in .22s ease both;
}
.news-page .news-share-popover strong { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.news-page .news-share-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: var(--isolele-text-secondary);
  font-size: 20px;
  cursor: pointer;
}
.news-page .news-share-popover input {
  width: 100%;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid color-mix(in srgb, var(--isolele-accent) 30%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--isolele-bg) 82%, #000 18%);
  color: var(--isolele-text-secondary);
  font-size: 11px;
}
.news-page .news-share-links { display: flex; align-items: center; gap: 8px; }
.news-page .news-share-links a,
.news-page .news-share-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--isolele-accent) 34%, transparent);
  border-radius: 999px;
  background: transparent;
  color: var(--isolele-accent);
  cursor: pointer;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.news-page .news-share-links a:hover,
.news-page .news-share-copy:hover { background: var(--isolele-accent); color: #111; transform: translateY(-1px); }
.news-page .news-share-copy { margin-left: auto; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
@keyframes news-share-in { from { opacity: 0; transform: translateY(6px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (max-width: 767px) { .news-page .news-share-popover { left: 18px; right: 18px; bottom: 20px; width: auto; } }


/* Full-page article and archive overlays */
.news-popup-open { overflow: hidden; }
.news-fullpage-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(14px, 3vw, 42px);
  overflow-y: auto;
  background: rgba(3, 3, 3, .84);
  pointer-events: none;
  animation: news-popup-fade-in .22s ease both;
}
.news-fullpage-popup-backdrop { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(212,175,55,.14), transparent 54%); }
.news-fullpage-popup-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  min-height: min(720px, calc(100vh - 28px));
  margin: auto;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--isolele-accent) 42%, transparent);
  border-radius: clamp(18px, 3vw, 34px);
  background: color-mix(in srgb, var(--isolele-bg-secondary) 94%, #000 6%);
  color: var(--isolele-text);
  box-shadow: 0 34px 110px rgba(0,0,0,.56), 0 0 0 1px rgba(255,255,255,.04) inset;
  pointer-events: none;
}
.news-fullpage-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--isolele-accent) 62%, rgba(255,255,255,.38));
  border-radius: 999px;
  background: rgba(0,0,0,.5);
  color: var(--isolele-accent);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.news-fullpage-popup-close:hover,
.news-fullpage-popup-close:focus-visible { background: var(--isolele-accent); color: #111; transform: rotate(4deg) scale(1.04); outline: none; }
.news-fullpage-popup-media { position: relative; height: clamp(260px, 42vw, 520px); overflow: hidden; background: #0b0b0b; }
.news-fullpage-popup-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.78)); }
.news-fullpage-popup-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.news-fullpage-popup-body { width: min(900px, 100%); margin: 0 auto; padding: clamp(26px, 5vw, 64px); }
.news-fullpage-popup-kicker { margin: 0 0 14px; color: var(--isolele-accent); font-size: 11px; font-weight: 900; letter-spacing: .2em; line-height: 1.5; text-transform: uppercase; }
.news-fullpage-popup-body h1 { max-width: 900px; margin: 0; color: var(--isolele-text); font-size: clamp(30px, 5vw, 68px); font-weight: 950; letter-spacing: -.045em; line-height: .99; }
.news-fullpage-popup-lead { max-width: 760px; margin: 22px 0 0; color: var(--isolele-text-secondary); font-size: clamp(16px, 2vw, 22px); line-height: 1.65; }
.news-fullpage-popup-copy { max-width: 760px; margin-top: 30px; color: var(--isolele-text-secondary); font-size: 16px; line-height: 1.85; }
.news-fullpage-popup-copy p { margin: 0 0 18px; }
.news-fullpage-popup-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: 28px; padding-top: 18px; border-top: 1px solid color-mix(in srgb, var(--isolele-accent) 24%, transparent); color: var(--isolele-text-secondary); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-fullpage-popup-share { pointer-events: auto; display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 15px; border: 1px solid color-mix(in srgb, var(--isolele-accent) 48%, transparent); border-radius: 999px; background: transparent; color: var(--isolele-accent); font: inherit; cursor: pointer; transition: background-color .18s ease, color .18s ease, transform .18s ease; }
.news-fullpage-popup-share:hover { background: var(--isolele-accent); color: #111; transform: translateY(-1px); }
.news-history-panel { min-height: auto; }
.news-history-panel .news-fullpage-popup-body { width: min(1060px, 100%); }
.news-history-list { display: grid; gap: 12px; margin-top: 30px; }
.news-history-item { display: grid; grid-template-columns: minmax(0, 1fr) 118px; gap: 22px; align-items: center; padding: 18px 0; border-top: 1px solid color-mix(in srgb, var(--isolele-accent) 18%, transparent); color: inherit; text-decoration: none; transition: background-color .2s ease, transform .2s ease, padding .2s ease; }
.news-history-item:hover { padding-left: 10px; padding-right: 10px; border-radius: 14px; background: color-mix(in srgb, var(--isolele-accent) 8%, transparent); transform: translateX(2px); }
.news-history-copy time { color: var(--isolele-accent); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.news-history-copy h2 { margin: 8px 0 6px; color: var(--isolele-text); font-size: clamp(18px, 2.2vw, 28px); letter-spacing: -.02em; line-height: 1.15; }
.news-history-copy p { max-width: 700px; margin: 0; color: var(--isolele-text-secondary); font-size: 14px; line-height: 1.6; }
.news-history-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; color: var(--isolele-accent); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.news-history-item img { width: 118px; height: 142px; border-radius: 10px; object-fit: cover; border: 1px solid color-mix(in srgb, var(--isolele-accent) 22%, transparent); box-shadow: 0 12px 24px rgba(0,0,0,.25); }

/* Search dropdown for News and Katiomics */
.isolele-search-shell { position: relative; z-index: 40; }
.isolele-search-results { position: absolute; top: calc(100% + 10px); right: 0; display: none; width: min(360px, calc(100vw - 32px)); padding: 8px; border: 1px solid color-mix(in srgb, var(--isolele-accent) 32%, transparent); border-radius: 16px; background: color-mix(in srgb, var(--isolele-bg-secondary) 96%, #000 4%); box-shadow: 0 20px 55px rgba(0,0,0,.42); }
.isolele-search-results.is-open { display: grid; gap: 4px; animation: news-search-in .18s ease both; }
.isolele-search-result { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border-radius: 10px; color: var(--isolele-text); text-decoration: none; transition: background-color .18s ease, color .18s ease; }
.isolele-search-result:hover { background: color-mix(in srgb, var(--isolele-accent) 14%, transparent); color: var(--isolele-accent); }
.isolele-search-result span { display: grid; gap: 3px; min-width: 0; }
.isolele-search-result strong { overflow: hidden; font-size: 12px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.isolele-search-result small { overflow: hidden; color: var(--isolele-text-secondary); font-size: 10px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.isolele-search-empty { margin: 0; padding: 12px; color: var(--isolele-accent); font-size: 12px; font-weight: 800; line-height: 1.5; }
@keyframes news-popup-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes news-search-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 680px) {
  .news-fullpage-popup { align-items: stretch; padding: 0; }
  .news-fullpage-popup-panel { min-height: 100%; border-radius: 0; border-left: 0; border-right: 0; }
  .news-fullpage-popup-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .news-fullpage-popup-media { height: 300px; }
  .news-fullpage-popup-body { padding: 28px 20px 40px; }
  .news-fullpage-popup-body h1 { font-size: clamp(30px, 10vw, 48px); }
  .news-fullpage-popup-lead { font-size: 15px; line-height: 1.55; }
  .news-fullpage-popup-copy { font-size: 14px; line-height: 1.75; }
  .news-history-item { grid-template-columns: minmax(0, 1fr) 84px; gap: 14px; padding: 16px 0; }
  .news-history-item img { width: 84px; height: 106px; }
  .news-history-copy h2 { font-size: 18px; }
  .news-history-copy p { font-size: 12px; }
  .isolele-search-results { left: 0; right: auto; width: min(330px, calc(100vw - 28px)); }
}
@media (prefers-reduced-motion: reduce) {
  .news-fullpage-popup, .isolele-search-results { animation: none; }
}


/* Joint-correction pass: professional read-more controls and toolbar-only next action. */
.news-page .news-read-more {
  min-height: 36px;
  padding: 9px 13px;
  border: 1px solid color-mix(in srgb, var(--isolele-accent) 58%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--isolele-accent) 10%, transparent);
  color: var(--isolele-accent) !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.news-page .news-read-more::after { display: none; }
.news-page .news-read-more i { font-size: 10px; transition: transform .2s ease; }
.news-page .news-read-more:hover,
.news-page .news-read-more:focus-visible {
  background: var(--isolele-accent);
  border-color: var(--isolele-accent);
  color: #111 !important;
  transform: translateY(-2px);
  outline: none;
}
.news-page .news-read-more:hover i,
.news-page .news-read-more:focus-visible i { transform: translateX(3px); }
.news-page .news-toolbar-next { margin-top: 0; }
.news-page div.sticky .news-feature-next { align-self: center; }
@media (max-width: 680px) {
  .news-page div.sticky .news-feature-next { width: auto; min-width: 100%; justify-content: center; }
}

/* Toolbar controls: Refresh, Download, Podcast, History and preorder use the same editorial button language. */
.news-page div.sticky {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px !important;
  border: 1px solid color-mix(in srgb, var(--isolele-accent) 20%, transparent) !important;
  border-radius: 16px !important;
  background: color-mix(in srgb, var(--isolele-bg-secondary) 90%, transparent) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.14) !important;
  backdrop-filter: blur(14px);
}
.news-page div.sticky > button,
.news-page div.sticky > a,
.news-page div.sticky button[title],
.news-page div.sticky button[aria-label] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 40px !important;
  padding: 9px 14px !important;
  border: 1px solid color-mix(in srgb, var(--isolele-accent) 48%, transparent) !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--isolele-accent) 9%, transparent) !important;
  color: var(--isolele-text) !important;
  font: inherit !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .1em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease !important;
}
.news-page div.sticky > button:hover,
.news-page div.sticky > button:focus-visible,
.news-page div.sticky > a:hover,
.news-page div.sticky > a:focus-visible,
.news-page div.sticky button[title]:hover,
.news-page div.sticky button[aria-label]:hover {
  background: var(--isolele-accent) !important;
  border-color: var(--isolele-accent) !important;
  color: #111 !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}
.news-page div.sticky > button:active,
.news-page div.sticky > a:active { transform: translateY(0) scale(.97) !important; }
.news-page div.sticky i,
.news-page div.sticky svg { flex: 0 0 auto; }
@media (max-width: 680px) {
  .news-page div.sticky { margin-inline: 14px !important; }
  .news-page div.sticky > button,
  .news-page div.sticky > a { flex: 1 1 calc(50% - 10px); }
}


/* Product and game actions inside dynamic News pop-ups. */
.news-fullpage-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.25rem 0 1rem;
}
.news-fullpage-popup-actions .btn,
.article-detail-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 2.9rem;
  padding: .8rem 1.05rem;
  border-radius: .55rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  visibility: visible !important;
  opacity: 1 !important;
}
.news-fullpage-popup-actions .btn--primary,
.article-detail-actions .btn--primary {
  background: var(--isolele-accent, #b8860b) !important;
  border: 1px solid var(--isolele-accent, #b8860b) !important;
  color: #111 !important;
}
.news-fullpage-popup-actions .btn--secondary,
.article-detail-actions .btn--secondary {
  background: transparent !important;
  border: 1px solid color-mix(in srgb, var(--isolele-accent, #b8860b) 65%, currentColor) !important;
  color: var(--isolele-text, #222) !important;
}
.news-fullpage-popup-actions .btn:hover,
.article-detail-actions .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
@media (max-width: 560px) {
  .news-fullpage-popup-actions .btn,
  .article-detail-actions .btn { width: 100%; }
}

.news-fullpage-popup-media img,
.article-detail-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.news-fullpage-popup-media,
.article-detail-media { overflow: hidden; }
html[lang="fr"] .news-fullpage-popup-actions .btn,
html[lang="fr"] .article-detail-actions .btn { visibility: visible !important; opacity: 1 !important; }
