@charset "UTF-8";
/* GENSHI AI コラム用スタイル
   配色トークンは https://genshi.ai/css/ai-guideline.css を踏襲。
   記事本文のクラス名は voice.genshi.ai のコラム（column.css）と互換。 */

:root {
  --ink: #183153;
  --ink-soft: #425775;
  --ink-mute: #7c8ca3;
  --blue: #1268ef;
  --blue-dark: #0756ce;
  --blue-soft: rgba(18, 104, 239, .09);
  --cyan: #29cbc5;
  --yellow: #ffd95a;
  --coral: #ff7b62;
  --green: #27b77a;
  --cream: #fff9e8;
  --sky: #edf7ff;
  --mint: #e8faf3;
  --paper: #ffffff;
  --line: #dce6f0;
  --soft-line: #edf2f7;
  --radius: 16px;
  --radius-lg: 22px;
  --max: 1160px;
  --pad: clamp(20px, 4vw, 40px);
  --font: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
[id] { scroll-margin-top: 88px; }
::selection { color: var(--ink); background: rgba(255, 217, 90, .8); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.shell { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.narrow { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 var(--pad); }

/* ===== ヘッダー ===== */
.col-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid var(--soft-line);
  backdrop-filter: blur(14px);
}
.col-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 66px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.col-header__logo { font-family: var(--font-en); font-weight: 900; font-size: 17px; letter-spacing: -.02em; }
.col-header__logo span { color: var(--blue); }
.col-header nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.col-header nav a { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); padding: 8px 14px; border-radius: 999px; }
.col-header nav a:hover { color: var(--blue); background: var(--blue-soft); }
.col-header .head-cta {
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13.5px;
}
.col-header .head-cta:hover { background: var(--blue-dark); }

/* ===== パンくず ===== */
.crumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 12.5px; color: var(--ink-mute); padding: 20px 0 0; }
.crumb a { font-weight: 700; color: var(--ink-mute); }
.crumb a:hover { color: var(--blue); }
.crumb .sep { opacity: .55; }

/* ===== 一覧ページ ===== */
.list-hero { background: linear-gradient(180deg, var(--sky) 0%, var(--paper) 100%); border-bottom: 1px solid var(--line); }
.list-hero__inner { max-width: var(--max); margin: 0 auto; padding: clamp(44px, 6vw, 74px) var(--pad); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.eyebrow > span { width: 24px; height: 6px; border-radius: 20px; background: var(--yellow); transform: rotate(-6deg); }
.list-hero h1 { margin: 0; font-size: clamp(28px, 4.6vw, 46px); font-weight: 900; line-height: 1.42; letter-spacing: -.035em; }
.list-hero h1 em { position: relative; z-index: 0; font-style: normal; }
.list-hero h1 em::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -.08em; right: -.08em; bottom: .08em;
  height: .34em;
  background: var(--yellow);
  border-radius: 60% 40% 50% 40%;
  transform: rotate(-1deg);
}
.list-hero p { max-width: 620px; margin: 20px 0 0; color: var(--ink-soft); font-size: 15px; }

.col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--pad) 20px;
}
.col-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  transition: transform .2s ease, border-color .2s ease;
}
.col-card:hover { transform: translateY(-4px); border-color: #bcd9f7; }
.col-card .num { font-family: var(--font-en); font-weight: 900; font-size: 11px; letter-spacing: .13em; color: var(--blue); }
.col-card .tag {
  align-self: flex-start;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: .04em;
}
.col-card h2 { margin: 14px 0 0; font-size: 17.5px; font-weight: 900; line-height: 1.6; letter-spacing: -.02em; }
.col-card p { flex: 1; margin: 12px 0 0; font-size: 13px; color: var(--ink-soft); line-height: 1.85; }
.col-card .meta { margin-top: 18px; font-family: var(--font-en); font-size: 11.5px; font-weight: 600; color: var(--ink-mute); display: flex; gap: 12px; }
.col-card--feature { grid-column: span 3; }
.col-card--feature h2 { font-size: clamp(20px, 2.6vw, 27px); }
.col-card--feature p { font-size: 14.5px; max-width: 780px; }

/* ===== 記事ヘッダー ===== */
.article-head { padding: 18px 0 8px; }
.article-head .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  padding: 6px 16px;
  letter-spacing: .04em;
}
.article-head h1 {
  margin: 18px 0 0;
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 900;
  line-height: 1.44;
  letter-spacing: -.035em;
}
.article-head .desc { margin: 18px 0 0; color: var(--ink-soft); font-size: 15px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-en);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mute);
}

/* ===== 本文 ===== */
.article-content { padding-top: 30px; font-size: 16px; line-height: 1.98; color: var(--ink-soft); }
.article-content > * + * { margin-top: 1.45em; }
.article-content p { margin: 0; }
.article-content strong { font-weight: 800; color: var(--ink); }
.article-content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(18, 104, 239, .35);
}
.article-content a:hover { text-decoration-color: var(--blue); }

.article-content h2 {
  margin: 2.1em 0 0;
  padding-top: 1.1em;
  border-top: 2px solid var(--ink);
  color: var(--ink);
  font-size: clamp(21px, 3vw, 27px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -.03em;
}
.article-content h2 .hx {
  display: inline-block;
  margin-right: 12px;
  font-family: var(--font-en);
  font-size: .68em;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--blue);
}
.article-content h3 {
  position: relative;
  margin: 2.1em 0 0;
  padding-left: 16px;
  color: var(--ink);
  font-size: clamp(16.5px, 2.3vw, 19px);
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: -.02em;
}
.article-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: .28em;
  bottom: .28em;
  width: 4px;
  border-radius: 4px;
  background: var(--cyan);
}
.article-content h3 + p { margin-top: .7em; }

.article-content ul, .article-content ol { margin: 1.1em 0 0; padding-left: 0; list-style: none; }
.article-content li { position: relative; padding-left: 32px; margin-bottom: 13px; line-height: 1.85; }
.article-content ul > li::before {
  content: '';
  position: absolute;
  left: 9px; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
.article-content ol { counter-reset: li; }
.article-content ol > li { counter-increment: li; }
.article-content ol > li::before {
  content: counter(li);
  position: absolute;
  left: 0; top: 4px;
  width: 23px; height: 23px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 12px;
}

/* リード文 */
.article-content .lead {
  font-size: clamp(16px, 2.3vw, 18px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.88;
  letter-spacing: -.01em;
}

/* 目次 */
.article-content .toc {
  background: var(--sky);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.article-content .toc .tt {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}
.article-content .toc .tt::before { content: ''; width: 22px; height: 6px; border-radius: 20px; background: var(--yellow); transform: rotate(-6deg); }
.article-content .toc ol { counter-reset: toc; margin: 0; }
.article-content .toc li { counter-increment: toc; padding-left: 32px; margin-bottom: 9px; font-size: 14px; }
.article-content .toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0; top: 1px;
  width: auto; height: auto;
  background: none;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 12px;
  color: var(--blue);
}
.article-content .toc a { color: var(--ink-soft); font-weight: 700; text-decoration: none; }
.article-content .toc a:hover { color: var(--blue); }

/* 表 */
.article-content .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.article-content table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.75;
}
.article-content thead th {
  background: var(--sky);
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .01em;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.article-content th, .article-content td {
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.article-content tbody tr:last-child td { border-bottom: 2px solid var(--ink); }
.article-content tbody td:first-child { font-weight: 700; color: var(--ink); }

/* ポイントボックス */
.article-content .genshi-memo {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}
.article-content .genshi-memo__mascot {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  margin: 0;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}
.article-content .genshi-memo .nm {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.article-content .genshi-memo .nm::before { content: ''; width: 24px; height: 6px; border-radius: 20px; background: var(--yellow); transform: rotate(-6deg); }
.article-content .genshi-memo p { flex: 1; min-width: 0; margin: 0; color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.85; }

/* まとめ枠 */
.article-content .summary {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
}
.article-content .summary p { margin: 0; color: var(--ink); font-weight: 600; }

/* 補足ノート */
.article-content .note {
  background: var(--soft-line);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.85;
}

/* 出典 */
.article-content .sources {
  margin-top: 3em;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-mute);
  word-break: break-all;
}
.article-content .sources a { color: var(--ink-mute); font-weight: 500; text-decoration-color: var(--line); }
.article-content .sources a:hover { color: var(--blue); }

/* 本文内の関連記事リスト（ハブ記事用） */
.article-content .related-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 1.4em;
}
.article-content .related-list li { padding: 0; margin: 0; }
.article-content .related-list li::before { display: none; }
.article-content .related-list a {
  display: block;
  height: 100%;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.7;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.article-content .related-list a:hover { transform: translateY(-3px); border-color: #bcd9f7; }
@media (max-width: 640px) { .article-content .related-list { grid-template-columns: 1fr; } }

/* ===== 記事下CTA ===== */
.article-cta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: clamp(44px, 6vw, 60px);
  background: linear-gradient(120deg, var(--blue) 0%, var(--cyan) 100%);
  border-radius: 26px;
  padding: clamp(30px, 4vw, 44px);
  color: #fff;
}
.article-cta__text { flex: 1; min-width: 0; }
.article-cta__mascot {
  width: 138px;
  height: 138px;
  flex-shrink: 0;
  object-fit: contain;
  background: var(--paper);
  border: 4px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
}
.article-cta h2 { margin: 0; font-size: clamp(20px, 3vw, 27px); font-weight: 900; line-height: 1.5; letter-spacing: -.03em; color: #fff; word-break: auto-phrase; text-wrap: balance; }
.article-cta p { margin: 12px 0 0; font-size: 14.5px; color: rgba(255, 255, 255, .93); }
.article-cta .btn {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 30px;
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  font-weight: 900;
  font-size: 14.5px;
}
.article-cta .btn:hover { transform: translateY(-2px); }

/* ===== 関連記事 ===== */
.related { margin-top: clamp(48px, 7vw, 72px); }
.related h2 { margin: 0 0 20px; font-size: 20px; font-weight: 900; letter-spacing: -.02em; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.related-grid a {
  display: block;
  padding: 20px 22px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.7;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease;
}
.related-grid a:hover { transform: translateY(-3px); border-color: #bcd9f7; }
.related-grid .num { display: block; margin-bottom: 6px; font-family: var(--font-en); font-size: 11px; font-weight: 900; letter-spacing: .13em; color: var(--blue); }

.back-link { margin-top: 44px; font-size: 13.5px; font-weight: 800; color: var(--blue); }

/* ===== フッター ===== */
.col-footer {
  margin-top: clamp(56px, 8vw, 90px);
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  padding: 44px 0;
}
.col-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.col-footer .logo { font-family: var(--font-en); font-weight: 900; font-size: 16px; color: #fff; }
.col-footer nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.col-footer nav a { font-size: 13px; font-weight: 700; color: rgba(255, 255, 255, .78); }
.col-footer nav a:hover { color: #fff; }
.col-footer .cr {
  width: 100%;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-family: var(--font-en);
  font-size: 11.5px;
  color: rgba(255, 255, 255, .5);
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .col-grid { grid-template-columns: repeat(2, 1fr); }
  .col-card--feature { grid-column: span 2; }
}
@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .col-header nav a:not(.head-cta) { display: none; }
  .col-grid { grid-template-columns: 1fr; }
  .col-card--feature { grid-column: span 1; }
  .related-grid { grid-template-columns: 1fr; }
  .article-content .toc, .article-content .genshi-memo, .article-content .summary { padding: 20px 20px; }
}

/* Site integration: shared LP logo, thematic index, and narrow-screen reading. */
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; padding: 10px 18px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 8px; }
.col-header__logo { display: flex; flex-direction: column; flex-shrink: 0; gap: 3px; }
.col-header__logo img { width: 132px; height: 26px; object-fit: contain; object-position: left; }
.col-header__logo span { font-size: 10px; font-weight: 700; letter-spacing: .02em; color: var(--ink-soft); }
.list-hero .crumb { padding-top: 0; margin-bottom: 34px; }
.list-hero .eyebrow { margin: 0 0 16px; color: var(--blue); font-size: 12px; }
.list-hero h1 { font-size: clamp(29px, 4.4vw, 48px); }
.topic-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.topic-nav a { display: flex; align-items: center; gap: 14px; padding: 10px 16px; background: white; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: 13px; font-weight: 700; }
.topic-nav a:hover { border-color: var(--blue); color: var(--blue); }
.topic-nav span { color: var(--blue); font-family: var(--font-en); font-size: 12px; }
.column-section { margin-top: 54px; scroll-margin-top: 90px; }
.section-label { margin-bottom: 22px; }
.section-label h2 { display: flex; align-items: center; gap: 12px; margin: 0; font-size: clamp(22px, 3vw, 27px); font-weight: 900; letter-spacing: -.02em; }
.section-label h2::before { content: ''; width: 6px; height: 26px; flex-shrink: 0; border-radius: 3px; background: var(--cyan); }
.section-label p { margin: 8px 0 0; color: var(--ink-soft); font-size: 14px; }
.column-section .col-grid { padding: 0; margin: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.col-card h3 { margin: 14px 0 0; font-size: 18px; font-weight: 800; line-height: 1.7; letter-spacing: -.02em; overflow-wrap: anywhere; }
.col-card .meta { justify-content: space-between; }
.card-arrow { color: var(--blue); }
.index-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 60px; padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); }
.index-cta__intro { display: flex; align-items: center; gap: 20px; min-width: 0; }
.index-cta__intro > div { min-width: 0; }
.index-cta__mascot { width: 88px; height: 88px; flex-shrink: 0; object-fit: contain; border-radius: 50%; background: var(--paper); }
.index-cta h2 { margin: 0; font-size: 21px; word-break: auto-phrase; text-wrap: balance; }
.index-cta p { margin: 8px 0 0; font-size: 14px; color: var(--ink-soft); }
.index-cta-link { flex-shrink: 0; border-radius: 999px; background: var(--blue); color: white; padding: 13px 21px; font-size: 13px; font-weight: 800; }
.index-cta-link:hover { background: var(--blue-dark); }
.article-head h1 { overflow-wrap: anywhere; }
.article-content p + p { margin-top: 1.2em; }
.article-content .table-scroll { max-width: 100%; }
.article-content details { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-top: 14px; }
.article-content summary { cursor: pointer; color: var(--ink); font-weight: 700; }
.article-content details[open] summary { margin-bottom: 14px; }
.article-content a { overflow-wrap: anywhere; }
@media (max-width: 960px) {
  .column-section .col-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .index-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .column-section { margin-top: 38px; }
  .column-section .col-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .col-header__inner { gap: 12px; }
  .col-header .head-cta { padding: 9px 15px; font-size: 12px; white-space: nowrap; }
  .list-hero__inner { padding-top: 26px; padding-bottom: 32px; }
  .list-hero .crumb { margin-bottom: 24px; }
  .topic-nav { gap: 8px; margin-top: 23px; }
  .topic-nav a { padding: 8px 12px; font-size: 12px; }
  .col-card { padding: 22px; }
  .col-card h3 { font-size: 18px; }
  .article-head h1 { font-size: 26px; line-height: 1.55; }
  .index-cta { padding: 24px; }
  .index-cta-link { white-space: normal; }
  .index-cta__intro { gap: 14px; }
  .index-cta__mascot { width: 64px; height: 64px; }
  .article-content .genshi-memo { gap: 12px; padding: 20px 16px; }
  .article-content .genshi-memo__mascot { width: 52px; height: 52px; }
  .article-cta { flex-direction: column; gap: 20px; padding: 28px 22px; text-align: center; }
  .article-cta__mascot { order: -1; width: 108px; height: 108px; }
  .article-cta .btn { max-width: 100%; padding: 14px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Existing hospital-edition photographs and diagrams. */
.col-card__cover { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 10px; margin-bottom: 20px; }
.article-cover { margin: 26px 0 0; }
.article-cover img { width: 100%; height: auto; border-radius: 14px; }
.article-cover figcaption { margin-top: 6px; text-align: right; color: var(--ink-mute); font-size: 11px; }
.article-content .article-diagram { margin: 30px 0; }
.article-diagram .diagram-image-link { display: block; cursor: zoom-in; }
.article-diagram img { width: 100%; height: auto; border: 1px solid var(--soft-line); }
.article-diagram figcaption { display: flex; flex-direction: column; gap: 5px; padding-top: 9px; color: var(--ink-soft); font-size: 12px; line-height: 1.8; }
.article-diagram figcaption a { align-self: flex-start; font-size: 12px; }
@media (max-width: 640px) {
  .col-card__cover { margin-bottom: 18px; }
  .article-cover { margin-top: 22px; }
  .article-content .article-diagram { margin: 24px 0; }
}
