/* CJC-1295 Medicine — sumi-e tech scroll */

:root {
  --ink: #1A1A17;
  --ink-strong: #0A0A09;
  --ink-wash-dark: #2E2E2A;
  --ink-wash-mid: #5C5E59;
  --ink-wash-light: #9A9C95;
  --ink-wash-ghost: #C4C5BD;
  --paper: #F2EFE6;
  --paper-alt: #EDEAE0;
  --surface: #F7F4EB;
  --surface-elevated: #FFFFFE;
  --neutral-100: #EAE7DC;
  --neutral-200: #DDD9CC;
  --neutral-300: #C4C0B2;
  --neutral-500: #7E7B70;
  --neutral-700: #3D3C36;
  --seal: #8A1C15;
  --seal-bright: #A52219;
  --rule: #C4C0B2;
  --text: #1A1A17;
  --text-muted: #5C5E59;
  --text-inverse: #F2EFE6;

  --font-display: 'Noto Serif Display', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-heading: 'Noto Sans', 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --font-body: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', 'SF Mono', Menlo, monospace;

  --max-width: 76rem;
  --scroll-max-width: 62rem;
  --article-max-width: 52ch;
  --container-px: clamp(1.25rem, 3vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  font-feature-settings: 'kern' 1, 'liga' 1;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2.5px solid var(--seal);
  outline-offset: 2px;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}
.scroll {
  max-width: var(--scroll-max-width);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* Two-column scroll layout: reading column + Ma column */
.scroll-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .scroll-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 3rem;
  }
}

.reading-col { max-width: var(--article-max-width); }
.ma-col {
  position: relative;
  min-height: 1px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 64px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.brand-block { display: flex; align-items: center; gap: 0.75rem; }
.brand-seal {
  width: 18px;
  height: 18px;
  background: var(--seal);
  display: inline-block;
  flex-shrink: 0;
}
.site-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.site-tag {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: none;
}
@media (min-width: 768px) {
  .site-tag { display: inline-block; }
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.site-nav a .nav-idx {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-right: 0.35rem;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--seal);
  transition: right 200ms ease-out;
}
.site-nav a:hover::after { right: 0; }
.site-nav a[aria-current="page"]::after {
  right: 0;
  height: 2px;
}

/* Hero */
.hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5rem;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 3rem;
  }
}
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.eyebrow-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.eyebrow-rule .rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
  max-width: 18rem;
}
.eyebrow-rule .scroll-mark {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--seal);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--ink);
  max-width: 18ch;
}
.hero .lede {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 0 0 1.5rem;
  color: var(--ink-wash-dark);
  max-width: 52ch;
}
.hero .seal-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.hero .seal-rule .rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
  max-width: 14rem;
}
.hero .seal-rule .seal-square {
  width: 10px;
  height: 10px;
  background: var(--seal);
  flex-shrink: 0;
}

.hero-figure {
  margin: 0;
  position: relative;
}
.hero-figure img {
  width: 100%;
  height: auto;
}

/* CTAs (ghost anchors below lede) */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 0.5rem;
}
.cta-row a.cta-ghost {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 200ms ease-out, border-color 200ms ease-out;
}
.cta-row a.cta-ghost:hover {
  color: var(--seal);
  border-bottom-color: var(--seal);
}

/* Buttons (used sparingly: contact page, generic) */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.875rem 1.75rem;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background-color 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out;
}
.btn-primary {
  background: var(--ink);
  color: var(--text-inverse);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  background: var(--seal);
}
.btn-primary:hover { background: var(--ink-wash-dark); }
.btn-primary:hover::after { background: var(--seal-bright); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  background: var(--seal);
}
.btn-secondary:hover {
  border-color: var(--seal);
  color: var(--seal);
}

/* Article body */
main {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
article > section {
  margin: 0 0 2.75rem;
  scroll-margin-top: 5rem;
}
.section-index {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seal);
  margin: 0 0 0.5rem;
}
article h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.1vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--ink-strong);
  position: relative;
}
article h2::after {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background: var(--seal);
  margin-top: 0.5rem;
}
article h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin: 1.75rem 0 0.5rem;
  color: var(--ink-strong);
}
article h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink-strong);
}
article p { margin: 0 0 1.1rem; }
article p:last-child { margin-bottom: 0; }
article ul, article ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}
article li { margin: 0 0 0.5rem; }
article a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-wash-mid);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms ease-out, color 200ms ease-out;
}
article a:hover {
  color: var(--seal);
  text-decoration-color: var(--seal);
}
article em { font-style: italic; }
article strong { font-weight: 600; color: var(--ink-strong); }

/* Drop letter */
.drop-letter::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5em;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.5rem 0 0;
  color: var(--ink-strong);
}

/* Citation markers */
.cite {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--seal);
  vertical-align: baseline;
  position: relative;
  top: -0.1em;
  text-decoration: none;
  margin: 0 0.05em;
}
.cite:hover { color: var(--seal-bright); }

/* Inline code */
code, .mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9em;
  background: var(--neutral-100);
  padding: 0.125rem 0.5rem;
  border-left: 1px solid var(--seal);
}
pre {
  font-family: var(--font-mono);
  background: var(--neutral-100);
  border-left: 2px solid var(--seal);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow-x: auto;
  margin: 1.25rem 0;
}
pre code {
  background: transparent;
  padding: 0;
  border: 0;
}

/* Figure */
figure.plate {
  margin: 2rem 0;
  position: relative;
}
figure.plate img {
  width: 100%;
  height: auto;
}
figure.plate .plate-rule {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0.5rem;
}
figure.plate .plate-rule .rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
  max-width: 18rem;
}
figure.plate .plate-rule .seal {
  width: 8px;
  height: 8px;
  background: var(--seal);
}
figure.plate figcaption {
  max-width: 36rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.55;
}
figure.plate .plate-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-style: normal;
}

/* Card */
.card {
  background: var(--surface);
  border: 1px solid var(--neutral-300);
  padding: 1.75rem;
  margin: 1.5rem 0;
  position: relative;
}
.card::after {
  content: "";
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 12px;
  height: 12px;
  background: var(--seal);
}
.card .card-eyebrow {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}
.card .card-index {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--seal);
  margin-right: 0.5rem;
}
.card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--ink-strong);
}
.card h3::after {
  content: "";
  display: block;
  width: 6rem;
  height: 1px;
  background: var(--seal);
  margin-top: 0.4rem;
}

/* Callout */
.callout {
  border-left: 4px solid var(--ink);
  background: var(--surface);
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  margin: 1.5rem 0;
  position: relative;
}
.callout .callout-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-strong);
  margin: 0 0 0.5rem;
}
.callout .callout-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--seal);
}
.callout p:last-child { margin-bottom: 0; }
.callout.callout-emphasis {
  border-left-color: var(--ink);
  box-shadow: -8px 8px 0 -7px var(--seal);
}

/* Pull quote */
.pullquote {
  text-align: center;
  margin: 2rem auto;
  max-width: 52ch;
  position: relative;
}
.pullquote .quote-rule {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pullquote .quote-rule .rule {
  width: 12rem;
  height: 1px;
  background: var(--ink);
}
.pullquote .quote-rule .seal {
  width: 8px;
  height: 8px;
  background: var(--seal);
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  line-height: 1.4;
  color: var(--ink-strong);
}
.pullquote .attribution {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-wash-mid);
  margin-top: 1rem;
}

/* Tables */
.scroll-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.scroll-table caption {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-wash-mid);
  text-align: left;
  padding: 0 0 0.5rem;
  caption-side: top;
}
.scroll-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--ink);
  color: var(--ink-strong);
}
.scroll-table tbody td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--neutral-300);
  font-size: 0.95rem;
}
.scroll-table td.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-size: 0.9375rem;
}

/* References list */
.references-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.references-list li {
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  border-bottom: 1px solid var(--neutral-300);
  scroll-margin-top: 5rem;
}
.references-list li::before {
  content: "[" attr(data-num) "]";
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink-wash-mid);
}
.references-list li::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--seal);
}
.references-list .ref-meta {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--ink-wash-mid);
  margin-top: 0.35rem;
  word-break: break-all;
}
.references-list em { font-style: italic; }

/* FAQ list */
.faq-list { margin: 1.5rem 0; }
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}
.faq-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--ink-strong);
}
.faq-item p:last-child { margin-bottom: 0; }

/* Contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--neutral-300);
  padding: 1.75rem;
  margin: 1.5rem 0;
  position: relative;
}
.contact-form::after {
  content: "";
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 12px;
  height: 12px;
  background: var(--seal);
}
.contact-form .field {
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-strong);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.625rem 0.75rem;
  background: var(--paper);
  border: 1px solid var(--neutral-300);
  border-radius: 0;
  color: var(--ink);
}
.contact-form textarea { min-height: 8rem; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}

/* Footer */
.site-footer {
  background: var(--paper-alt);
  border-top: 1px solid var(--ink);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.footer-top .rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
}
.footer-top .seal {
  width: 12px;
  height: 12px;
  background: var(--seal);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
}
.footer-col h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-strong);
  margin: 0 0 1rem;
}
.footer-col h4::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--seal);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin: 0 0 0.5rem; }
.footer-col a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 200ms ease-out, color 200ms ease-out;
}
.footer-col a:hover {
  color: var(--seal);
  border-bottom-color: var(--seal);
}
.footer-disclaimer {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--ink-wash-dark);
  margin: 2.5rem 0 1.25rem;
  max-width: 56rem;
}
.footer-rule {
  height: 1px;
  background: var(--ink);
  margin: 1.25rem 0;
}
.footer-colophon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--ink-wash-mid);
  letter-spacing: 0.08em;
}
.footer-colophon span { white-space: nowrap; }
.footer-copyright {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--ink-wash-mid);
  margin-top: 1rem;
  text-align: right;
}

/* Ma column marginal elements */
.ma-section-index {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--seal);
  margin-top: 0.5rem;
  display: none;
}
@media (min-width: 1024px) {
  .ma-section-index { display: block; }
}
.ma-brush {
  display: none;
  margin: 0;
}
.ma-brush img { width: 100%; height: auto; }
@media (min-width: 1024px) {
  .ma-brush { display: block; }
}

/* 404 */
.error-block {
  text-align: center;
  padding: 4rem 0;
}
.error-block h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--ink);
}
.error-block p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--ink-wash-dark);
  max-width: 40ch;
  margin: 0 auto 1.5rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Tippy theme overrides for sumi paper */
.tippy-box[data-theme~='sumi'] {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.25rem 0.25rem 0.5rem;
  position: relative;
  max-width: 380px;
}
.tippy-box[data-theme~='sumi'] .tippy-content { padding: 0.75rem 0.9rem; }
.tippy-box[data-theme~='sumi']::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--seal);
}
.tippy-box[data-theme~='sumi'] .arrow { display: none; }
.tippy-box[data-theme~='sumi'] .ref-meta {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--ink-wash-mid);
  margin-top: 0.35rem;
  word-break: break-all;
}
