:root {
  --red: #e60012;
  --red-dark: #b6000e;
  --ink: #1d1d1f;
  --muted: #737378;
  --line: #dedee2;
  --soft: #f5f5f6;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .10);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 900px; }
.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .09);
}
.admin-bar .site-header { top: 32px; }
.site-header__row {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr) 94px;
  min-height: 82px;
  align-items: stretch;
}
.site-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 28px;
  background: var(--red);
}
.site-brand-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
}
.site-brand-text:hover { color: #fff; opacity: .94; }
.site-brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 3px solid #fff;
  border-radius: 13px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.06em;
}
.site-brand-text > span:last-child { min-width: 0; }
.site-brand-text strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-brand-text small {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-logo-link { display: block; }
.custom-logo { width: auto; max-width: 220px; max-height: 58px; object-fit: contain; }
.primary-nav { display: flex; align-items: stretch; justify-content: center; min-width: 0; }
.primary-nav > ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 820px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-nav li { position: relative; display: flex; align-items: stretch; }
.primary-nav > ul > li { flex: 1 1 auto; }
.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 82px;
  padding: 12px 14px;
  color: #28282b;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}
.primary-nav > ul > li > a::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 0;
  left: 20%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.primary-nav .current-menu-item > a,
.primary-nav a:hover { color: var(--red); }
.primary-nav > ul > li > a:hover::after,
.primary-nav > ul > .current-menu-item > a::after { transform: scaleX(1); }
.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: none;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  list-style: none;
}
.primary-nav .sub-menu li { display: block; }
.primary-nav .sub-menu a { justify-content: flex-start; min-height: 42px; padding: 8px 12px; text-align: left; }
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { display: block; }
.header-actions { display: flex; border-left: 1px solid var(--line); }
.search-toggle {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 92px;
  padding: 8px;
  background: #fff;
  border: 0;
  cursor: pointer;
}
.search-toggle:hover,
.search-toggle[aria-expanded="true"] { color: #fff; background: #252529; }
.search-toggle span { font-size: 10px; font-weight: 800; }
.menu-toggle { display: none; }
.header-search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 28px 0;
  background: #f1f1f2;
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}
.header-search-panel[hidden] { display: none; }
.header-search-panel__inner { display: grid; grid-template-columns: 210px minmax(0, 620px); justify-content: center; align-items: center; gap: 25px; }
.header-search-panel p { margin: 0; font-size: 15px; font-weight: 900; }
.search-form { display: flex; width: 100%; }
.search-form label { flex: 1; }
.search-field {
  width: 100%;
  min-height: 48px;
  padding: 10px 15px;
  background: #fff;
  border: 2px solid #c9c9ce;
  border-right: 0;
  border-radius: 7px 0 0 7px;
  outline: none;
}
.search-field:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(230, 0, 18, .10); }
.search-submit {
  min-width: 85px;
  min-height: 48px;
  padding: 8px 16px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 0 7px 7px 0;
  cursor: pointer;
  font-weight: 800;
}

/* Homepage */
.site-main { min-height: 60vh; padding-bottom: 72px; }
.home-main { padding-bottom: 0; background: #fff; }
.home-hero { background: #202024; }
.hero-slider__stage {
  position: relative;
  height: clamp(470px, 48vw, 660px);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity .7s ease, visibility .7s ease;
}
.hero-slide.is-active { z-index: 2; visibility: visible; opacity: 1; }
.hero-slide__link,
.hero-slide__media,
.hero-slide__media > img,
.hero-slide__placeholder { display: block; width: 100%; height: 100%; }
.hero-slide__media > img { object-fit: cover; }
.hero-slide__placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .55);
  background: linear-gradient(135deg, #28282d, #565660);
  font-size: clamp(20px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: .16em;
}
.hero-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .55) 38%, rgba(0, 0, 0, .12) 75%), linear-gradient(0deg, rgba(0, 0, 0, .48), transparent 42%);
}
.hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}
.hero-slide__category {
  display: inline-flex;
  padding: 5px 12px;
  color: var(--red);
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}
.hero-slide__content strong {
  display: block;
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(30px, 4.5vw, 62px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.28;
  text-shadow: 0 4px 25px rgba(0, 0, 0, .36);
}
.hero-slide__excerpt {
  display: block;
  max-width: 650px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.8;
}
.hero-slide__button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  min-width: 180px;
  margin-top: 25px;
  padding: 12px 18px;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}
.hero-slide__link:hover { color: #fff; }
.hero-slide__link:hover .hero-slide__button { background: var(--red-dark); transform: translateX(3px); }
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 70px;
  padding: 0;
  color: #fff;
  background: rgba(0, 0, 0, .42);
  border: 0;
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}
.hero-slider__arrow:hover { background: var(--red); }
.hero-slider__arrow--prev { left: 0; }
.hero-slider__arrow--next { right: 0; }
.hero-slider__nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -1px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}
.hero-nav-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 12px 18px;
  background: #fff;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}
.hero-nav-item:last-child { border-right: 0; }
.hero-nav-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.hero-nav-item.is-active::before { transform: scaleX(1); }
.hero-nav-item__number { color: #b9b9bd; font-size: 12px; font-weight: 900; }
.hero-nav-item.is-active .hero-nav-item__number { color: var(--red); }
.hero-nav-item__title {
  display: -webkit-box;
  overflow: hidden;
  color: #333;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-section { padding: 86px 0; }
.home-section--topics { padding-top: 78px; }
.home-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 34px;
}
.home-heading h1,
.home-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.15;
}
.home-heading > div > span {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .22em;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
}
.topics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px 22px; }
.news-card { min-width: 0; background: #fff; }
.news-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dedee1;
}
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #9c9ca2;
  background: linear-gradient(135deg, #ededee, #d7d7da);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.news-card__label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  color: #fff;
  background: var(--red);
  font-size: 10px;
  font-weight: 900;
}
.news-card__body { padding: 16px 0 0; }
.news-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; color: var(--muted); font-size: 10px; }
.category-chip { display: inline-flex; padding: 2px 7px; color: var(--red); border: 1px solid #ffc6ca; font-size: 9px; font-weight: 900; line-height: 1.5; }
.news-card__title { margin: 0; font-size: 16px; font-weight: 800; line-height: 1.65; }
.news-card__excerpt { display: none; }
.home-section--pickup { color: #fff; background: var(--red); }
.home-heading--light > div > span { color: #fff; opacity: .72; }
.home-heading--light .text-link { color: #fff; }
.pickup-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pickup-card { overflow: hidden; color: var(--ink); background: #fff; box-shadow: 0 16px 36px rgba(77, 0, 6, .23); }
.pickup-card > a { display: block; }
.pickup-card > a:hover { color: var(--ink); }
.pickup-card__media { display: block; overflow: hidden; aspect-ratio: 16 / 9; }
.pickup-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.pickup-card:hover .pickup-card__media img { transform: scale(1.04); }
.pickup-card__body { display: block; padding: 22px 22px 25px; }
.pickup-card__meta { display: block; color: var(--red); font-size: 10px; font-weight: 900; }
.pickup-card__body strong { display: block; min-height: 5.2em; margin-top: 10px; font-size: 18px; line-height: 1.65; }
.pickup-card__more { display: block; margin-top: 18px; color: #888; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.home-section--software { background: #fff; }
.software-layout { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(300px, .85fr); gap: 44px; align-items: stretch; }
.software-feature { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 22px; }
.software-card { display: grid; grid-template-columns: 150px minmax(0, 1fr); min-height: 130px; border: 1px solid var(--line); background: #fff; }
.software-card__media { display: block; overflow: hidden; min-height: 130px; background: #ddd; }
.software-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.software-card:hover .software-card__media img { transform: scale(1.04); }
.software-card__body { padding: 17px 18px; }
.software-card__body time { color: var(--muted); font-size: 10px; }
.software-card__body h3 { margin: 7px 0 0; font-size: 14px; line-height: 1.65; }
.software-menu { padding: 30px; color: #fff; background: #222227; }
.software-menu__lead { margin: 0 0 23px; font-size: 20px; font-weight: 900; line-height: 1.55; }
.quick-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.quick-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 118px;
  overflow: hidden;
  padding: 14px;
  color: #fff;
  background: #444;
}
.quick-link::before {
  content: "";
  position: absolute;
  top: -35px;
  right: -28px;
  width: 90px;
  height: 90px;
  border: 18px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}
.quick-link span { position: relative; font-size: 8px; font-weight: 950; letter-spacing: .12em; opacity: .75; }
.quick-link strong { position: relative; margin-top: 4px; font-size: 12px; line-height: 1.4; }
.quick-link i { position: absolute; right: 12px; bottom: 9px; font-style: normal; font-size: 12px; }
.quick-link:hover { color: #fff; filter: brightness(.92); }
.quick-link--red { background: #e60012; }
.quick-link--blue { background: #187bc1; }
.quick-link--yellow { color: #1c1c1e; background: #f4c600; }
.quick-link--yellow:hover { color: #1c1c1e; }
.quick-link--green { background: #357a54; }
.quick-link--violet { background: #7057a5; }
.quick-link--orange { color: #1c1c1e; background: #ff8b14; }
.quick-link--orange:hover { color: #1c1c1e; }
.home-section--updates { background: #f1f1f2; }
.updates-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 50px; }
.home-heading--updates { align-items: flex-start; margin: 0; }
.updates-list { border-top: 1px solid #bdbdc1; }
.update-row {
  display: grid;
  grid-template-columns: 100px 105px minmax(0, 1fr) 25px;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 13px 0;
  border-bottom: 1px solid #d0d0d3;
}
.update-row time { color: var(--muted); font-size: 11px; font-weight: 700; }
.update-row__category { padding: 3px 6px; color: var(--red); border: 1px solid #ef9da4; font-size: 9px; font-weight: 900; text-align: center; }
.update-row strong { font-size: 13px; line-height: 1.6; }
.update-row__arrow { color: var(--red); font-size: 16px; font-weight: 900; }
.updates-more { display: block; width: fit-content; margin: 24px 0 0 auto; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 900; }
.home-disclaimer { padding: 30px 0; color: #777; background: #fff; border-top: 1px solid var(--line); text-align: center; }
.home-disclaimer strong { color: #333; font-size: 12px; }
.home-disclaimer p { margin: 5px 0 0; font-size: 10px; }

/* Archive, sidebar, single post */
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 34px; align-items: start; padding-top: 38px; }
.content-main { min-width: 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.section-heading h1,
.section-heading h2,
.archive-header h1 { margin: 0; font-size: clamp(25px, 3vw, 34px); line-height: 1.3; }
.section-heading__eyebrow { display: block; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.section-heading > a { color: var(--red); font-size: 13px; font-weight: 800; }
.news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.news-grid .news-card { overflow: hidden; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0, 0, 0, .06); }
.news-grid .news-card__body { padding: 17px 18px 19px; }
.news-grid .news-card__excerpt { display: -webkit-box; overflow: hidden; margin: 10px 0 0; color: var(--muted); font-size: 13px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.news-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.empty-state { grid-column: 1 / -1; padding: 45px; color: #555; background: #fff; border-radius: var(--radius); text-align: center; }
.sidebar { position: sticky; top: 110px; display: grid; gap: 20px; }
.widget { padding: 20px; background: #fff; border-radius: var(--radius); box-shadow: 0 7px 22px rgba(0, 0, 0, .05); }
.widget-title { position: relative; margin: 0 0 15px; padding-left: 14px; font-size: 17px; }
.widget-title::before { content: ""; position: absolute; top: .28em; bottom: .28em; left: 0; width: 4px; background: var(--red); border-radius: 5px; }
.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li { border-bottom: 1px solid var(--line); }
.widget li:last-child { border-bottom: 0; }
.widget li a { display: flex; justify-content: space-between; padding: 9px 0; font-size: 13px; }
.nnc-popular-list { counter-reset: popular; }
.nnc-popular-item { counter-increment: popular; display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.nnc-popular-item::before { content: counter(popular); display: grid; place-items: center; align-self: start; width: 28px; height: 28px; color: #fff; background: var(--ink); border-radius: 8px; font-size: 12px; font-weight: 900; }
.nnc-popular-item:first-child::before { background: var(--red); }
.nnc-popular-item a { font-size: 13px; font-weight: 700; line-height: 1.5; }
.nnc-popular-item small { display: block; color: var(--muted); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 23px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--red); }
.archive-header { margin: 0 0 22px; padding: 24px; background: #fff; border-radius: var(--radius); }
.archive-description { color: var(--muted); }
.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; background: #fff; border-radius: 10px; }
.page-numbers.current { color: #fff; background: var(--red); }
.single-article { overflow: hidden; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 25px rgba(0, 0, 0, .06); }
.article-header { padding: clamp(24px, 4vw, 46px); padding-bottom: 25px; }
.article-header h1 { margin: 12px 0 0; font-size: clamp(28px, 4.3vw, 45px); line-height: 1.45; letter-spacing: -.02em; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; color: var(--muted); font-size: 12px; }
.article-thumbnail { margin: 0; }
.article-thumbnail img { width: 100%; }
.article-content { padding: clamp(25px, 5vw, 54px); font-size: 16px; }
.article-content > :first-child { margin-top: 0; }
.article-content h2 { margin: 2.2em 0 .9em; padding: 14px 18px; border-left: 6px solid var(--red); background: var(--soft); font-size: 26px; line-height: 1.5; }
.article-content h3 { margin: 2em 0 .7em; padding-bottom: 8px; border-bottom: 3px solid var(--red); font-size: 21px; }
.article-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-content blockquote { margin: 2em 0; padding: 20px 22px; color: #333; background: #f7f7f8; border-left: 4px solid #999; }
.article-content figure { margin: 2em auto; }
.article-content figcaption { color: var(--muted); font-size: 12px; text-align: center; }
.article-content table { display: block; overflow-x: auto; width: 100%; border-collapse: collapse; }
.article-content th,
.article-content td { padding: 10px 12px; border: 1px solid var(--line); }
.source-box { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 clamp(25px, 5vw, 54px) 35px; padding: 17px 20px; background: #fff8f8; border: 1px solid #ffd4d8; border-radius: 12px; }
.source-box a { color: var(--red); font-weight: 800; }
.article-footer { padding: 0 clamp(25px, 5vw, 54px) 38px; }
.article-tags a { display: inline-block; margin: 4px; padding: 4px 9px; background: var(--soft); border-radius: 999px; font-size: 12px; }
.related-posts { margin-top: 34px; }
.page-article { margin-top: 24px; }
.error-page { margin-top: 25px; padding: 70px 30px; background: #fff; border-radius: var(--radius); text-align: center; }
.error-page__code { display: block; color: var(--red); font-size: clamp(70px, 15vw, 150px); font-weight: 900; line-height: 1; }
.error-page .search-form { max-width: 520px; margin: 25px auto; }
.button { display: inline-flex; padding: 11px 18px; color: #fff; background: var(--red); border-radius: 5px; font-weight: 800; }
.button:hover { color: #fff; background: var(--red-dark); }

/* Footer */
.site-footer { color: rgba(255, 255, 255, .82); background: #1d1d20; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; padding-block: 48px; }
.site-footer__title { margin: 0; color: #fff; }
.site-footer__notice { max-width: 620px; color: rgba(255, 255, 255, .58); font-size: 12px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li a { display: block; padding: 5px 0; }
.site-footer__bottom { padding: 15px 0; background: #111114; font-size: 12px; }

@media (max-width: 1080px) {
  .site-header__row { grid-template-columns: 230px minmax(0, 1fr) 82px; }
  .site-brand { padding-inline: 20px; }
  .primary-nav a { padding-inline: 8px; font-size: 12px; }
  .topics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .software-layout { grid-template-columns: 1fr; }
  .software-menu { display: grid; grid-template-columns: 220px minmax(0, 1fr); align-items: center; gap: 25px; }
  .software-menu__lead { margin: 0; }
  .quick-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .admin-bar .site-header { top: 46px; }
  .site-header__row { display: grid; grid-template-columns: minmax(0, 1fr) 66px; min-height: 66px; background: var(--red); }
  .site-brand { min-height: 66px; }
  .site-brand-mark { width: 38px; height: 38px; border-width: 2px; border-radius: 11px; font-size: 19px; }
  .site-brand-text strong { font-size: 18px; }
  .site-brand-text small { display: none; }
  .header-actions { display: none; }
  .menu-toggle {
    display: block;
    width: 66px;
    height: 66px;
    padding: 18px;
    background: var(--red);
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .28);
    cursor: pointer;
  }
  .menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 6px 0; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 20px 20px;
    background: #fff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav > ul { display: block; max-width: none; }
  .primary-nav li { display: block; }
  .primary-nav a { justify-content: flex-start; min-height: 49px; padding: 10px 6px; border-bottom: 1px solid var(--line); text-align: left; }
  .primary-nav > ul > li > a::after { display: none; }
  .primary-nav .sub-menu { position: static; display: block; min-width: 0; padding: 0 0 0 18px; border: 0; box-shadow: none; }
  .hero-slider__stage { height: 520px; }
  .hero-slide__shade { background: linear-gradient(0deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .08) 75%); }
  .hero-slide__content { justify-content: flex-end; padding-bottom: 55px; }
  .hero-slide__content strong { max-width: 760px; font-size: clamp(30px, 6.5vw, 48px); }
  .hero-slide__excerpt { max-width: 760px; }
  .hero-slider__nav { width: 100%; }
  .hero-nav-item { grid-template-columns: 25px minmax(0, 1fr); padding-inline: 11px; }
  .topics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pickup-grid { grid-template-columns: 1fr; }
  .pickup-card > a { display: grid; grid-template-columns: minmax(250px, .9fr) 1.1fr; }
  .pickup-card__body strong { min-height: 0; }
  .updates-layout { grid-template-columns: 1fr; gap: 28px; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-brand { padding-inline: 14px; }
  .custom-logo { max-width: 180px; max-height: 48px; }
  .hero-slider__stage { height: 470px; }
  .hero-slide__content { padding-bottom: 38px; }
  .hero-slide__content strong { margin-top: 12px; font-size: 29px; line-height: 1.36; }
  .hero-slide__excerpt { display: -webkit-box; overflow: hidden; font-size: 12px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .hero-slide__button { min-width: 155px; margin-top: 17px; padding: 10px 14px; }
  .hero-slider__arrow { top: 44%; width: 38px; height: 58px; font-size: 34px; }
  .hero-slider__nav { grid-template-columns: repeat(4, 1fr); }
  .hero-nav-item { display: block; min-height: 48px; padding: 12px 5px; text-align: center; }
  .hero-nav-item__number { font-size: 11px; }
  .hero-nav-item__title { display: none; }
  .home-section { padding: 62px 0; }
  .home-section--topics { padding-top: 55px; }
  .home-heading { align-items: center; margin-bottom: 25px; }
  .home-heading h1,
  .home-heading h2 { font-size: 31px; }
  .text-link { gap: 10px; font-size: 11px; }
  .topics-grid { grid-template-columns: 1fr 1fr; gap: 27px 12px; }
  .news-card__body { padding-top: 10px; }
  .news-card__meta { display: block; }
  .news-card__meta .category-chip { margin-right: 5px; }
  .news-card__title { font-size: 13px; line-height: 1.55; }
  .pickup-card > a { display: block; }
  .pickup-card__body { padding: 18px; }
  .pickup-card__body strong { font-size: 16px; }
  .software-feature { grid-template-columns: 1fr; gap: 12px; }
  .software-card { grid-template-columns: 118px minmax(0, 1fr); min-height: 105px; }
  .software-card__media { min-height: 105px; }
  .software-card__body { padding: 12px 13px; }
  .software-menu { display: block; padding: 23px 18px; }
  .software-menu__lead { margin-bottom: 18px; font-size: 17px; }
  .quick-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-link { min-height: 105px; }
  .update-row { grid-template-columns: 78px 72px minmax(0, 1fr); gap: 8px; }
  .update-row strong { font-size: 12px; }
  .update-row__arrow { display: none; }
  .news-grid,
  .news-grid--compact { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .content-layout { gap: 25px; padding-top: 20px; }
  .article-header h1 { font-size: 28px; }
  .article-content { font-size: 15px; }
  .source-box { align-items: flex-start; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Comments */
.nnh-comments {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}
.nnh-comments__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 19px;
  border-bottom: 3px solid var(--ink);
}
.nnh-comments__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}
.nnh-comments__header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
}
.nnh-comments__header > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.nnh-comments__count {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
}
.nnh-comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nnh-comment { margin: 0 0 14px; }
.nnh-comment-card {
  padding: 18px 20px 15px;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.nnh-comment-card__header {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
}
.nnh-comment-avatar {
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: #e9e9ec;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #dedee2;
}
.nnh-comment-avatar__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nnh-comment-main { min-width: 0; }
.nnh-comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  color: var(--muted);
  font-size: 11px;
}
.nnh-comment-meta a { color: inherit; }
.nnh-comment-id {
  padding: 2px 7px;
  color: #55555d;
  background: #ececef;
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 800;
  letter-spacing: .03em;
}
.nnh-comment-author-name {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.nnh-comment-author-name a { color: inherit; }
.nnh-comment-card__body {
  margin-top: 5px;
  color: #2e2e32;
  font-size: 14px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}
.nnh-comment-card__body > :first-child { margin-top: 0; }
.nnh-comment-card__body > :last-child { margin-bottom: 0; }
.nnh-comment-awaiting {
  margin: 9px 0 0;
  padding: 8px 11px;
  color: #8a5b00;
  background: #fff3cd;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}
.nnh-comment-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin-top: 14px;
}
.nnh-comment-votes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}
.nnh-vote-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 6px 10px;
  color: #55555d;
  background: #fff;
  border: 1px solid #dcdce1;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.nnh-vote-button:hover:not(:disabled) {
  border-color: #a9a9b0;
  transform: translateY(-1px);
}
.nnh-vote-button strong {
  min-width: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-align: center;
}
.nnh-vote-button.is-selected {
  color: var(--red);
  background: #fff3f4;
  border-color: rgba(230, 0, 18, .35);
}
.nnh-vote-button:disabled { cursor: default; opacity: .72; }
.nnh-comment-votes.is-loading .nnh-vote-button { opacity: .5; }
.nnh-vote-status {
  min-height: 1em;
  color: var(--muted);
  font-size: 10px;
}
.nnh-comment-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  font-size: 11px;
  font-weight: 900;
}
.nnh-comment-actions a { color: var(--red); }
.nnh-comments__empty {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 17px 18px;
  color: var(--muted);
  background: #f7f7f8;
  border-radius: 12px;
}
.nnh-comments__empty p { margin: 0; font-size: 13px; }
.nnh-default-user-icon {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #9a9aa2;
  background: #e4e4e8;
  border-radius: 50%;
}
.nnh-default-user-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.nnh-comment-form-wrap,
.nnh-comment-list .comment-respond {
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.nnh-comment-list .comment-respond {
  margin: 14px 0 4px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.comment-reply-title {
  min-height: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
}
.comment-reply-title:empty { display: none; }
.comment-reply-title small {
  display: block;
  margin: 0 0 9px;
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}
.comment-reply-title small a { color: var(--red); }
.comment-policy {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.nnh-comment-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}
.nnh-comment-form > p { margin: 0; }
.nnh-comment-form .comment-notes,
.nnh-comment-form .logged-in-as,
.nnh-comment-form .comment-form-email,
.nnh-comment-form .comment-form-url,
.nnh-comment-form .comment-form-cookies-consent {
  display: none !important;
}
.nnh-comment-form input,
.nnh-comment-form textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d7d7dc;
  border-radius: 9px;
  outline: none;
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nnh-comment-form input {
  min-height: 52px;
}
.nnh-comment-form textarea {
  min-height: 150px;
  resize: vertical;
}
.nnh-comment-form input:focus,
.nnh-comment-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, .1);
}
.nnh-comment-form .form-submit { margin-top: 3px; }
.nnh-comment-form .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 43px;
  padding: 10px 20px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 7px;
  font-weight: 900;
  cursor: pointer;
}
.nnh-comment-form .submit:hover { background: var(--red-dark); }
.nnh-comments-closed {
  margin: 20px 0 0;
  padding: 15px;
  color: var(--muted);
  background: #f7f7f8;
  border-radius: 10px;
  text-align: center;
}
.nnh-comments .navigation { margin-top: 20px; }

@media (max-width: 640px) {
  .nnh-comments { padding: 21px 14px; }
  .nnh-comments__header { align-items: flex-start; flex-direction: column; gap: 7px; }
  .nnh-comments__header > p { display: none; }
  .nnh-comment-card { padding: 14px 12px; }
  .nnh-comment-card__header { grid-template-columns: 42px minmax(0, 1fr); gap: 10px; }
  .nnh-comment-avatar { width: 42px; height: 42px; }
  .nnh-comment-card__footer { align-items: flex-start; }
  .nnh-comment-votes { width: 100%; }
  .nnh-vote-button { padding: 6px 9px; }
  .nnh-comment-actions { margin-left: 0; }
  .nnh-comment-form .submit { width: 100%; }
}


/* Flat bulletin-board comment replies */
.nnh-comment-list {
  display: grid;
  gap: 14px;
}
.nnh-comment-list .nnh-comment {
  margin: 0;
  scroll-margin-top: 110px;
}
.nnh-comment-number {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}
.nnh-comment-author-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
}
.nnh-board-reply {
  appearance: none;
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.nnh-board-reply:hover,
.nnh-board-reply:focus-visible {
  text-decoration: underline;
}
.nnh-comment-reference {
  color: #0067c5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nnh-comment-reference.is-missing {
  color: var(--muted);
  text-decoration: none;
}
.nnh-comment.is-reference-target .nnh-comment-card {
  animation: nnh-comment-highlight 1.8s ease;
}
@keyframes nnh-comment-highlight {
  0%, 100% {
    background: #fafafa;
    border-color: var(--line);
    box-shadow: none;
  }
  20%, 65% {
    background: #fff8d9;
    border-color: #efc94c;
    box-shadow: 0 0 0 4px rgba(239, 201, 76, .2);
  }
}
.nnh-comment-native-anchor {
  display: block;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 110px;
}

/* Compact bulletin-board comments with YouTube-style ratings. */
.nnh-comment-card {
  position: relative;
  padding: 18px 20px 16px;
  background: #fff;
  border: 1px solid #dedee3;
  border-radius: 14px;
}
.nnh-comment-number {
  position: absolute;
  top: 13px;
  left: 17px;
  z-index: 1;
  color: #74747b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
.nnh-comment-number:hover,
.nnh-comment-number:focus-visible {
  color: var(--red);
}
.nnh-comment-card__header {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding-top: 21px;
}
.nnh-comment-avatar {
  width: 48px;
  height: 48px;
}
.nnh-comment-author-name {
  display: block;
  margin: 0 0 3px;
  color: #242529;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}
.nnh-comment-meta {
  gap: 6px 9px;
  color: #85858c;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12px;
}
.nnh-comment-id {
  padding: 2px 6px;
  color: #5f6067;
  background: #f0f0f3;
  border-radius: 5px;
  font-size: 11px;
}
.nnh-comment-card__body {
  margin-top: 13px;
  color: #333438;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: .01em;
}
.nnh-comment-card__body p {
  margin-block: 0 1.25em;
}
.nnh-comment-card__body .nnh-comment-reference {
  font-size: .9em;
}
.nnh-comment-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eeeeef;
}
.nnh-comment-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 12px;
}
.nnh-board-reply {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 6px 10px;
  color: #5f6067;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.nnh-board-reply:hover,
.nnh-board-reply:focus-visible {
  color: #242529;
  background: #f2f2f4;
  text-decoration: none;
}
.nnh-board-reply__icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
}
.nnh-board-reply__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nnh-comment-votes {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
}
.nnh-vote-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 48px;
  min-height: 36px;
  padding: 6px 10px;
  color: #62636a;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.nnh-vote-button:hover:not(:disabled) {
  color: #242529;
  background: #f2f2f4;
  border-color: transparent;
  transform: none;
}
.nnh-vote-button.is-selected {
  color: var(--red);
  background: #fff1f2;
  border-color: transparent;
}
.nnh-vote-button:disabled {
  cursor: default;
  opacity: 1;
}
.nnh-comment-votes.is-loading .nnh-vote-button {
  opacity: .55;
}
.nnh-reaction-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: currentColor;
}
.nnh-reaction-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nnh-vote-button strong {
  min-width: 11px;
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.nnh-vote-status,
.nnh-reaction-copy,
.nnh-board-reply__arrow {
  display: none !important;
}

@media (max-width: 640px) {
  .nnh-comment-card {
    padding: 15px 13px 13px;
  }
  .nnh-comment-number {
    top: 11px;
    left: 13px;
    font-size: 11px;
  }
  .nnh-comment-card__header {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding-top: 19px;
  }
  .nnh-comment-avatar {
    width: 40px;
    height: 40px;
  }
  .nnh-comment-author-name {
    font-size: 15px;
  }
  .nnh-comment-meta {
    font-size: 11px;
  }
  .nnh-comment-id {
    font-size: 10px;
  }
  .nnh-comment-card__body {
    margin-top: 11px;
    font-size: 15px;
    line-height: 1.78;
  }
  .nnh-comment-card__footer {
    gap: 8px;
    margin-top: 13px;
    padding-top: 10px;
  }
  .nnh-board-reply {
    min-height: 32px;
    padding: 5px 8px;
    font-size: 12px;
  }
  .nnh-comment-votes {
    width: auto;
    gap: 2px;
  }
  .nnh-vote-button {
    min-width: 44px;
    min-height: 32px;
    padding: 5px 8px;
    gap: 4px;
  }
  .nnh-reaction-icon,
  .nnh-reaction-icon svg {
    width: 18px;
    height: 18px;
  }
  .nnh-vote-button strong {
    font-size: 12px;
  }
}
