:root {
  --site-ink: #172238;
  --site-muted: #5f6877;
  --site-navy: #17345b;
  --site-navy-dark: #102743;
  --site-gold: #c18d35;
  --site-gold-soft: #f5ead5;
  --site-paper: #fffdf8;
  --site-bg: #f2f0e9;
  --site-line: #d9d8d2;
  --site-green: #256c58;
  --site-white: #ffffff;
  --site-radius: 18px;
  --site-shadow: 0 22px 64px rgba(21, 34, 51, 0.1);
}

html {
  scroll-behavior: smooth;
}

body.site-home,
body.site-legal {
  margin: 0;
  background: var(--site-bg);
  color: var(--site-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "Noto Sans SC", "PingFang TC", "PingFang SC", "Microsoft JhengHei", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.site-home *,
.site-legal *,
.site-topbar *,
.site-chapter-status *,
.site-correction *,
.site-chapter-pager *,
.site-footer * {
  box-sizing: border-box;
}

.site-home a,
.site-legal a,
.site-topbar a,
.site-chapter-pager a,
.site-footer a,
.site-correction a {
  color: inherit;
}

.site-skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  background: #fff;
  color: #102743;
  font-weight: 800;
  transform: translateY(-150%);
}

.site-skip:focus {
  transform: translateY(0);
}

.site-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-topbar {
  position: relative;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--site-navy-dark);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", sans-serif;
}

.site-topbar-inner {
  display: flex;
  width: min(1160px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.site-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav .site-nav-api {
  padding: 7px 11px;
  border: 1px solid rgba(193, 141, 53, 0.65);
  color: #f2dfbc;
}

.site-nav .site-nav-api:hover,
.site-nav .site-nav-api:focus-visible {
  border-color: var(--site-gold);
  background: rgba(193, 141, 53, 0.12);
}

.site-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--site-navy-dark);
  background-image: radial-gradient(circle at 78% 20%, rgba(193, 141, 53, 0.18) 0 1px, transparent 2px);
  background-size: 24px 24px;
  color: #fff;
}

.site-hero::after {
  position: absolute;
  right: -110px;
  bottom: -210px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.site-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 72px;
  padding: 92px 0 88px;
  align-items: end;
}

.site-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #ead9b8;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.site-kicker::before {
  width: 28px;
  height: 2px;
  background: var(--site-gold);
  content: "";
}

.site-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Songti TC", "Songti SC", "Noto Serif TC", Georgia, serif;
  font-size: clamp(44px, 6.3vw, 78px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.09;
}

.site-hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.site-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease;
}

.site-button:hover {
  transform: translateY(-2px);
}

.site-button-primary {
  border-color: var(--site-gold);
  background: var(--site-gold);
  color: #162844;
}

.site-hero-note {
  padding: 26px;
  border-top: 3px solid var(--site-gold);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.site-hero-note b {
  display: block;
  margin-bottom: 8px;
  font-family: "Songti TC", "Songti SC", Georgia, serif;
  font-size: 22px;
}

.site-hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.site-api-spotlight {
  box-shadow: 0 24px 70px rgba(5, 16, 31, 0.26);
}

.site-api-flag {
  display: block;
  margin-bottom: 16px;
  color: var(--site-gold);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.site-api-hero-features {
  display: grid;
  gap: 7px;
  margin: 19px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.site-api-hero-features li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.site-api-hero-features li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--site-gold);
  content: "";
}

.site-trust {
  border-bottom: 1px solid var(--site-line);
  background: #fff;
}

.site-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.site-trust-item {
  padding: 25px 22px;
  border-right: 1px solid var(--site-line);
}

.site-trust-item:first-child {
  padding-left: 0;
}

.site-trust-item:last-child {
  border-right: 0;
}

.site-trust-item b {
  display: block;
  color: var(--site-navy);
  font-size: 20px;
}

.site-trust-item span {
  color: var(--site-muted);
  font-size: 13px;
}

.site-section {
  padding: 86px 0;
}

.site-section-white {
  background: #fff;
}

.site-section-dark {
  background: var(--site-navy-dark);
  color: #fff;
}

.site-section-head {
  display: flex;
  margin-bottom: 34px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.site-section-head h2,
.site-legal h1 {
  margin: 0;
  color: var(--site-navy);
  font-family: "Songti TC", "Songti SC", "Noto Serif TC", Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.site-section-dark .site-section-head h2 {
  color: #fff;
}

.site-section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--site-muted);
}

.site-section-dark .site-section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.site-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  overflow: hidden;
  background: var(--site-paper);
  box-shadow: var(--site-shadow);
}

.site-path {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--site-line);
  text-decoration: none;
}

.site-path:last-child {
  border-right: 0;
}

.site-path:hover,
.site-path:focus-visible {
  background: #fff;
}

.site-path-index {
  color: var(--site-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.site-path h3 {
  margin: 42px 0 10px;
  color: var(--site-navy);
  font-family: "Songti TC", "Songti SC", Georgia, serif;
  font-size: 27px;
}

.site-path p {
  margin: 0;
  color: var(--site-muted);
}

.site-path span:last-child {
  display: block;
  margin-top: 22px;
  color: var(--site-green);
  font-weight: 800;
}

.site-search-panel {
  display: flex;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
}

.site-search {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
}

.site-search label {
  color: var(--site-navy);
  font-weight: 850;
  white-space: nowrap;
}

.site-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  color: var(--site-ink);
  font: inherit;
}

.site-search input:focus {
  border-color: var(--site-gold);
  outline: 3px solid rgba(193, 141, 53, 0.18);
}

.site-result-count {
  color: var(--site-muted);
  font-size: 14px;
  white-space: nowrap;
}

.site-topic {
  margin-top: 44px;
}

.site-topic[hidden] {
  display: none;
}

.site-topic-head {
  display: flex;
  margin-bottom: 14px;
  align-items: baseline;
  gap: 14px;
}

.site-topic-head h3 {
  margin: 0;
  color: var(--site-navy);
  font-size: 21px;
}

.site-topic-head span {
  color: var(--site-muted);
  font-size: 13px;
}

.site-chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.site-chapter-card {
  display: grid;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  grid-template-rows: auto 1fr auto;
  background: var(--site-paper);
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.site-chapter-card:hover,
.site-chapter-card:focus-visible {
  border-color: var(--site-gold);
  box-shadow: 0 13px 30px rgba(21, 34, 51, 0.08);
  transform: translateY(-3px);
}

.site-chapter-card[hidden] {
  display: none;
}

.site-chapter-number {
  color: var(--site-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.site-chapter-card h4 {
  margin: 14px 0 8px;
  color: var(--site-navy);
  font-family: "Songti TC", "Songti SC", Georgia, serif;
  font-size: 21px;
  line-height: 1.35;
}

.site-chapter-card p {
  margin: 0;
  color: var(--site-muted);
  font-size: 14px;
}

.site-chapter-link {
  margin-top: 20px;
  color: var(--site-green);
  font-size: 13px;
  font-weight: 850;
}

.site-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  background: #fff;
}

.site-city-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  text-align: left;
}

.site-city-table th,
.site-city-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--site-line);
  vertical-align: top;
}

.site-city-table th {
  background: #f7f5ef;
  color: var(--site-navy);
  font-size: 13px;
}

.site-city-table tbody tr:last-child td {
  border-bottom: 0;
}

.site-city-table td:first-child {
  color: var(--site-navy);
  font-weight: 900;
}

.site-table-note {
  margin: 14px 0 0;
  color: var(--site-muted);
  font-size: 13px;
}

.site-business-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.site-business-copy h2 {
  margin: 0;
  font-family: "Songti TC", "Songti SC", Georgia, serif;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.site-business-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-api-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.site-api-item {
  padding: 20px;
  background: var(--site-navy-dark);
}

.site-api-item b {
  display: block;
  color: #fff;
}

.site-api-item span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.site-business-cta {
  display: inline-flex;
  min-height: 50px;
  margin-top: 28px;
  padding: 0 21px;
  border: 1px solid var(--site-gold);
  border-radius: 8px;
  align-items: center;
  background: var(--site-gold);
  color: #102743;
  font-weight: 900;
  text-decoration: none;
}

.site-method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.site-method-grid h2 {
  margin: 0;
  color: var(--site-navy);
  font-family: "Songti TC", "Songti SC", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
}

.site-method-list {
  display: grid;
  gap: 18px;
}

.site-method-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--site-line);
}

.site-method-list b {
  display: block;
  color: var(--site-navy);
}

.site-method-list p {
  margin: 4px 0 0;
  color: var(--site-muted);
}

.site-kicker-dark {
  color: var(--site-gold);
}

.site-api-use-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-top: 1px solid var(--site-line);
}

.site-api-use-grid article {
  min-height: 210px;
  padding: 30px 34px 32px 0;
  border-bottom: 1px solid var(--site-line);
}

.site-api-use-grid article:nth-child(even) {
  padding-right: 0;
  padding-left: 34px;
  border-left: 1px solid var(--site-line);
}

.site-api-use-grid article span {
  color: var(--site-gold);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 900;
}

.site-api-use-grid article h3 {
  margin: 32px 0 8px;
  color: var(--site-navy);
  font-family: "Songti TC", "Songti SC", Georgia, serif;
  font-size: 25px;
}

.site-api-use-grid article p {
  margin: 0;
  color: var(--site-muted);
}

.site-chapter-status {
  display: flex;
  width: min(980px, calc(100% - 40px));
  margin: 22px auto -16px;
  padding: 10px 14px;
  border: 1px solid #d9d8d2;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fffdf8;
  color: #5f6877;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", sans-serif;
  font-size: 13px;
}

.site-chapter-status strong {
  padding: 2px 8px;
  border-radius: 999px;
  background: #e6f2ed;
  color: #256c58;
}

.site-correction,
.site-chapter-pager,
.site-footer {
  width: min(980px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", sans-serif;
}

.site-correction {
  display: flex;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #d9d8d2;
  border-left: 5px solid #c18d35;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fffdf8;
  color: #172238;
}

.site-correction b {
  color: #17345b;
}

.site-correction p {
  margin: 5px 0 0;
  color: #5f6877;
  font-size: 14px;
}

.site-correction a {
  flex: none;
  color: #256c58;
  font-size: 14px;
  font-weight: 850;
}

.site-chapter-pager {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.site-chapter-pager a {
  display: flex;
  min-height: 96px;
  padding: 18px;
  border: 1px solid #d9d8d2;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: #17345b;
  text-decoration: none;
}

.site-chapter-pager a:last-child {
  grid-column: 2;
  text-align: right;
}

.site-chapter-pager span {
  color: #c18d35;
  font-size: 12px;
  font-weight: 900;
}

.site-chapter-pager b {
  margin-top: 3px;
  font-size: 15px;
}

.site-footer {
  display: flex;
  margin-top: 28px;
  margin-bottom: 34px;
  padding: 24px 0;
  border-top: 1px solid #d9d8d2;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #5f6877;
  font-size: 13px;
}

.site-footer > a {
  color: #17345b;
  font-weight: 900;
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer nav a {
  color: #5f6877;
}

.site-home .site-footer {
  width: min(1160px, calc(100% - 40px));
}

.site-legal-main {
  width: min(820px, calc(100% - 40px));
  min-height: calc(100vh - 220px);
  margin: 0 auto;
  padding: 74px 0;
}

.site-legal-meta {
  margin: 14px 0 38px;
  color: var(--site-muted);
}

.site-legal article {
  padding: 34px;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  background: #fff;
}

.site-legal article h2 {
  margin: 30px 0 8px;
  color: var(--site-navy);
  font-size: 21px;
}

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

.site-legal article p,
.site-legal article li {
  color: #485467;
}

.site-empty {
  margin: 24px 0 0;
  padding: 24px;
  border: 1px dashed var(--site-line);
  border-radius: 12px;
  color: var(--site-muted);
  text-align: center;
}

@media (max-width: 900px) {
  body:not(.site-home):not(.site-legal) .page {
    width: calc(100% - 28px) !important;
    margin: 28px auto !important;
  }

  body:not(.site-home):not(.site-legal) .cover,
  body:not(.site-home):not(.site-legal) .content,
  body:not(.site-home):not(.site-legal) .chapter-head,
  body:not(.site-home):not(.site-legal) .chapter {
    padding-right: 28px !important;
    padding-left: 28px !important;
  }

  body:not(.site-home):not(.site-legal) .sell-tag,
  body:not(.site-home):not(.site-legal) .decision-box,
  body:not(.site-home):not(.site-legal) .checklist,
  body:not(.site-home):not(.site-legal) .summary-grid,
  body:not(.site-home):not(.site-legal) .proscons,
  body:not(.site-home):not(.site-legal) .phase-grid,
  body:not(.site-home):not(.site-legal) .module-grid,
  body:not(.site-home):not(.site-legal) .hero-grid,
  body:not(.site-home):not(.site-legal) .layout {
    grid-template-columns: 1fr !important;
  }

  body:not(.site-home):not(.site-legal) .table-wrap,
  body:not(.site-home):not(.site-legal) table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-hero-grid,
  .site-business-grid,
  .site-method-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-trust-grid,
  .site-chapter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-api-use-grid {
    grid-template-columns: 1fr;
  }

  .site-api-use-grid article,
  .site-api-use-grid article:nth-child(even) {
    min-height: 0;
    padding: 25px 0;
    border-left: 0;
  }

  .site-trust-item:nth-child(2) {
    border-right: 0;
  }

  .site-paths {
    grid-template-columns: 1fr;
  }

  .site-path {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--site-line);
  }

  .site-path:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-container,
  .site-topbar-inner,
  .site-home .site-footer,
  .site-correction,
  .site-chapter-pager,
  .site-footer,
  .site-chapter-status,
  .site-legal-main {
    width: min(100% - 28px, 1160px);
  }

  .site-topbar-inner {
    min-height: 62px;
  }

  .site-nav a:not(:last-child) {
    display: none;
  }

  .site-hero-grid {
    padding: 64px 0 60px;
  }

  .site-hero h1 {
    font-size: 42px;
  }

  body:not(.site-home):not(.site-legal) .page {
    width: 100% !important;
    margin: 16px 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body:not(.site-home):not(.site-legal) .cover,
  body:not(.site-home):not(.site-legal) .content,
  body:not(.site-home):not(.site-legal) .chapter-head,
  body:not(.site-home):not(.site-legal) .chapter {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  body:not(.site-home):not(.site-legal) .cover h1,
  body:not(.site-home):not(.site-legal) .chapter-head h1 {
    font-size: 29px !important;
    overflow-wrap: anywhere;
  }

  body:not(.site-home):not(.site-legal) .subtitle,
  body:not(.site-home):not(.site-legal) .lead {
    font-size: 16px !important;
  }

  body:not(.site-home):not(.site-legal) .flow,
  body:not(.site-home):not(.site-legal) .timeline-row,
  body:not(.site-home):not(.site-legal) .metric,
  body:not(.site-home):not(.site-legal) .watermark {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  body:not(.site-home):not(.site-legal) .risk {
    grid-template-columns: 34px minmax(0, 1fr) !important;
  }

  .site-trust-grid,
  .site-chapter-grid {
    grid-template-columns: 1fr;
  }

  .site-trust-item,
  .site-trust-item:first-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--site-line);
  }

  .site-trust-item:last-child {
    border-bottom: 0;
  }

  .site-section {
    padding: 62px 0;
  }

  .site-section-head,
  .site-search-panel,
  .site-correction,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-search {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-chapter-card {
    min-height: 170px;
  }

  .site-chapter-pager {
    grid-template-columns: 1fr;
  }

  .site-chapter-pager a:last-child {
    grid-column: 1;
    text-align: left;
  }

  .site-chapter-status {
    flex-wrap: wrap;
  }

  .site-legal article {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-topbar,
  .site-chapter-status,
  .site-correction,
  .site-chapter-pager,
  .site-footer {
    display: none !important;
  }

  body,
  .page {
    background: #fff !important;
    box-shadow: none !important;
  }
}
