:root {
  color-scheme: light;
  --ink: #182230;
  --muted: #667085;
  --line: #d9e2ef;
  --surface: #ffffff;
  --surface-soft: #f7f9fd;
  --accent: #0f766e;
  --accent-strong: #0b5f59;
  --accent-soft: #dff7f3;
  --blue: #2563eb;
  --blue-soft: #eaf1ff;
  --pink: #be185d;
  --pink-soft: #fde7f1;
  --violet: #6d28d9;
  --violet-soft: #f0e9ff;
  --amber: #b45309;
  --amber-soft: #fff4d7;
  --green: #15803d;
  --green-soft: #e8f8ee;
  --warn: #9a3412;
  --warn-soft: #fff4e6;
  --shadow: 0 16px 38px rgba(24, 34, 48, 0.09);
  --shadow-soft: 0 8px 22px rgba(24, 34, 48, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), transparent 28%),
    linear-gradient(225deg, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbfc 0%, #f9fbff 50%, #f3f6fb 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  gap: 18px;
  width: min(1540px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0;
  transition: grid-template-columns 180ms ease;
}

body.results-collapsed .app-shell {
  grid-template-columns: minmax(0, 1fr) 0;
}

.workspace,
.results {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.results {
  position: sticky;
  top: 20px;
  align-self: start;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #9fbfbb transparent;
  transition: opacity 160ms ease, transform 180ms ease;
}

body.results-collapsed .results {
  pointer-events: none;
  opacity: 0;
  transform: translateX(24px);
}

.results-toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(217, 226, 239, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 10px;
}

.results-toggle {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 30;
  min-height: 42px;
  border: 1px solid var(--accent);
  border-radius: 8px 0 0 8px;
  background: var(--accent);
  color: #fff;
  padding: 0 12px;
  font-weight: 900;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.26);
}

.results-open-toggle {
  display: none;
}

body.results-collapsed .results-open-toggle {
  display: inline-flex;
  align-items: center;
}

.results::-webkit-scrollbar {
  width: 8px;
}

.results::-webkit-scrollbar-track {
  background: transparent;
}

.results::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #9fbfbb;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(217, 226, 239, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.app-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 10px;
  background: linear-gradient(180deg, rgba(247, 251, 252, 0.98), rgba(247, 251, 252, 0.82));
  scrollbar-width: thin;
}

.app-nav a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 8px 13px;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(24, 34, 48, 0.04);
}

.app-nav a:hover,
.app-nav a:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
  outline: none;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.6vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0;
}

.topbar-actions {
  display: flex;
  gap: 8px;
}

.icon-button,
.text-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: 160ms ease;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  font-weight: 800;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tooltip-button {
  position: relative;
}

.tooltip-button::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 40;
  width: max-content;
  max-width: 180px;
  border-radius: 8px;
  background: #182230;
  color: #fff;
  content: attr(data-tooltip);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  padding: 7px 9px;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 140ms ease, transform 140ms ease;
  white-space: nowrap;
}

.tooltip-button::before {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 3px);
  z-index: 40;
  width: 9px;
  height: 9px;
  background: #182230;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px) rotate(45deg);
  transition: opacity 140ms ease, transform 140ms ease;
}

.tooltip-button:hover::after,
.tooltip-button:hover::before,
.tooltip-button:focus-visible::after,
.tooltip-button:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.text-button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 700;
}

.icon-button:hover,
.text-button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.notice {
  border: 1px solid #f6c56f;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--warn-soft), #fffaf0);
  color: var(--warn);
  padding: 11px 14px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.method-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.method-strip span {
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 9px 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.method-strip span:nth-child(2) {
  background: var(--blue-soft);
  color: var(--blue);
}

.method-strip span:nth-child(3) {
  background: var(--violet-soft);
  color: var(--violet);
}

.method-strip span:nth-child(4) {
  background: var(--amber-soft);
  color: var(--amber);
}

.panel {
  border: 1px solid rgba(217, 226, 239, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 16px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin-bottom: 0;
}

#statusText {
  color: var(--muted);
  font-size: 0.86rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.prompt-field {
  grid-column: 1 / -1;
}

.prompt-field textarea {
  min-height: 92px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 40px;
  padding: 0 10px;
}

textarea {
  min-height: 58px;
  padding: 10px 11px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.response-panel {
  overflow: hidden;
}

.response-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.response-header,
.response-row {
  display: grid;
  grid-template-columns: 56px 88px minmax(96px, 0.42fr) minmax(210px, 1.1fr) minmax(82px, 0.36fr) minmax(220px, 0.95fr) minmax(150px, 0.68fr) minmax(148px, 0.68fr) 36px;
  gap: 8px;
  align-items: center;
}

.response-header {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0 8px;
  text-transform: uppercase;
}

.response-row {
  border: 1px solid #dce7f4;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 8px 20px rgba(24, 34, 48, 0.05);
  padding: 9px;
}

.field-cell {
  min-width: 0;
}

.field-label {
  display: none;
}

.reanalyze-button {
  margin-top: 6px;
  min-height: 32px;
  width: 100%;
  border: 1px solid #b7d8d4;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.reanalyze-button:hover,
.reanalyze-button:focus-visible {
  border-color: var(--accent);
  background: #dff3f1;
  outline: none;
}

.stimulus-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  padding: 6px;
  text-align: center;
}

.stimulus-preview a {
  display: block;
  width: 100%;
}

.stimulus-preview img {
  display: block;
  width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.stimulus-preview span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.delete-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #b42318;
  font-size: 1.2rem;
  font-weight: 700;
}

.delete-button:hover {
  border-color: #fecaca;
  background: #fff5f5;
}

.ai-suggestion {
  min-height: 58px;
  border: 1px solid #c7e5e1;
  border-radius: 8px;
  background: linear-gradient(180deg, #f1fbfa, #ffffff);
  padding: 8px 9px;
  line-height: 1.25;
}

.ai-suggestion strong,
.ai-suggestion span,
.ai-suggestion small {
  display: block;
}

.ai-suggestion strong {
  color: var(--accent-strong);
  font-size: 0.86rem;
}

.ai-suggestion .qualitative-suggestion {
  margin-top: 8px;
  color: #5b4b8a;
}

.ai-suggestion span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.ai-suggestion small,
.suggestion-empty {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.tendency-badge,
.quality-badge,
.validation-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.74rem;
  font-weight: 900;
}

.tendency-positive {
  background: #dcfce7;
  color: #166534;
}

.tendency-negative {
  background: #fee2e2;
  color: #991b1b;
}

.tendency-neutral {
  background: #e8edf4;
  color: #475467;
}

.tendency-review {
  background: #fef3c7;
  color: #92400e;
}

.quality-rough {
  background: #ffe4e6;
  color: #9f1239;
}

.quality-polite {
  background: #dbeafe;
  color: #1d4ed8;
}

.quality-adaptive {
  background: #e0f2fe;
  color: #0369a1;
}

.quality-unclear {
  background: #f1f5f9;
  color: #475569;
}

.validation-ok {
  background: #dcfce7;
  color: #166534;
}

.validation-review {
  background: #fef3c7;
  color: #92400e;
}

.validation-warn {
  background: #fee2e2;
  color: #991b1b;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, var(--blue-soft));
  padding: 12px;
}

.metric:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, var(--amber-soft));
}

.metric:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, var(--green-soft));
}

.metric:nth-child(4) {
  background: linear-gradient(180deg, #ffffff, var(--violet-soft));
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 1.85rem;
  line-height: 1;
}

.formula-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.formula-item {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(199, 210, 254, 0.95);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.formula-item span,
.formula-item small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.formula-item strong {
  display: block;
  margin: 4px 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.formula-item small {
  font-size: 0.72rem;
  font-weight: 600;
}

.learning-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, var(--pink-soft), #ffffff);
  padding: 12px;
}

.learning-summary span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.learning-summary strong {
  color: var(--pink);
  font-size: 1.8rem;
  line-height: 1;
}

.score-list,
.domain-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.score-item,
.domain-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.score-name,
.domain-name {
  min-width: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.score-value,
.domain-value {
  font-weight: 800;
}

.bar {
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf4;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--pink));
}

.interpretation {
  line-height: 1.5;
}

.interpretation p {
  margin-bottom: 10px;
}

.interpretation ul {
  margin: 0;
  padding-left: 18px;
}

.interpretation li {
  margin-bottom: 8px;
}

.empty-state {
  color: var(--muted);
}

.print-report {
  display: none;
}

@media (max-width: 1160px) {
  .app-shell {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1120px);
  }

  body.results-collapsed .app-shell {
    grid-template-columns: 1fr;
  }

  .results {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  body.results-collapsed .results {
    pointer-events: auto;
    opacity: 1;
    transform: none;
  }

  .results-toolbar,
  .results-open-toggle {
    display: none !important;
  }

  .score-summary,
  .learning-panel,
  .interpretation {
    grid-column: 1 / -1;
  }

}

@media (max-width: 980px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .response-header,
  .response-row {
    grid-template-columns: 64px minmax(96px, 0.42fr) minmax(96px, 0.42fr) minmax(190px, 1fr) minmax(82px, 0.38fr);
    align-items: stretch;
  }

  .response-header span:nth-child(6),
  .response-header span:nth-child(7),
  .response-header span:nth-child(8),
  .response-header span:nth-child(9) {
    display: none;
  }

  .response-row .field-cell:nth-child(6),
  .response-row .field-cell:nth-child(7),
  .response-row .field-cell:nth-child(8) {
    grid-column: span 1;
  }

  .response-row .field-cell:nth-child(6) {
    grid-column: span 2;
  }

  .response-row .delete-button {
    grid-column: 5;
    justify-self: end;
  }

}

@media (max-width: 760px) {
  .app-shell {
    width: min(100% - 20px, 1480px);
    padding: 14px 0;
  }

  .topbar,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    gap: 12px;
    padding: 12px;
  }

  .topbar-actions {
    width: 100%;
  }

  .icon-button {
    flex: 1;
  }

  .form-grid,
  .metric-grid,
  .formula-summary,
  .results {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 13px;
  }

  .notice {
    font-size: 0.86rem;
  }

  .method-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .response-header {
    display: none;
  }

  .response-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .field-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .field-label {
    display: block;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .response-row .delete-button {
    grid-column: auto;
  }

  .stimulus-preview {
    align-items: flex-start;
    min-height: 120px;
  }

  .stimulus-preview img {
    max-height: 180px;
  }

  .delete-button {
    justify-self: end;
  }

  textarea {
    min-height: 88px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
    line-height: 1;
  }

  .app-shell {
    width: min(100% - 14px, 1480px);
    padding: 10px 0 16px;
  }

  .app-nav {
    margin: 0 -7px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .method-strip {
    grid-template-columns: 1fr;
  }

  .notice,
  .method-strip span,
  .app-nav a {
    font-size: 0.8rem;
  }

  .icon-button {
    height: 40px;
  }

  input,
  select {
    height: 38px;
  }

  .metric {
    min-height: 74px;
  }

  .metric strong {
    font-size: 1.7rem;
  }
}

@media print {
  @page {
    size: A4;
    margin: 14mm;
  }

  * {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body {
    background: #fff;
    color: #17202a;
  }

  body > :not(.print-report) {
    display: none !important;
  }

  .print-report {
    display: block;
  }

  .print-sheet {
    min-height: calc(297mm - 28mm);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 10.5pt;
    line-height: 1.48;
  }

  .print-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f766e 0%, #2563eb 55%, #7c3aed 100%);
  }

  .print-eyebrow {
    margin: 0 0 4px;
    font-size: 8.5pt;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
  }

  .print-header h1 {
    margin: 0;
    font-size: 20pt;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .print-badge {
    flex: 0 0 auto;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    font-size: 8.5pt;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.18);
  }

  .print-card {
    border: 1px solid #d8e3ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: none;
    break-inside: avoid;
  }

  .print-card h2 {
    margin: 0;
    padding: 12px 16px;
    border-bottom: 1px solid #e5edf5;
    color: #0f3d4a;
    font-size: 13pt;
    letter-spacing: 0;
  }

  .print-user-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    background: #f8fbff;
    border-radius: 0 0 12px 12px;
  }

  .print-user-item {
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #e1eaf3;
    border-radius: 10px;
    background: #ffffff;
  }

  .print-user-item span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 8.5pt;
    font-weight: 700;
  }

  .print-user-item strong {
    display: block;
    color: #111827;
    font-size: 10.5pt;
    overflow-wrap: anywhere;
  }

  .print-formula-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    background: #fbfdff;
    border-radius: 0 0 12px 12px;
  }

  .print-formula-item {
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid #dbe5ff;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff, #eef2ff);
  }

  .print-formula-item span,
  .print-formula-item small {
    display: block;
    color: #64748b;
    font-size: 8pt;
    font-weight: 800;
  }

  .print-formula-item strong {
    display: block;
    margin: 3px 0;
    color: #111827;
    font-size: 11pt;
    overflow-wrap: anywhere;
  }

  .print-formula-item small {
    font-size: 7.5pt;
    font-weight: 650;
  }

  .print-interpretation-card {
    break-inside: auto;
  }

  .print-interpretation-text {
    padding: 4px 16px 12px;
    column-count: 2;
    column-gap: 18px;
  }

  .print-interpretation-text p {
    margin: 10px 0;
    break-inside: avoid;
    orphans: 3;
    widows: 3;
  }

  .print-interpretation-text p:first-child {
    padding: 10px 12px;
    border-left: 4px solid #0f766e;
    border-radius: 8px;
    background: #ecfdf5;
    font-weight: 650;
  }

  .print-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #d8e3ef;
    color: #64748b;
    font-size: 8.5pt;
  }
}
