:root {
  color-scheme: light;
  --ink: #12211c;
  --muted: #5f6c66;
  --paper: #f6f4ee;
  --panel: #ffffff;
  --panel-soft: #eef5ef;
  --line: #d6ddd5;
  --jade: #0f6b56;
  --jade-dark: #063f35;
  --leaf: #dfeee4;
  --amber: #94672d;
  --amber-soft: #fff4df;
  --rose: #9e665d;
  --shadow: 0 18px 42px rgba(18, 33, 28, .08);
  --shadow-hover: 0 24px 60px rgba(18, 33, 28, .13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.8;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfbf7 0, var(--paper) 380px),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 238, .94);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.topbar {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--jade-dark);
}

.logo::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(13, 117, 100, .28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 42%, #ffffff 0 16%, transparent 17%),
    linear-gradient(135deg, transparent 49%, rgba(255, 255, 255, .82) 50% 54%, transparent 55%),
    linear-gradient(145deg, var(--jade) 0 45%, #b9d7c4 46% 100%);
  box-shadow: 0 8px 18px rgba(6, 79, 69, .12);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 28px;
  row-gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.nav-links a[aria-current="page"] {
  color: var(--jade-dark);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--jade-dark);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0 78px;
}

.home {
  min-height: calc(100vh - 72px);
  display: grid;
  align-content: center;
  gap: 46px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
}

.home-hero-copy {
  max-width: 640px;
}

.home-hero-copy h1 {
  color: var(--jade-dark);
}

.home-hero-media {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(219, 226, 220, .9);
  background: var(--leaf);
  box-shadow: var(--shadow-hover);
}

.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 79, 69, 0), rgba(6, 79, 69, .18));
  pointer-events: none;
}

.home-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.eyebrow,
.kicker {
  display: block;
  margin: 0 0 10px;
  color: var(--jade);
  font-weight: 900;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 12px 0 0;
}

.home-hero p,
.section-head p,
.entry-card p,
.article-card p,
.topic-card p,
.region-card p,
.clinic-card p,
.muted {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--jade);
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 22px rgba(13, 117, 100, .14);
}

.button.secondary {
  color: var(--jade-dark);
  background: var(--leaf);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--jade-dark);
}

.button.secondary:hover {
  color: #fff;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-topic-links {
  margin-top: 56px;
}

.topic-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.topic-link-grid a {
  display: flex;
  min-height: 142px;
  padding: 20px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 8px;
  background: #fff;
  flex-direction: column;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.topic-link-grid a:hover,
.topic-link-grid a:focus-visible {
  border-color: rgba(13, 117, 100, .32);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.topic-link-grid span {
  margin-bottom: 10px;
  color: var(--rose);
  font-size: .9rem;
  font-weight: 900;
}

.topic-link-grid strong {
  color: var(--jade-dark);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
  line-height: 1.55;
}

.entry-card,
.article-card,
.topic-card,
.region-card,
.clinic-card,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}

.clinical-principles {
  padding: 34px;
  border: 1px solid rgba(15, 107, 86, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(238, 245, 239, .88)),
    var(--panel-soft);
  box-shadow: var(--shadow);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.principle-item {
  padding: 18px;
  border-left: 3px solid var(--jade);
  background: #fff;
}

.principle-item strong {
  display: block;
  color: var(--jade-dark);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--jade-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.topic-card {
  padding: 22px;
}

.entry-card {
  min-height: 210px;
}

.entry-card,
.topic-card,
.library-item,
.region-card,
.clinic-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.entry-card:hover,
.topic-card:hover,
.library-item:hover,
.region-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 117, 100, .28);
  box-shadow: var(--shadow);
  background: #fff;
}

.section-head {
  margin-bottom: 24px;
}

.section-head.compact {
  max-width: 760px;
}

.page-hero,
.category-hero {
  padding: clamp(18px, 3vw, 30px) 0 10px;
}

.page-hero h1,
.category-hero h1 {
  max-width: 880px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.category-page {
  max-width: 980px;
}

.category-hero {
  max-width: 760px;
}

.back-link {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  margin-bottom: 18px;
  color: var(--jade-dark);
  font-weight: 900;
}

.back-link::before {
  content: "‹";
  margin-right: 8px;
  font-size: 1.4rem;
  line-height: 1;
}

.section-block {
  margin-top: 54px;
}

.article-grid,
.topic-grid,
.region-grid,
.clinic-grid {
  display: grid;
  gap: 16px;
}

.article-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.topic-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
}

.topic-card .kicker {
  color: var(--rose);
}

.topic-card p {
  flex: 0;
  margin-top: 14px;
  line-height: 1.65;
}

.card-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  color: var(--jade-dark);
  font-weight: 900;
}

.card-action::after {
  content: "→";
  margin-left: 8px;
  transition: transform .2s ease;
}

.topic-card:hover .card-action::after {
  transform: translateX(3px);
}

.region-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clinic-grid {
  grid-template-columns: 1fr;
}

.article-card.featured {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  padding: 0;
  overflow: hidden;
}

.article-image {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(8, 24, 21, .08), rgba(8, 24, 21, .36)),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=900&q=80") center / cover no-repeat;
}

.article-body {
  padding: 24px;
}

.topic-path,
.county-list {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.county-list a,
.county-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbf9;
}

.county-list a {
  gap: 6px;
  color: var(--jade-dark);
  background: var(--leaf);
  font-weight: 900;
}

.county-list a span {
  padding: 0;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.notice {
  background: var(--amber-soft);
  border-color: #efd8b9;
}

.article-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.article-links a {
  color: var(--jade-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.library-list {
  display: grid;
  gap: 14px;
}

.library-list.refined {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.library-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.library-item p {
  color: var(--muted);
}

.article-page {
  max-width: 920px;
}

.article-hero {
  margin-bottom: 28px;
}

.article-hero h1 {
  max-width: 880px;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.article-meta {
  display: block;
  margin-bottom: 10px;
  color: var(--jade);
  font-weight: 900;
}

.article-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(22px, 4vw, 44px);
}

.article-content h2 {
  margin-top: 42px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content sup a {
  color: var(--jade-dark);
  font-weight: 900;
  text-decoration: none;
}

.category-answer,
.category-faq {
  margin: 24px 0 0;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
}

.category-answer h2,
.category-faq h2 {
  margin-top: 0;
  color: var(--jade-dark);
  font-size: clamp(1.3rem, 2.2vw, 1.72rem);
}

.category-answer p:last-child,
.category-faq p:last-child {
  margin-bottom: 0;
}

.content-basis {
  margin: 32px 0;
  padding: clamp(18px, 2.6vw, 24px);
  border-left: 4px solid var(--jade);
  border-radius: 8px;
  background: rgba(238, 245, 239, .74);
}

.content-basis h2 {
  margin-top: 0;
  color: var(--jade-dark);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.content-basis p:last-child {
  margin-bottom: 0;
}

.answer-snapshot,
.article-faq,
.term-faq {
  margin: 30px 0;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(15, 107, 86, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(238, 245, 239, .88)),
    var(--panel-soft);
}

.answer-snapshot h2,
.article-faq h2,
.term-faq h2 {
  margin-top: 0;
  color: var(--jade-dark);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.answer-snapshot p:last-child,
.article-faq p:last-child,
.term-faq p:last-child {
  margin-bottom: 0;
}

.faq-entry {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 107, 86, .14);
}

.faq-entry:first-of-type {
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}

.faq-entry h3 {
  margin: 0 0 8px;
  color: var(--jade-dark);
  font-size: 1.08rem;
  line-height: 1.5;
}

.reference-list {
  padding-left: 1.3rem;
}

.reference-list li {
  margin: 10px 0;
  word-break: break-word;
}

.reference-list a {
  color: var(--jade-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.citation {
  margin-left: 4px;
  font-size: 0.78em;
}

.citation a {
  color: var(--jade-dark);
  font-weight: 900;
  text-decoration: none;
}

.related-reading {
  margin-top: 44px;
  padding: 24px;
  border: 1px solid rgba(13, 117, 100, 0.18);
  border-radius: 8px;
  background: #fff;
}

.glossary-links {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(13, 117, 100, 0.18);
  border-radius: 8px;
  background: #fff;
}

.glossary-links h2,
.related-reading h2 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.glossary-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.glossary-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(13, 117, 100, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--jade-dark);
  font-weight: 900;
  line-height: 1.4;
}

.glossary-link-list a:hover {
  border-color: rgba(13, 117, 100, 0.42);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.related-grid a {
  display: flex;
  min-height: 132px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.related-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 117, 100, .28);
  box-shadow: var(--shadow);
}

.related-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--rose);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.4;
}

.related-grid strong {
  display: block;
  line-height: 1.55;
  color: var(--jade-dark);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.related-article-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.related-article-list a {
  display: block;
  padding: 14px 16px;
  border-left: 3px solid var(--jade);
  background: var(--panel-soft);
  color: var(--jade-dark);
  font-weight: 900;
  line-height: 1.55;
  text-decoration: none;
}

.related-article-list a:hover {
  background: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.glossary-hero {
  max-width: 820px;
}

.glossary-section {
  max-width: 1080px;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.term-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.term-card dt {
  color: var(--jade-dark);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.4;
}

.term-card dd {
  margin: 12px 0 0;
  color: var(--muted);
}

.term-card h3 {
  color: var(--jade-dark);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.4;
}

.term-card p {
  margin-top: 12px;
  color: var(--muted);
}

.glossary-link-card {
  display: block;
  color: inherit;
}

.glossary-link-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.glossary-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 117, 100, 0.28);
  box-shadow: var(--shadow);
  background: #fff;
}

.site-footer {
  border-top: 1px solid rgba(15, 107, 86, .18);
  background:
    linear-gradient(180deg, #eef5ef 0, #e7efe8 100%);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 30px;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 64px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--jade-dark);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.footer-brand::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 1px solid rgba(15, 107, 86, .26);
  background:
    radial-gradient(circle at 54% 42%, #ffffff 0 16%, transparent 17%),
    linear-gradient(135deg, transparent 49%, rgba(255, 255, 255, .82) 50% 54%, transparent 55%),
    linear-gradient(145deg, var(--jade) 0 45%, #b9d7c4 46% 100%);
}

.footer-about p {
  max-width: 460px;
  color: var(--muted);
}

.footer-note {
  padding-top: 12px;
  border-top: 1px solid rgba(15, 107, 86, .16);
  font-size: .95rem;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--muted);
}

.footer-group strong {
  color: var(--jade-dark);
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.footer-group a {
  width: fit-content;
  color: var(--muted);
  font-weight: 800;
}

.footer-group a:hover {
  color: var(--jade-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-reminder p {
  margin-top: 0;
  color: var(--muted);
  font-size: .94rem;
}

.footer-bottom {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(15, 107, 86, .16);
  color: var(--muted);
  font-size: .9rem;
}

.clinic-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.clinic-card strong {
  color: var(--amber);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 980px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--jade-dark);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.breadcrumb span[aria-current="page"] {
  color: var(--ink);
}

.editorial-hero {
  max-width: 920px;
}

.editorial-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
}

.editorial-card {
  padding: 28px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.editorial-card h2 {
  color: var(--jade-dark);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.editorial-card p {
  color: var(--muted);
}

.about-hero {
  max-width: 920px;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
}

.about-card,
.about-proof {
  padding: 28px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.about-card h2,
.about-proof h2 {
  color: var(--jade-dark);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
}

.about-card p,
.about-proof p {
  color: var(--muted);
}

.about-proof {
  max-width: 1040px;
  margin-top: 18px;
}

.about-proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-proof-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 107, 86, .18);
  border-radius: 999px;
  color: var(--jade-dark);
  background: var(--leaf);
  font-weight: 900;
}

.about-proof-links a:hover {
  background: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 960px;
}

.faq-item {
  padding: 26px 28px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.faq-item h2 {
  color: var(--jade-dark);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.faq-item p {
  color: var(--muted);
}

.question-hero {
  max-width: 940px;
}

.question-summary {
  max-width: 940px;
  margin: -18px auto 34px;
  padding: 22px 26px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
}

.question-summary p {
  margin: 0;
}

.question-group {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 46px;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.question-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.question-card span {
  margin-bottom: 10px;
  color: var(--rose);
  font-size: .86rem;
  font-weight: 900;
}

.question-card h3 {
  margin: 0 0 12px;
  color: var(--jade-dark);
  font-size: 1.16rem;
  line-height: 1.5;
}

.question-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.question-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(15, 107, 86, .22);
  border-radius: 999px;
  background: var(--leaf);
  color: var(--jade-dark);
  font-weight: 900;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.question-source::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
}

.question-source:hover,
.question-source:focus-visible {
  border-color: rgba(13, 117, 100, .42);
  background: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transform: translateY(-1px);
}

.answer-index-hero {
  max-width: 940px;
}

.answer-highlight-list {
  display: grid;
  gap: 16px;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.answer-highlight-card {
  padding: clamp(22px, 3.2vw, 30px);
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.answer-highlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.answer-highlight-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--jade-dark);
  background: var(--leaf);
  font-size: .84rem;
  font-weight: 900;
}

.answer-highlight-card h2 {
  color: var(--jade-dark);
  font-size: clamp(1.22rem, 2.1vw, 1.55rem);
  line-height: 1.5;
}

.answer-highlight-card p {
  color: var(--muted);
}

.answer-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.answer-highlight-reference {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 999px;
  color: var(--jade-dark);
  background: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.answer-highlight-reference:hover,
.answer-highlight-reference:focus-visible {
  border-color: rgba(13, 117, 100, .42);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.answer-highlight-citations {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 107, 86, .12);
  font-size: .95rem;
}

.breadcrumb-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 auto 24px;
  width: min(920px, 100%);
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb-line a {
  color: var(--jade-dark);
}

.breadcrumb-line a:hover,
.breadcrumb-line a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.answer-detail {
  width: min(920px, 100%);
  margin: 0 auto 56px;
}

.answer-detail-hero {
  padding: clamp(20px, 4vw, 34px) 0;
}

.answer-detail-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.25;
}

.answer-detail-card {
  margin: 8px 0 24px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 250, 246, .96), rgba(255, 255, 255, .98));
  box-shadow: var(--shadow);
}

.answer-detail-card p {
  margin: 0;
  color: var(--jade-dark);
  font-size: clamp(1.16rem, 2.1vw, 1.42rem);
  font-weight: 850;
  line-height: 1.85;
}

.answer-detail-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 107, 86, .14);
}

.answer-detail-section h2 {
  color: var(--jade-dark);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.answer-detail-section p {
  color: var(--muted);
}

.answer-detail-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.answer-detail-terms a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 999px;
  color: var(--jade-dark);
  background: #fff;
  font-weight: 900;
}

.answer-detail-terms a:hover,
.answer-detail-terms a:focus-visible {
  border-color: rgba(13, 117, 100, .38);
  background: var(--leaf);
}

.answer-detail-sources {
  margin: 18px 0 0;
  padding-left: 1.4rem;
  color: var(--muted);
}

.answer-detail-sources li + li {
  margin-top: 10px;
}

.answer-detail-sources a {
  color: var(--jade-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.claim-index-hero {
  max-width: 940px;
}

.claim-index-list {
  display: grid;
  gap: 18px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.claim-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(22px, 3.4vw, 32px);
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.claim-card h2 {
  color: var(--jade-dark);
  font-size: clamp(1.24rem, 2.1vw, 1.58rem);
  line-height: 1.5;
}

.claim-card p {
  color: var(--muted);
}

.claim-path {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.claim-path a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 999px;
  color: var(--jade-dark);
  background: #fff;
  font-weight: 900;
}

.claim-path a:hover,
.claim-path a:focus-visible {
  border-color: rgba(13, 117, 100, .38);
  background: var(--leaf);
}

.claim-card-evidence {
  padding-left: 22px;
  border-left: 1px solid rgba(15, 107, 86, .14);
}

.claim-card-evidence strong {
  display: block;
  color: var(--jade-dark);
  font-size: 1.05rem;
}

.claim-card-evidence ol {
  margin: 14px 0 0;
  padding-left: 1.35rem;
  color: var(--muted);
}

.claim-card-evidence li + li {
  margin-top: 10px;
}

.claim-card-evidence a {
  color: var(--jade-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.source-map-hero {
  max-width: 940px;
}

.source-map-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.source-map-type-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 999px;
  color: var(--jade-dark);
  background: #fff;
  font-size: .9rem;
  font-weight: 900;
}

.source-map-list {
  display: grid;
  gap: 18px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.source-map-card {
  padding: clamp(22px, 3.4vw, 32px);
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.source-map-type {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.source-map-card h2 {
  color: var(--jade-dark);
  font-size: clamp(1.2rem, 2.1vw, 1.52rem);
  line-height: 1.5;
}

.source-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 107, 86, .12);
}

.source-map-grid strong {
  display: block;
  color: var(--jade-dark);
}

.source-map-grid ul {
  margin: 12px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.source-map-grid li + li {
  margin-top: 8px;
}

.source-map-grid a {
  color: var(--jade-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.transparency-index-hero {
  max-width: 940px;
}

.transparency-list {
  display: grid;
  gap: 18px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.transparency-card {
  padding: clamp(22px, 3.4vw, 32px);
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.transparency-card h2 {
  color: var(--jade-dark);
  font-size: clamp(1.22rem, 2.1vw, 1.56rem);
  line-height: 1.5;
}

.transparency-card p {
  color: var(--muted);
}

.transparency-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.transparency-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--jade-dark);
  background: var(--leaf);
  font-size: .9rem;
  font-weight: 900;
}

.transparency-card-body {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 107, 86, .12);
}

.transparency-card-body p {
  margin-top: 8px;
}

.transparency-card-body strong {
  color: var(--jade-dark);
}

.topic-map-hero {
  max-width: 940px;
}

.content-index-hero {
  max-width: 940px;
}

.content-index-section {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.content-index-head {
  margin-bottom: 18px;
}

.content-index-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.35;
}

.content-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.content-index-card {
  display: block;
  min-height: 180px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 250, 246, .9), rgba(255, 255, 255, .98));
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
  text-decoration: none;
}

.content-index-card:hover,
.content-index-card:focus-visible {
  border-color: rgba(13, 117, 100, .38);
  box-shadow: 0 14px 34px rgba(25, 62, 49, .08);
  transform: translateY(-1px);
}

.content-index-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--jade-dark);
  font-size: .82rem;
  font-weight: 900;
}

.content-index-card h2 {
  margin: 0 0 10px;
  color: var(--jade-dark);
  font-size: clamp(1.14rem, 1.8vw, 1.42rem);
  line-height: 1.5;
}

.content-index-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.topic-map-list {
  display: grid;
  gap: 20px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.topic-cluster-card {
  padding: clamp(22px, 3.4vw, 32px);
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.topic-cluster-head {
  max-width: 820px;
}

.topic-cluster-head h2 {
  color: var(--jade-dark);
}

.topic-cluster-head p {
  color: var(--muted);
}

.topic-cluster-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.topic-cluster-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--jade-dark);
  background: var(--leaf);
  font-size: .86rem;
  font-weight: 900;
}

.topic-cluster-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .72fr) minmax(260px, .9fr);
  gap: 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 107, 86, .12);
}

.topic-cluster-grid h3 {
  margin-bottom: 12px;
  color: var(--jade-dark);
  font-size: 1.08rem;
}

.topic-link-list,
.topic-question-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-link-list a,
.topic-question-list a,
.topic-cluster-more {
  color: var(--jade-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.topic-link-list p,
.topic-question-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .96rem;
}

.topic-question-list strong {
  display: block;
  color: var(--ink);
  line-height: 1.55;
}

.topic-term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-term-list a,
.topic-term-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 999px;
  color: var(--jade-dark);
  background: var(--panel-soft);
  font-weight: 900;
}

.topic-term-list a:hover {
  border-color: rgba(13, 117, 100, .42);
  background: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.topic-cluster-more {
  display: inline-flex;
  margin-top: 24px;
}

.evidence-hero {
  max-width: 940px;
}

.evidence-list {
  display: grid;
  gap: 16px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.evidence-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 24px;
  padding: clamp(22px, 3.4vw, 32px);
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.evidence-card-main h2 {
  color: var(--jade-dark);
  font-size: clamp(1.22rem, 2.1vw, 1.55rem);
  line-height: 1.5;
}

.evidence-card-main p {
  color: var(--muted);
}

.evidence-card-side {
  padding-left: 22px;
  border-left: 1px solid rgba(15, 107, 86, .14);
}

.evidence-card-side strong {
  display: block;
  margin-bottom: 12px;
  color: var(--jade-dark);
}

.evidence-card-side ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 18px;
}

.evidence-card-side a {
  color: var(--jade-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.reference-hero {
  max-width: 940px;
}

.reference-summary {
  max-width: 940px;
  margin: -18px auto 34px;
  padding: 22px 26px;
  border: 1px solid rgba(15, 107, 86, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
}

.reference-summary p {
  margin: 0;
}

.reference-index-list {
  display: grid;
  gap: 16px;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.reference-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr);
  gap: 20px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(15, 107, 86, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.reference-card span {
  color: var(--rose);
  font-size: .86rem;
  font-weight: 900;
}

.reference-card h2 {
  margin: 8px 0 10px;
  color: var(--jade-dark);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.reference-url {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 800;
}

.reference-used-by {
  padding-left: 20px;
  border-left: 1px solid rgba(15, 107, 86, .14);
}

.reference-used-by strong {
  display: block;
  margin-bottom: 10px;
  color: var(--jade-dark);
}

.reference-used-by ul {
  margin: 0;
  padding-left: 18px;
}

.reference-used-by li + li {
  margin-top: 8px;
}

.reference-used-by a {
  color: var(--jade-dark);
  font-weight: 800;
  line-height: 1.5;
}

.clinic-grid.detailed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-summary {
  max-width: 980px;
  margin: -4px 0 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
}

.area-summary p {
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 900;
}

.area-summary div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-summary a,
.area-summary span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(183, 115, 95, .22);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.area-summary a:hover {
  border-color: rgba(13, 117, 100, .28);
  color: var(--jade-dark);
  background: var(--leaf);
}

.area-summary strong {
  color: var(--jade-dark);
}

.clinic-grid.detailed .clinic-card {
  align-items: flex-start;
}

.clinic-card h3 {
  margin-top: 4px;
}

.clinic-name-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid rgba(13, 117, 100, .2);
  transition: color .18s ease, border-color .18s ease;
}

.clinic-name-link:hover,
.clinic-name-link:focus-visible {
  color: var(--jade-dark);
  border-bottom-color: var(--jade-dark);
}

.clinic-area {
  color: var(--rose);
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .06em;
}

.clinic-card a:not(.clinic-name-link) {
  color: var(--jade-dark);
  font-weight: 900;
}

.clinic-detail-card,
.content-note {
  max-width: 920px;
  margin: 0 0 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.clinic-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.clinic-detail-card h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.clinic-detail-card p,
.content-note p {
  color: var(--muted);
  line-height: 1.9;
}

.clinic-detail-card a {
  color: var(--jade-dark);
  font-weight: 900;
}

.clinic-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}

.clinic-detail-actions a {
  display: inline-flex;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(13, 117, 100, .22);
  border-radius: 999px;
  text-decoration: none;
}

.clinic-detail-actions a:hover,
.clinic-detail-actions a:focus-visible {
  background: var(--leaf);
  border-color: rgba(13, 117, 100, .38);
}

.clinic-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex: 0 0 auto;
}

.clinic-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--jade-dark);
  background: var(--leaf);
  font-size: .88rem;
  font-weight: 900;
  white-space: nowrap;
}

.source-note {
  max-width: 980px;
}

@media (max-width: 900px) {
  .entry-grid,
  .topic-link-grid,
  .article-grid,
  .topic-grid,
  .library-list.refined,
  .glossary-grid,
  .region-grid,
  .clinic-grid.detailed,
  .question-list,
  .reference-card,
  .content-index-grid,
  .claim-card,
  .source-map-grid,
  .topic-cluster-grid,
  .evidence-card,
  .article-card.featured,
  .principle-grid,
  .about-layout,
  .editorial-layout,
  .home-hero {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .footer-groups {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    max-width: 780px;
  }

  .home-hero-media {
    min-height: 330px;
  }

  .reference-used-by {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(15, 107, 86, .14);
  }

  .evidence-card-side {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(15, 107, 86, .14);
  }

  .claim-card-evidence {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(15, 107, 86, .14);
  }

  .clinic-detail-card {
    grid-template-columns: 1fr;
  }

  .clinic-detail-actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .topbar {
    width: min(100% - 24px, 1120px);
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    column-gap: 22px;
    row-gap: 8px;
    font-size: 0.98rem;
  }

  .nav-links a {
    min-height: 32px;
  }

  main {
    width: min(100% - 24px, 1120px);
    padding-top: 34px;
  }

  .button {
    width: 100%;
  }

  .logo::before {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .home-hero-media {
    min-height: 260px;
  }

  .clinic-card {
    display: block;
  }

  .clinic-meta {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .footer-inner {
    padding-top: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
