/* ============================================================
   DESIGN TOKENS — rakusiru-finance 準拠
   ============================================================ */
:root {
  --red:        #e05a00;
  --red-dk:     #b84400;
  --orange:     #ff6600;
  --bg:         #f4f4f0;
  --surface:    #ffffff;
  --gray-50:    #fafafa;
  --gray-100:   #f0f0f0;
  --border:     #dddddd;
  --text:       #1a1a1a;
  --text-sub:   #555555;
  --text-muted: #999999;
  --link:       #0066cc;
  --font: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  --shadow:     0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --r:    3px;
  --r-md: 6px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 14px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 8px;
}
@media (min-width: 640px) { .container { padding: 0 16px; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--red);
  border-bottom: 3px solid var(--red-dk);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 8px;
}
.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: rgba(255,255,255,0.9); }
.logo span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.8);
}
.header-right { display: flex; align-items: center; gap: 8px; }
.header-btn {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 5px 12px;
  border-radius: var(--r);
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
}
.header-btn:hover { background: rgba(255,255,255,0.25); }
.header-btn.primary { background: #fff; color: var(--red); font-weight: 700; }
.header-btn.primary:hover { background: #f5f5f5; }

.search-bar { background: #b84400; padding: 8px 16px 10px; }
.search-inner { display: flex; gap: 6px; max-width: 600px; }
.search-inner input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: var(--r) 0 0 var(--r);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
}
.search-inner button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: background 0.15s;
}
.search-inner button:hover { background: #e55a00; }

/* ============================================================
   NAVIGATION BAR
   ============================================================ */
.nav-bar {
  background: #222;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-bar::-webkit-scrollbar { display: none; }
.nav-item {
  color: #ddd;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  border-right: 1px solid #333;
  transition: background 0.15s;
  text-decoration: none;
  display: block;
}
.nav-item:hover { background: #333; color: #fff; text-decoration: none; }
.nav-item.active { color: var(--orange); font-weight: 700; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--link); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #1a1a3e 0%, #2d1a5e 40%, #4a0080 100%);
  color: #fff;
  padding: 32px 0;
}
.hero-inner { max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}
.hero-title-sub {
  display: block;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 20px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  padding: 10px 20px;
  min-width: 90px;
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #ffd700;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  white-space: nowrap;
}

@media (max-width: 479px) {
  .hero { padding: 20px 0; }
  .hero-title { font-size: 22px; }
  .hero-title-sub { font-size: 13px; }
  .hero-desc { font-size: 12px; }
  .hero-stats { gap: 10px; }
  .hero-stat { padding: 8px 14px; min-width: 76px; }
  .hero-stat-num { font-size: 22px; }
}

/* ============================================================
   LAYOUT: 2-COLUMN
   ============================================================ */
.layout {
  padding: 12px 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}
@media (min-width: 768px) {
  .layout { grid-template-columns: 1fr 260px; }
}
.layout-main { display: flex; flex-direction: column; gap: 12px; }
.layout-side  { display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   SECTION CARD（共通）
   ============================================================ */
.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 2px solid var(--red);
  background: var(--gray-50);
}
.section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  margin: 0;
  line-height: inherit;
}
.update-date { font-size: 11px; color: var(--text-muted); }

.section-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
}
.lead-text strong { color: var(--text); }

/* ============================================================
   SECTION 1: バズ定義グリッド
   ============================================================ */
.buzz-definition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .buzz-definition-grid { grid-template-columns: repeat(3, 1fr); }
}
.buzz-def-item {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.buzz-def-icon {
  font-size: 24px;
  line-height: 1;
}
.buzz-def-content h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.buzz-def-content p {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.65;
}

.info-box {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.info-box-title {
  background: var(--gray-50);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   SECTION 2: 5要素リスト
   ============================================================ */
.element-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.element-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}
.element-item:last-child { border-bottom: none; }

.element-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red) 0%, #b84400 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.element-content { flex: 1; min-width: 0; }
.element-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.element-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 10px;
}
.element-desc strong { color: var(--text); }
.element-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.example-tag {
  background: #e8f0fe;
  color: #1a56cc;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid #b8d0f8;
}

.element-meter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
}
.meter-label {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
}
.meter-bar {
  width: 8px;
  height: 60px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.meter-fill {
  width: 100%;
  background: linear-gradient(to top, var(--red), var(--orange));
  border-radius: 4px;
  transition: height 0.3s;
}
.meter-value {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
}

@media (max-width: 479px) {
  .element-item { grid-template-columns: 36px 1fr; }
  .element-meter { display: none; }
  .element-number { width: 36px; height: 36px; font-size: 11px; }
}

/* ============================================================
   SECTION 3: プラットフォームカード
   ============================================================ */
.platform-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .platform-cards { grid-template-columns: repeat(2, 1fr); }
}

.platform-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.platform-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.platform-x     .platform-header { background: #1a1a1a; color: #fff; }
.platform-tiktok .platform-header { background: #010101; color: #fff; }
.platform-instagram .platform-header { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.platform-youtube .platform-header { background: #ff0000; color: #fff; }

.platform-icon {
  font-size: 28px;
  font-weight: 900;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.platform-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.platform-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ptag {
  font-size: 10px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}

.platform-body {
  padding: 12px 14px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platform-stat-row {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 8px;
}
.ps-label { font-size: 11px; color: var(--text-muted); }
.ps-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}
.ps-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 3px;
}
.ps-val { font-size: 11px; color: var(--text-sub); text-align: right; }

.platform-tips {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.platform-tips h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.platform-tips ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.platform-tips ul li {
  font-size: 12px;
  color: var(--text-sub);
  padding-left: 12px;
  position: relative;
  line-height: 1.6;
}
.platform-tips ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* ============================================================
   SECTION 4: 心理トリガーグリッド
   ============================================================ */
.trigger-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) {
  .trigger-grid { grid-template-columns: repeat(2, 1fr); }
}

.trigger-item {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
}
.trigger-num {
  width: 32px;
  height: 32px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-row: span 2;
  align-self: start;
}
.trigger-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.trigger-desc {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ============================================================
   SECTION 5: タイプリスト
   ============================================================ */
.type-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.type-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}
.type-item:last-child { border-bottom: none; }

.type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: var(--r);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  min-height: 36px;
}
.type-positive  { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.type-info      { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }
.type-debate    { background: #fff3e0; color: #e65100; border: 1px solid #ffcc80; }
.type-challenge { background: #f3e5f5; color: #6a1b9a; border: 1px solid #ce93d8; }

.type-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.type-content p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 8px;
}
.type-merit {
  font-size: 12px;
  color: var(--text-muted);
}
.merit-high { color: #2e7d32; }
.merit-mid  { color: #e65100; }
.merit-low  { color: var(--text-sub); }

@media (max-width: 479px) {
  .type-item { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 6: 比較テーブル・警告ボックス
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 13px;
}
.compare-table caption {
  font-size: 11px;
  color: var(--text-muted);
  text-align: left;
  margin-bottom: 6px;
  padding: 0 4px;
}
.compare-table th,
.compare-table td {
  padding: 8px 10px;
  border: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.5;
}
.compare-table thead th {
  background: var(--gray-100);
  font-weight: 700;
  font-size: 12px;
  color: var(--text-sub);
  white-space: nowrap;
}
.compare-table tbody tr:hover { background: var(--gray-50); }
.compare-table tr.recommended { background: #fff9e6; }
.compare-table .highlight { color: var(--red); font-weight: 700; }
.compare-table .danger { color: #c00; }

.warning-box {
  background: #fff3e0;
  border: 1px solid #ffcc80;
  border-left: 4px solid var(--orange);
  border-radius: var(--r-md);
  padding: 14px;
}
.warning-box h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   CHECKLIST（共通）
   ============================================================ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checklist li {
  font-size: 13px;
  color: var(--text-sub);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.65;
}
.checklist li span { flex-shrink: 0; }

/* ============================================================
   SECTION 7: チェックリストブロック
   ============================================================ */
.checklist-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .checklist-sections { grid-template-columns: repeat(2, 1fr); }
}
.checklist-block {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
}
.checklist-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-body { gap: 0; padding: 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
  line-height: 1.5;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}
.faq-q::after {
  content: '▼';
  position: absolute;
  right: 14px;
  font-size: 10px;
  color: var(--text-muted);
  transition: transform 0.2s;
}
details[open] .faq-q::after { transform: rotate(-180deg); }
details[open] .faq-q { color: var(--red); }

.faq-a {
  padding: 0 14px 14px 46px;
}
.faq-a p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
}

/* ============================================================
   DISCLAIMER BOX
   ============================================================ */
.disclaimer-box {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.sidebar-widget-head {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.sidebar-widget-head--warn {
  border-left-color: #c84f14;
  color: #c84f14;
}
.sidebar-widget-body { padding: 12px; }

/* 目次 */
.toc-list { display: flex; flex-direction: column; gap: 2px; counter-reset: toc; }
.toc-list li { counter-increment: toc; }
.toc-link {
  display: block;
  font-size: 12px;
  color: var(--link);
  padding: 4px 6px;
  border-radius: var(--r);
  transition: background 0.15s;
}
.toc-link:hover { background: var(--gray-50); text-decoration: none; }

/* SNSサマリー */
.sns-summary { display: flex; flex-direction: column; gap: 10px; }
.sns-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 8px;
}
.sns-name { font-size: 11px; color: var(--text-sub); }
.sns-bar-wrap {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}
.sns-bar {
  height: 100%;
  background: linear-gradient(90deg, #4a0080, var(--orange));
  border-radius: 3px;
}
.sns-label { font-size: 10px; color: var(--text-muted); text-align: right; }

/* 関連記事 */
.related-list { display: flex; flex-direction: column; gap: 0; }
.related-list li {
  border-bottom: 1px solid var(--gray-100);
}
.related-list li:last-child { border-bottom: none; }
.related-list a {
  display: block;
  font-size: 12px;
  color: var(--link);
  padding: 7px 0;
  line-height: 1.5;
  transition: color 0.15s;
}
.related-list a:hover { text-decoration: underline; }

/* 要素まとめ */
.summary-list { display: flex; flex-direction: column; gap: 6px; }
.summary-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-100);
}
.summary-list li:last-child { border-bottom: none; }
.summary-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.sidebar-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 16px;
  font-size: 12px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-bottom: 10px;
}
.footer-links a {
  color: #aaa;
  font-size: 12px;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 479px) {
  .buzz-definition-grid { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .trigger-grid { grid-template-columns: 1fr; }
  .checklist-sections { grid-template-columns: 1fr; }
  .sns-row { grid-template-columns: 64px 1fr 48px; }
}
