@charset "UTF-8";

:root {
  color-scheme: light;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-synthesis: none;
  --news-ink: #172127;
  --news-muted: #65737c;
  --news-line: #dfe6e9;
  --news-blue: #147a9d;
  --news-blue-dark: #0c5f7e;
  --news-blue-soft: #eaf7fb;
  --news-coral: #d96b55;
  --news-green: #30795e;
  --news-paper: #f4f7f8;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--news-paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--news-ink);
  background: var(--news-paper);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(20, 122, 157, 0.35);
  outline-offset: 2px;
}

.news-page {
  min-height: 100vh;
}

.news-layout {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  min-height: 100vh;
}

.news-sidebar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  height: 100vh;
  flex-direction: column;
  border-right: 1px solid var(--news-line);
  background: #fff;
}

.news-sidebar-brand {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 0 19px;
  border-bottom: 1px solid var(--news-line);
}

.news-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.news-brand-mark {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.news-brand-mark i {
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  transform: rotate(45deg);
}

.news-brand-mark i:nth-child(1) {
  top: 2px;
  left: 2px;
  background: #5984d8;
}

.news-brand-mark i:nth-child(2) {
  right: 2px;
  bottom: 2px;
  background: #e18369;
}

.news-brand-mark i:nth-child(3) {
  top: 8px;
  left: 8px;
  border: 2px solid #fff;
  background: #58a985;
}

.news-brand > span:last-child {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 7px;
}

.news-brand strong {
  color: #1d252a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.news-brand small {
  color: var(--news-blue);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.news-nav {
  padding: 20px 12px;
}

.news-nav > p {
  margin: 0 10px 8px;
  color: #8b989f;
  font-size: 10px;
  font-weight: 900;
}

.news-nav > p.news-nav-spaced {
  margin-top: 26px;
}

.news-nav-link {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 11px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #5a6970;
  font-size: 12px;
  transition: color 150ms ease, background 150ms ease;
}

.news-nav-link:hover {
  color: var(--news-blue-dark);
  background: #f3f8fa;
}

.news-nav-link.is-active {
  color: #fff;
  background: var(--news-blue-dark);
}

.news-nav-link > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  flex: 0 0 auto;
  font-size: 14px;
}

.news-nav-link b {
  font-weight: 800;
}

.news-sidebar-note {
  display: grid;
  gap: 5px;
  margin: auto 14px 18px;
  padding: 13px;
  border: 1px solid #d8e7df;
  border-radius: 7px;
  color: #49645a;
  background: #f1f8f4;
}

.news-sidebar-note strong {
  font-size: 11px;
}

.news-sidebar-note span {
  font-size: 10px;
  line-height: 1.65;
}

.news-main {
  min-width: 0;
}

.news-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 780px) 268px;
  gap: 22px;
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.news-feed-column {
  min-width: 0;
}

.news-page-header {
  position: relative;
  min-height: 92px;
  margin-bottom: 24px;
  padding-right: 132px;
}

.news-page-header > span {
  display: block;
  margin-bottom: 7px;
  color: var(--news-blue);
  font-size: 11px;
  font-weight: 900;
}

.news-page-header h1 {
  max-width: 680px;
  margin: 0;
  color: var(--news-ink);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.35;
}

.news-page-header > p {
  max-width: 650px;
  margin: 9px 0 0;
  color: var(--news-muted);
  font-size: 13px;
  line-height: 1.8;
}

.news-back-soranoru {
  position: absolute;
  top: 1px;
  right: 0;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid #d6e0e3;
  border-radius: 6px;
  color: #596970;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
}

.news-back-soranoru:hover {
  color: var(--news-blue-dark);
  border-color: #9bc9d5;
}

.news-hot {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid #d6e3e7;
  border-radius: 8px;
  background: #fff;
}

.news-hot > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #e4ebed;
  background: #f8fbfc;
}

.news-hot header span {
  display: block;
  margin-bottom: 2px;
  color: var(--news-blue);
  font-size: 9px;
  font-weight: 900;
}

.news-hot header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.news-hot header > b {
  color: var(--news-coral);
  font-size: 20px;
}

.news-hot > div > a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 116px 18px;
  gap: 12px;
  align-items: center;
  min-height: 67px;
  padding: 11px 17px;
  border-bottom: 1px solid #e9eef0;
}

.news-hot > div > a:last-child {
  border-bottom: 0;
}

.news-hot > div > a:hover {
  background: #f7fbfc;
}

.news-hot a > strong {
  color: var(--news-coral);
  font-size: 13px;
}

.news-hot a > span {
  min-width: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

.news-hot a > small {
  overflow: hidden;
  color: #8a969c;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-hot a > i {
  color: #89979e;
  font-size: 13px;
  font-style: normal;
}

.news-daily-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid #cbdfe5;
  border-left: 4px solid var(--news-blue);
  background: #f4fbfd;
}

.news-daily-intro span {
  color: var(--news-blue);
  font-size: 10px;
  font-weight: 900;
}

.news-daily-intro h2 {
  margin: 5px 0 6px;
  font-size: 20px;
}

.news-daily-intro p {
  margin: 0;
  color: #596970;
  font-size: 12px;
  line-height: 1.8;
}

.news-daily-intro dl {
  display: grid;
  grid-template-columns: repeat(3, 72px);
  align-items: center;
  margin: 0;
}

.news-daily-intro dl > div {
  display: grid;
  gap: 3px;
  text-align: center;
}

.news-daily-intro dt {
  color: #7c8a91;
  font-size: 9px;
  font-weight: 800;
}

.news-daily-intro dd {
  margin: 0;
  color: var(--news-blue-dark);
  font-size: 20px;
  font-weight: 900;
}

.news-filter {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.news-filter form {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid #d9e2e5;
  border-radius: 7px;
  background: #fff;
}

.news-filter form > span {
  color: #849198;
  font-size: 17px;
}

.news-filter input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--news-ink);
  background: transparent;
  font-size: 12px;
}

.news-filter nav {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.news-filter nav a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid #dbe4e7;
  border-radius: 5px;
  color: #66757c;
  background: #fff;
  font-size: 10px;
  font-weight: 900;
}

.news-filter nav a:hover {
  background: #f4f8f9;
}

.news-filter nav a.is-active {
  color: #fff;
  border-color: var(--news-blue-dark);
  background: var(--news-blue-dark);
}

.news-feed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 2px 13px;
}

.news-feed-heading span {
  color: var(--news-blue);
  font-size: 9px;
  font-weight: 900;
}

.news-feed-heading h2 {
  margin: 3px 0 0;
  font-size: 20px;
  font-weight: 900;
}

.news-feed-heading > b {
  color: #89979e;
  font-size: 18px;
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--news-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(20, 35, 42, 0.02);
}

.news-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 0;
}

.news-source {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.news-source-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #bcdde7;
  border-radius: 7px;
  color: var(--news-blue);
  background: var(--news-blue-soft);
  font-size: 12px;
}

.news-source > div {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.news-source strong {
  overflow: hidden;
  color: #425159;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-source a:hover strong {
  color: var(--news-blue-dark);
}

.news-source span:last-child {
  color: #89969c;
  font-size: 9px;
}

.news-card-meta {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.news-card-meta time {
  color: #87949b;
  font-size: 10px;
}

.news-save-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: #77858c;
  background: transparent;
  cursor: pointer;
}

.news-save-button:hover,
.news-save-button[aria-pressed="true"] {
  color: var(--news-blue-dark);
  background: var(--news-blue-soft);
}

.news-importance {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
}

.news-importance.is-重要 {
  color: #a94331;
  background: #fff0ec;
}

.news-importance.is-注目 {
  color: #116b50;
  background: #eaf8f2;
}

.news-importance.is-参考 {
  color: #5f6877;
  background: #f0f2f5;
}

.news-card-body {
  padding: 17px 18px 14px;
}

.news-card-title h2 {
  margin: 0;
  color: var(--news-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
}

.news-card-title:hover h2 {
  color: var(--news-blue-dark);
}

.news-card-body > p {
  margin: 9px 0 0;
  color: #596970;
  font-size: 12px;
  line-height: 1.9;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 18px 14px;
}

.news-tags > * {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  color: #5d6d74;
  background: #f1f5f6;
  font-size: 9px;
  font-weight: 800;
}

.news-tags a:hover {
  color: var(--news-blue-dark);
  background: var(--news-blue-soft);
}

.news-tags .news-aihot-attribution {
  color: #4b5b62;
  background: #edf0f2;
}

.news-why {
  display: flex;
  gap: 10px;
  margin: 0 18px 16px;
  padding: 12px 13px;
  border-left: 3px solid #58a985;
  color: #405850;
  background: #eef8f3;
}

.news-why > span {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #308463;
}

.news-why strong {
  color: #286e54;
  font-size: 10px;
}

.news-why p {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.75;
}

.news-actions {
  padding: 18px;
  border: 1px solid #dbe4e7;
  border-radius: 8px;
  background: #f8fafb;
}

.news-actions.is-compact {
  padding: 12px 18px 16px;
  border: 0;
  border-top: 1px solid #e7ecee;
  border-radius: 0;
  background: #fbfcfc;
}

.news-actions-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #52636b;
  font-size: 10px;
}

.news-actions-heading > span {
  color: var(--news-blue);
}

.news-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.news-actions-grid > a {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid #d8e1e4;
  border-radius: 6px;
  color: #415159;
  background: #fff;
  font-size: 10px;
  text-align: center;
  transition: transform 150ms ease, border-color 150ms ease, color 150ms ease;
}

.news-actions-grid > a:hover {
  z-index: 1;
  color: var(--news-blue-dark);
  border-color: #8fc8d7;
  transform: translateY(-1px);
}

.news-actions-grid a > b {
  overflow: hidden;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-actions-grid a > i {
  margin-left: auto;
  font-style: normal;
}

.news-actions.is-compact .news-actions-grid a > i {
  display: none;
}

.news-utility {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 119px;
}

.news-utility > section {
  overflow: hidden;
  border: 1px solid var(--news-line);
  border-radius: 8px;
  background: #fff;
}

.news-utility-title {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px;
  border-bottom: 1px solid #e8edef;
}

.news-utility-title > span {
  color: var(--news-blue);
}

.news-utility-title h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.news-topic-list a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #edf0f1;
  color: #52636b;
  font-size: 11px;
  font-weight: 800;
}

.news-topic-list a:last-child {
  border-bottom: 0;
}

.news-topic-list a:hover {
  color: var(--news-blue-dark);
  background: #f7fbfc;
}

.news-topic-list i {
  font-style: normal;
}

.news-utility .news-conversion {
  padding: 18px;
  border-color: #ded5ca;
  background: #fffaf5;
}

.news-conversion-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--news-coral);
  font-size: 12px;
  font-weight: 900;
}

.news-conversion h2 {
  margin: 13px 0 7px;
  font-size: 15px;
}

.news-conversion p,
.news-editorial-note p {
  margin: 0;
  color: #6d645f;
  font-size: 10px;
  line-height: 1.8;
}

.news-conversion > a {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 9px 11px;
  border-radius: 6px;
  color: #fff;
  background: var(--news-blue-dark);
  font-size: 10px;
  font-weight: 900;
}

.news-conversion > a:hover {
  background: #084f69;
}

.news-utility .news-editorial-note {
  padding: 16px;
  background: transparent;
}

.news-editorial-note h2 {
  margin: 0 0 6px;
  font-size: 12px;
}

.news-topic-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.news-topic-directory > a {
  min-height: 178px;
  padding: 18px;
  border: 1px solid var(--news-line);
  border-radius: 8px;
  background: #fff;
}

.news-topic-directory > a:hover {
  border-color: #9bc9d5;
  box-shadow: 0 8px 24px rgba(22, 45, 55, 0.06);
}

.news-topic-directory > a > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-topic-directory div span {
  color: var(--news-coral);
  font-size: 12px;
  font-weight: 900;
}

.news-topic-directory div i {
  color: var(--news-blue);
  font-style: normal;
}

.news-topic-directory h2 {
  margin: 27px 0 7px;
  font-size: 18px;
}

.news-topic-directory p {
  margin: 0;
  color: #69777e;
  font-size: 11px;
  line-height: 1.8;
}

.news-empty {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  padding: 32px;
  border: 1px dashed #cbd7db;
  background: #fff;
  text-align: center;
}

.news-empty > span {
  color: #91a1a8;
  font-size: 28px;
}

.news-empty h2 {
  margin: 12px 0 5px;
  font-size: 17px;
}

.news-empty p {
  max-width: 420px;
  margin: 0;
  color: #77858c;
  font-size: 11px;
  line-height: 1.8;
}

.news-footer {
  display: flex;
  width: min(1110px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid #dbe3e6;
  color: #748188;
  font-size: 10px;
}

.news-footer p {
  margin: 0;
}

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

.news-footer a:hover {
  color: var(--news-blue-dark);
}

.news-detail {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.news-detail-back {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--news-blue-dark);
  font-size: 11px;
  font-weight: 900;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #7b888e;
  font-size: 10px;
}

.news-detail h1 {
  margin: 18px 0 15px;
  font-size: clamp(29px, 4.1vw, 48px);
  line-height: 1.45;
}

.news-detail-lead {
  margin: 0;
  color: #52626a;
  font-size: 15px;
  line-height: 2;
}

.news-detail-why {
  display: flex;
  gap: 14px;
  margin: 34px 0 18px;
  padding: 20px;
  border-left: 4px solid var(--news-green);
  background: #eef8f3;
}

.news-detail-why > span {
  color: var(--news-green);
  font-size: 18px;
}

.news-detail-why h2 {
  margin: 0 0 8px;
  color: #286e54;
  font-size: 16px;
}

.news-detail-why p {
  margin: 0;
  color: #405850;
  font-size: 13px;
  line-height: 1.9;
}

.news-detail-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.news-detail-source {
  margin: 18px 0;
  padding: 20px;
  border: 1px solid #dce5e8;
  background: #fff;
}

.news-detail-source-grid .news-detail-source {
  margin: 0;
}

.news-detail-source.is-discovery {
  border-color: #d8dde0;
  background: #f7f8f8;
}

.news-detail-source > div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.news-detail-source > div span {
  color: var(--news-blue);
}

.news-detail-source h2 {
  margin: 0;
  font-size: 13px;
}

.news-detail-source > strong {
  display: block;
  font-size: 13px;
}

.news-detail-source > p {
  margin: 6px 0 14px;
  color: #6a777d;
  font-size: 11px;
  line-height: 1.75;
}

.news-detail-source > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--news-blue-dark);
  font-size: 11px;
  font-weight: 900;
}

.news-detail-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0;
}

.news-detail-topics a {
  padding: 6px 9px;
  border-radius: 4px;
  color: #52636b;
  background: #eaf0f2;
  font-size: 10px;
  font-weight: 800;
}

.news-detail .news-actions {
  margin-top: 28px;
}

.news-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.news-save-detail {
  display: inline-flex;
  width: auto;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #d6e0e3;
  font-size: 10px;
  font-weight: 900;
}

.news-detail-footer > a {
  color: var(--news-blue-dark);
  font-size: 11px;
  font-weight: 900;
}

.news-not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  padding: 32px;
  text-align: center;
}

.news-not-found > span {
  margin-top: 48px;
  color: #a5b0b5;
  font-size: 13px;
  font-weight: 900;
}

.news-not-found h1 {
  margin: 10px 0 7px;
  font-size: 28px;
}

.news-not-found p {
  margin: 0 0 20px;
  color: #748188;
  font-size: 12px;
}

.news-not-found > a:last-child {
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--news-blue-dark);
  font-size: 11px;
  font-weight: 900;
}

.news-mobile-bar,
.news-overlay {
  display: none;
}

@media (max-width: 1080px) {
  .news-content-grid {
    grid-template-columns: minmax(0, 1fr) 242px;
    width: min(970px, calc(100% - 36px));
    gap: 16px;
  }

  .news-hot > div > a {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
  }

  .news-hot a > small {
    display: none;
  }

  .news-actions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-actions.is-compact .news-actions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .news-layout {
    display: block;
  }

  .news-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: min(290px, calc(100vw - 56px));
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  .news-page.is-menu-open .news-sidebar {
    transform: translateX(0);
  }

  .news-overlay {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(17, 28, 33, 0.35);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .news-page.is-menu-open .news-overlay {
    visibility: visible;
    opacity: 1;
  }

  .news-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid var(--news-line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .news-menu-button {
    display: grid;
    width: 40px;
    height: 40px;
    place-content: center;
    gap: 4px;
    border: 1px solid #d8e1e4;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
  }

  .news-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: #334249;
  }

  .news-content-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(740px, calc(100% - 36px));
    padding-top: 30px;
  }

  .news-utility {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 12px;
  }

  .news-utility .news-editorial-note {
    grid-column: 1 / -1;
  }

  .news-footer,
  .news-detail {
    width: min(740px, calc(100% - 36px));
  }
}

@media (max-width: 600px) {
  .news-content-grid {
    width: calc(100% - 24px);
    padding: 24px 0 44px;
  }

  .news-brand strong {
    font-size: 14px;
  }

  .news-page-header {
    min-height: 0;
    padding-right: 0;
  }

  .news-page-header h1 {
    font-size: 31px;
  }

  .news-back-soranoru {
    position: static;
    margin-top: 16px;
  }

  .news-hot > div > a {
    grid-template-columns: 28px minmax(0, 1fr) 15px;
    gap: 8px;
    min-height: 74px;
    padding: 10px 13px;
  }

  .news-hot a > span {
    font-size: 12px;
  }

  .news-daily-intro {
    grid-template-columns: 1fr;
    padding: 17px;
  }

  .news-daily-intro dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-card-topline {
    align-items: flex-start;
    padding: 14px 14px 0;
  }

  .news-card-meta time {
    display: none;
  }

  .news-source-mark {
    width: 31px;
    height: 31px;
  }

  .news-card-body {
    padding: 15px 14px 12px;
  }

  .news-card-title h2 {
    font-size: 16px;
  }

  .news-tags {
    padding: 0 14px 12px;
  }

  .news-why {
    margin: 0 14px 14px;
  }

  .news-actions.is-compact {
    padding: 12px 14px 14px;
  }

  .news-actions.is-compact .news-actions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .news-actions.is-compact .news-actions-grid > a {
    min-height: 40px;
    padding: 6px 3px;
  }

  .news-actions.is-compact .news-actions-grid a > span {
    display: none;
  }

  .news-actions-grid a > b {
    font-size: 9px;
  }

  .news-utility {
    grid-template-columns: 1fr;
  }

  .news-utility .news-editorial-note {
    grid-column: auto;
  }

  .news-topic-directory {
    grid-template-columns: 1fr;
  }

  .news-topic-directory > a {
    min-height: 150px;
  }

  .news-footer {
    display: grid;
    width: calc(100% - 24px);
  }

  .news-footer nav {
    flex-wrap: wrap;
  }

  .news-detail {
    width: calc(100% - 28px);
    padding: 34px 0 52px;
  }

  .news-detail h1 {
    font-size: 29px;
  }

  .news-detail-lead {
    font-size: 14px;
  }

  .news-detail-why,
  .news-detail-source {
    padding: 16px;
  }

  .news-detail-source-grid {
    grid-template-columns: 1fr;
  }

  .news-detail .news-actions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-detail-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
