:root {
  --ink: #1b2430;
  --muted: #5b6774;
  --paper: #f4f7fb;
  --surface: #ffffff;
  --wash: #eef2f8;
  --line: #d7dee8;
  --green: #2456a6;
  --green-deep: #16345e;
  --mint: #dbe7f7;
  --coral: #d9534f;
  --coral-soft: #fbe0df;
  --mustard: #f0a202;
  --blue: #2456a6;
  --shadow: 0 18px 48px rgba(22, 52, 94, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei",
    sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button,
select,
input {
  border-radius: 8px;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(215, 222, 232, 0.82);
  background: rgba(244, 247, 251, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  font-size: 1.18rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-deep);
}

.header-action,
.primary-button,
.join-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  background: var(--green-deep);
  color: #fff;
  font-weight: 750;
  white-space: nowrap;
}

.header-action:hover,
.primary-button:hover,
.join-form button:hover {
  background: #0f2646;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 74px) clamp(18px, 4vw, 34px) clamp(20px, 4vw, 40px);
}

.intro-copy h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.intro-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-signal {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.brand-signal img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.brand-signal strong {
  display: block;
  font-size: 1.45rem;
}

.brand-signal span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.finder-shell {
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) minmax(260px, 340px);
  gap: 18px;
  max-width: calc(var(--max) + 64px);
  margin: 0 auto;
  padding: 16px clamp(14px, 3vw, 32px) clamp(40px, 6vw, 78px);
}

.filter-panel,
.results-panel,
.detail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(22, 52, 94, 0.08);
}

.filter-panel,
.detail-panel {
  position: sticky;
  top: 84px;
  align-self: start;
}

.filter-panel {
  padding: 18px;
}

.panel-heading h2,
.results-toolbar h2,
.section-heading h2,
.join-copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.field,
.join-form label {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.field span,
.join-form label span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.field input,
.field select,
.toolbar-controls select,
.join-form input,
.join-form select {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.toolbar-controls select:focus,
.join-form input:focus,
.join-form select:focus {
  outline: 3px solid rgba(36, 86, 166, 0.22);
  border-color: var(--green);
}

.segmented {
  display: grid;
  gap: 8px;
}

.segmented button,
.secondary-button,
.chip,
.provider-card button,
.detail-actions a,
.compare-bar button,
.article-list a {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
}

.segmented button {
  padding: 8px 10px;
  text-align: left;
}

.segmented button.active,
.chip.active {
  border-color: var(--green-deep);
  background: var(--mint);
  color: var(--green-deep);
}

.secondary-button {
  width: 100%;
  margin-top: 18px;
  background: var(--wash);
}

.results-panel {
  min-width: 0;
  padding: 18px;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.toolbar-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

#resultCount {
  min-width: 54px;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.city-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0 12px;
}

.provider-list {
  display: grid;
  gap: 12px;
}

.provider-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.provider-card.is-active {
  border-color: var(--green);
  box-shadow: inset 4px 0 0 var(--green);
}

.provider-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.provider-meta,
.provider-tags,
.provider-actions,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.provider-meta {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.provider-tags,
.detail-tags {
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--wash);
  color: #3a4552;
  font-size: 0.84rem;
  font-weight: 700;
}

.tag.important {
  background: var(--coral-soft);
  color: #9b2f2b;
}

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

.provider-actions {
  margin-top: 14px;
}

.provider-card button {
  padding: 0 12px;
}

.provider-score {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #eef3fa;
  color: var(--green-deep);
  font-weight: 850;
  text-align: center;
}

.provider-score span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.detail-panel {
  padding: 18px;
}

.detail-empty {
  color: var(--muted);
}

.detail-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.detail-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.detail-panel h2 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.detail-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.detail-list strong {
  font-size: 0.98rem;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.detail-actions a:first-child {
  border-color: var(--green-deep);
  background: var(--green-deep);
  color: #fff;
}

.content-band {
  padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 34px);
}

.service-band,
.join-band {
  background: #fff;
}

.articles-band {
  background: var(--wash);
}

.source-band {
  background: #fff;
}

.section-heading,
.join-band {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
}

.service-grid,
.article-list,
.pillar-grid,
.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.pillar-grid,
.source-grid {
  margin-bottom: 18px;
}

.service-grid article,
.article-list article,
.pillar-grid article,
.source-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-grid strong,
.article-list h3,
.pillar-grid strong,
.source-grid strong {
  display: block;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.service-grid p,
.article-list p,
.pillar-grid p,
.source-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.article-list span,
.pillar-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 12px;
}

.topic-library {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.topic-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

.topic-toolbar h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: 0;
}

#topicCount {
  color: var(--green-deep);
  font-weight: 850;
  white-space: nowrap;
}

.topic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.topic-filters button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 750;
}

.topic-filters button.active {
  border-color: var(--green-deep);
  background: var(--mint);
  color: var(--green-deep);
}

.article-list article small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.topic-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.join-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 6vw, 88px);
  align-items: start;
}

.join-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 10px 12px;
  border-left: 4px solid var(--mustard);
  background: #fff6e5;
  border-radius: 0 8px 8px 0;
  font-weight: 750;
}

.join-form {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.join-form button {
  width: 100%;
  margin-top: 18px;
}

#formMessage {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green-deep);
  font-weight: 750;
}

.list-note {
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--wash);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.source-note-line {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.empty-state {
  margin: 18px 0 0;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
}

.compare-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.compare-bar[hidden] {
  display: none;
}

.compare-bar button {
  padding: 0 12px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 44px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  max-width: 650px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.domain-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  align-content: flex-start;
}

.domain-list span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== 行動版選單切換 ===== */
.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-deep);
  font-weight: 800;
}

/* ===== 首頁：直接回答 / FAQ 區塊 ===== */
.answer-band {
  background: var(--wash);
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.qa-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
}

.qa-grid h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.qa-grid p {
  margin: 0;
  color: var(--muted);
}

.qa-grid a {
  color: var(--green-deep);
  font-weight: 750;
}

/* ===== 文章頁 ===== */
.article-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 34px) 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--green-deep);
  font-weight: 750;
}

.article-head h1 {
  margin: 6px 0 0;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.16;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hub-lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.answer-box {
  margin: 22px 0 8px;
  padding: 18px 20px;
  border: 1px solid var(--mint);
  border-left: 5px solid var(--green);
  border-radius: 10px;
  background: linear-gradient(180deg, #f3f7fd 0%, #eef4fb 100%);
}

.answer-label {
  margin: 0 0 6px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.answer-box p:last-child {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
}

.article-toc {
  margin: 20px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.toc-title {
  margin: 0 0 8px;
  font-weight: 850;
  color: var(--green-deep);
}

.article-toc ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.article-toc a {
  color: var(--green-deep);
}

.article-toc a:hover {
  text-decoration: underline;
}

.article-section {
  margin-top: 30px;
}

.article-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.3;
  scroll-margin-top: 84px;
}

.article-section p {
  margin: 0 0 14px;
  font-size: 1.04rem;
  line-height: 1.85;
  color: #2c3743;
}

.article-ul {
  margin: 0 0 14px;
  padding-left: 22px;
  display: grid;
  gap: 8px;
  color: #2c3743;
}

.article-ul li {
  line-height: 1.7;
}

.takeaways .check-list li {
  border-left-color: var(--green);
  background: #eef4fb;
}

.article-faq article {
  margin-bottom: 12px;
}

.article-faq h3 {
  margin: 0 0 6px;
  font-size: 1.06rem;
}

.article-disclaimer {
  margin: 32px 0;
  padding: 16px 18px;
  border: 1px dashed var(--mustard);
  border-radius: 10px;
  background: #fff8e9;
}

.article-disclaimer strong {
  display: block;
  margin-bottom: 4px;
  color: #8a5a00;
}

.article-disclaimer p {
  margin: 0;
  color: #6b5a33;
  font-size: 0.94rem;
}

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

.related-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.related-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.related-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
}

.related-card strong {
  line-height: 1.4;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ===== 文章總覽 hub ===== */
.hub-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}

.hub-chips .chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-deep);
  font-weight: 750;
  font-size: 0.9rem;
}

.hub-chips .chip:hover {
  border-color: var(--green);
  background: var(--mint);
}

.hub-cat {
  margin-top: 34px;
  scroll-margin-top: 84px;
}

.hub-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--mint);
}

.hub-cat-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}

.hub-cat-head span {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

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

.hub-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.hub-grid h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.hub-grid h3 a {
  color: var(--green-deep);
}

.hub-grid h3 a:hover {
  text-decoration: underline;
}

.hub-grid p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.read-link {
  color: var(--coral);
  font-weight: 800;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .qa-grid,
  .related-grid,
  .hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .finder-shell {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .detail-panel {
    grid-column: 1 / -1;
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    order: 2;
  }

  .header-action {
    display: none;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 2px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .intro-band,
  .finder-shell,
  .join-band {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

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

@media (max-width: 620px) {
  .header-action {
    flex: 1;
  }

  .intro-band {
    padding-top: 24px;
  }

  .brand-signal {
    grid-template-columns: 82px 1fr;
    padding: 16px;
  }

  .brand-signal img {
    width: 82px;
    height: 82px;
  }

  .results-toolbar,
  .toolbar-controls,
  .provider-card,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .results-toolbar,
  .toolbar-controls,
  .site-footer {
    display: flex;
  }

  .toolbar-controls {
    min-width: 0;
  }

  #resultCount {
    text-align: left;
  }

  .provider-card {
    display: flex;
  }

  .provider-score {
    width: 100%;
    height: 44px;
  }

  .service-grid,
  .article-list,
  .pillar-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .topic-toolbar {
    display: grid;
  }

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

  .compare-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .domain-list {
    justify-content: flex-start;
  }
}
