/* Ethicon AI report theme aligned with the public reports site */

:root {
  --page-bg: #08111a;
  --page-bg-deep: #050b11;
  --panel: rgba(17, 26, 37, 0.92);
  --panel-strong: rgba(22, 35, 49, 0.96);
  --panel-soft: rgba(10, 18, 28, 0.6);
  --border: rgba(100, 129, 156, 0.28);
  --border-strong: rgba(129, 162, 194, 0.42);
  --text-strong: #f6f1e8;
  --text: #d7e2ef;
  --muted: #9db0c5;
  --accent-amber: #d19a45;
  --accent-blue: #8fbce8;
  --accent-blue-soft: rgba(143, 188, 232, 0.14);
  --success: #55a56d;
}

.root-dark,
html,
body {
  min-height: 100%;
  background-color: var(--page-bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-image:
    radial-gradient(circle at top left, rgba(143, 188, 232, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(209, 154, 69, 0.12), transparent 30%),
    linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg-deep) 100%);
  background-attachment: fixed;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
  color: #d2e7ff;
}

.App.report-app {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 36px;
  background-color: transparent;
  color: var(--text);
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, rgba(20, 31, 43, 0.94), rgba(13, 22, 31, 0.9));
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.top-nav__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-greeting {
  font-weight: 700;
  color: var(--text-strong);
}

.nav-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  background: rgba(14, 26, 38, 0.8);
  color: #dcecff;
  text-decoration: none;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.nav-link:hover {
  background: rgba(34, 57, 82, 0.9);
  border-color: rgba(156, 196, 235, 0.66);
  transform: translateY(-1px);
}

.hero-splash {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  gap: 18px;
  padding: 28px;
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(209, 154, 69, 0.18), transparent 34%),
    radial-gradient(circle at left center, rgba(143, 188, 232, 0.16), transparent 38%),
    linear-gradient(140deg, rgba(17, 28, 40, 0.98), rgba(8, 13, 20, 0.98));
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.hero-splash::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 45%;
  height: 240px;
  background: radial-gradient(circle, rgba(209, 154, 69, 0.12), transparent 68%);
  pointer-events: none;
}

.hero-splash--compact {
  padding: 24px;
}

.hero-splash__main,
.hero-splash__panel {
  position: relative;
  z-index: 1;
}

.hero-eyebrow,
.panel-kicker,
.section-kicker,
.info-card__eyebrow,
.test-card__eyebrow {
  margin: 0 0 8px;
  color: var(--accent-amber);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title,
.panel-title,
.info-card__title,
.test-card__title,
.form-card h2,
.form-card .card-title {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
}

.hero-title {
  margin: 0 0 12px;
  max-width: 14ch;
  color: var(--text-strong);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.hero-lead {
  margin: 0 0 18px;
  max-width: 64ch;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-link,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.hero-link {
  border: 1px solid var(--border-strong);
  font-weight: 600;
}

.hero-link:hover,
.card-link:hover {
  transform: translateY(-1px);
}

.hero-link--primary {
  background: var(--accent-amber);
  border-color: rgba(245, 211, 165, 0.48);
  color: #22170c;
}

.hero-link--secondary {
  background: rgba(11, 20, 31, 0.52);
  color: var(--text-strong);
}

.hero-link--secondary:hover,
.card-link:hover {
  background: rgba(36, 58, 83, 0.9);
  border-color: rgba(156, 196, 235, 0.66);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(143, 188, 232, 0.28);
  background: rgba(10, 18, 28, 0.54);
  color: var(--text);
  font-size: 0.82rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(10, 17, 25, 0.68);
  border: 1px solid rgba(143, 188, 232, 0.16);
}

.hero-stat__value {
  color: var(--text-strong);
  font-size: 1.28rem;
  font-weight: 700;
}

.hero-stat__label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-splash__panel {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(143, 188, 232, 0.18);
  background: rgba(9, 16, 24, 0.58);
}

.panel-title {
  margin: 0 0 14px;
  color: var(--text-strong);
  font-size: 1.36rem;
  line-height: 1.2;
}

.hero-steps {
  display: grid;
  gap: 12px;
}

.hero-step {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.hero-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(209, 154, 69, 0.18);
  border: 1px solid rgba(209, 154, 69, 0.34);
  color: var(--accent-amber);
  font-weight: 700;
}

.hero-step p {
  margin: 0;
  color: var(--text);
  line-height: 1.54;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.info-card,
.form-card,
.test-card {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.info-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(19, 30, 43, 0.96), rgba(14, 22, 32, 0.96));
  border: 1px solid var(--border);
}

.info-card__title {
  margin: 0 0 10px;
  color: var(--text-strong);
  font-size: 1.16rem;
}

.info-card__body {
  margin: 0;
  color: var(--text);
  line-height: 1.56;
}

.info-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(143, 188, 232, 0.24);
  background: rgba(9, 18, 28, 0.65);
  color: var(--text-strong);
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.info-card__link:hover {
  background: rgba(36, 58, 83, 0.9);
  border-color: rgba(156, 196, 235, 0.66);
  transform: translateY(-1px);
}

.form-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
  color: #e8edff;
}

.form-card h2,
.form-card .card-title {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: 1.52rem;
}

.form-card h3 {
  margin: 18px 0 10px;
  color: var(--text-strong);
  font-size: 1rem;
}

.page-guide .guide-text,
.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 16px;
}

.section-copy {
  max-width: 62ch;
}

.prose-card {
  padding: 22px;
}

.marketing-prose {
  color: var(--text);
}

.marketing-prose > :first-child {
  margin-top: 0;
}

.marketing-prose > :last-child {
  margin-bottom: 0;
}

.marketing-prose h1,
.marketing-prose h2,
.marketing-prose h3,
.marketing-prose h4 {
  color: var(--text-strong);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
}

.marketing-prose h2 {
  font-size: 1.52rem;
}

.marketing-prose h3 {
  font-size: 1.08rem;
}

.marketing-prose p,
.marketing-prose ul,
.marketing-prose ol,
.marketing-prose blockquote,
.marketing-prose pre {
  margin: 0 0 14px;
  line-height: 1.65;
}

.marketing-prose ul,
.marketing-prose ol {
  padding-left: 22px;
}

.marketing-prose li {
  margin-bottom: 8px;
}

.marketing-prose a {
  color: var(--accent-blue);
}

.marketing-prose strong {
  color: var(--text-strong);
}

.marketing-prose blockquote {
  padding: 14px 16px;
  border-left: 3px solid rgba(209, 154, 69, 0.6);
  background: rgba(8, 15, 23, 0.52);
  border-radius: 0 12px 12px 0;
  color: var(--text-strong);
}

.marketing-prose pre {
  overflow-x: auto;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(143, 188, 232, 0.18);
  background: rgba(8, 14, 22, 0.72);
}

.report-meta p,
.model-card p {
  margin: 0 0 8px;
}

.meta-label {
  color: var(--muted);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 14px;
  margin-bottom: 12px;
}

.score-snapshot__grid,
.model-summary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.score-snapshot__block,
.model-summary__block {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(128, 161, 194, 0.16);
  background: rgba(8, 14, 22, 0.42);
}

.score-snapshot__list,
.score-snapshot__rules,
.model-summary__points {
  margin: 0;
  padding-left: 18px;
}

.score-snapshot__item,
.score-snapshot__rule,
.model-summary__points li {
  margin-bottom: 10px;
  line-height: 1.45;
}

.score-snapshot__item:last-child,
.score-snapshot__rule:last-child,
.model-summary__points li:last-child {
  margin-bottom: 0;
}

.score-snapshot__code {
  display: inline-block;
  min-width: 18px;
  margin-right: 8px;
  color: var(--accent-blue);
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

.score-snapshot__label,
.score-snapshot__rule-label {
  color: var(--text-strong);
  font-weight: 700;
  margin-right: 8px;
}

.score-snapshot__desc,
.score-snapshot__rule-text,
.score-snapshot__note,
.model-summary__assessment,
.model-summary__text {
  color: var(--text);
  line-height: 1.55;
}

.score-snapshot__note {
  margin: 12px 0 0;
  color: var(--muted);
}

.model-summary {
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(128, 161, 194, 0.16);
  background:
    radial-gradient(circle at top right, rgba(209, 154, 69, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(12, 20, 30, 0.9), rgba(8, 15, 24, 0.9));
}

.model-summary__header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.summary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-badge--good {
  background: rgba(85, 165, 109, 0.16);
  border: 1px solid rgba(85, 165, 109, 0.44);
  color: #b7f0c6;
}

.summary-badge--borderline {
  background: rgba(209, 154, 69, 0.14);
  border: 1px solid rgba(209, 154, 69, 0.44);
  color: #f4d49b;
}

.summary-badge--bad {
  background: rgba(159, 18, 57, 0.18);
  border: 1px solid rgba(244, 114, 182, 0.38);
  color: #fecdd3;
}

.summary-badge--unknown {
  background: rgba(143, 188, 232, 0.14);
  border: 1px solid rgba(143, 188, 232, 0.32);
  color: #d6e9ff;
}

.model-summary__assessment,
.model-summary__text {
  margin: 0 0 10px;
}

.model-summary__writer {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.model-summary__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(143, 188, 232, 0.24);
  background: rgba(10, 18, 28, 0.54);
  color: var(--text);
  font-size: 0.82rem;
}

.summary-chip strong {
  color: var(--text-strong);
}

.key-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.key-collapse summary {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.key-collapse[open] summary {
  margin-bottom: 10px;
}

.key-block h3 {
  margin: 0 0 8px;
  color: #dbeafe;
  font-size: 1rem;
}

.key-list {
  margin: 0;
  padding-left: 18px;
}

.key-list li {
  margin-bottom: 8px;
}

.key-code {
  display: inline-block;
  min-width: 110px;
  margin-right: 8px;
  color: var(--accent-blue);
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

.key-desc {
  color: var(--text);
}

.test-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.test-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(20, 32, 45, 0.98), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(128, 161, 194, 0.18);
}

.test-card__title {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.22rem;
}

.test-card__body {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.test-card__prompt {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(143, 188, 232, 0.22);
  background: var(--accent-blue-soft);
  color: var(--text-strong);
  line-height: 1.46;
  font-weight: 500;
}

.test-card__meta {
  display: grid;
  gap: 8px;
  margin: 0;
}

.test-card__meta div {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(128, 161, 194, 0.14);
  background: rgba(8, 14, 22, 0.52);
}

.test-card__meta dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.test-card__meta dd {
  margin: 0;
  color: var(--text-strong);
  line-height: 1.34;
}

.test-card__signal {
  margin: 0;
  color: var(--text);
  line-height: 1.48;
}

.test-card__signal span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-blue);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-link {
  margin-top: auto;
  border: 1px solid rgba(143, 188, 232, 0.24);
  background: rgba(9, 18, 28, 0.65);
  color: var(--text-strong);
}

.table-shell {
  overflow-x: auto;
  border-radius: 12px;
}

.table-shell table {
  min-width: 760px;
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 10px;
  table-layout: fixed;
}

th,
td {
  border: 1px solid rgba(128, 161, 194, 0.16);
  padding: 9px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(21, 33, 45, 0.98);
  color: #e8f0ff;
}

.th-label {
  border-bottom: 1px dotted rgba(143, 188, 232, 0.82);
}

.th-help {
  display: inline-block;
  margin-left: 6px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(143, 188, 232, 0.44);
  color: var(--accent-blue);
  font-size: 11px;
  vertical-align: middle;
}

td {
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.candidate-cell {
  max-width: 520px;
}

.advisory-cell {
  min-width: 360px;
  max-width: 640px;
}

.advisory-body {
  white-space: normal;
  font-size: 13px;
  line-height: 1.4;
  color: #d7e4ff;
}

.advisory-body p {
  margin: 0 0 6px;
}

.advisory-body p:last-child,
.tests-signals p:last-child {
  margin-bottom: 0;
}

.advisory-label {
  color: var(--accent-blue);
  font-weight: 600;
  margin-right: 4px;
}

.table-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.tests-signals p {
  margin: 0 0 6px;
  line-height: 1.3;
}

.scripture-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.candidate-full {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.35;
  color: #d7e4ff;
}

.anchor-cell {
  min-width: 220px;
}

.anchor-ref-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.anchor-fetch {
  border: 1px solid rgba(143, 188, 232, 0.34);
  background: rgba(16, 38, 59, 0.84);
  color: #d6e9ff;
  border-radius: 8px;
  padding: 5px 8px;
  text-align: left;
  cursor: pointer;
  font-size: 0.86rem;
}

.anchor-fetch:hover {
  background: rgba(31, 68, 103, 0.96);
  border-color: rgba(156, 196, 235, 0.7);
}

body.anchor-modal-open {
  overflow: hidden;
}

.anchor-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.anchor-modal[hidden] {
  display: none;
}

.anchor-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.78);
  backdrop-filter: blur(2px);
}

.anchor-modal-card {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100vw - 28px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(128, 161, 194, 0.28);
  background: #111d2b;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.anchor-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.anchor-modal-title {
  margin: 0;
  font-size: 0.96rem;
  color: #d6e9ff;
}

.anchor-modal-close {
  border: 1px solid rgba(143, 188, 232, 0.34);
  background: rgba(16, 38, 59, 0.84);
  color: #d6e9ff;
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 0.84rem;
}

.anchor-modal-close:hover {
  background: rgba(31, 68, 103, 0.96);
  border-color: rgba(156, 196, 235, 0.7);
}

.anchor-modal-status {
  color: var(--accent-blue);
  font-size: 0.84rem;
  margin-bottom: 4px;
}

.anchor-modal-meta {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.anchor-modal-content {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.36;
  font-size: 0.86rem;
  color: #d7e4ff;
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

.bar-wrap {
  height: 9px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
  max-width: 280px;
}

.bar {
  height: 100%;
  border-radius: 999px;
}

.score-na {
  color: #6c757d;
  font-style: italic;
}

.build-tag {
  margin-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #6c757d;
}

@media (max-width: 920px) {
  .hero-splash {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: none;
  }

  .section-heading {
    align-items: start;
  }
}

@media (max-width: 700px) {
  .App.report-app {
    padding: 14px;
  }

  .meta-grid,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-splash,
  .hero-splash--compact {
    padding: 20px;
  }

  .top-nav,
  .form-card {
    padding: 14px;
  }

  .table-shell table {
    min-width: 680px;
  }

  .anchor-modal-card {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    padding: 10px;
  }
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .nav-links {
    width: 100%;
  }

  .hero-link,
  .nav-link {
    width: 100%;
    justify-content: center;
  }
}
