:root {
  --xmdsite-accent: #007acf;
  --xmdsite-accent-hover: #006ab4;
  --xmdsite-accent-soft: #eaf5ff;
  --xmdsite-bg: #f5f9ff;
  --xmdsite-border: rgba(0, 122, 207, 0.16);
  --xmdsite-border-strong: rgba(0, 122, 207, 0.3);
  --xmdsite-ink: #1d2b36;
  --xmdsite-muted: rgba(29, 43, 54, 0.68);
  --xmdsite-soft: rgba(29, 43, 54, 0.48);
  --xmdsite-surface: #ffffff;
  --xmdsite-surface-soft: #f1f7fd;
  --xmdsite-footer: #007acf;
  --xmdsite-shadow: 0 10px 28px rgba(0, 86, 146, 0.08);
  --xmdsite-shadow-hover: 0 18px 38px rgba(0, 86, 146, 0.14);
  --xmdsite-radius: 4px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--xmdsite-bg) 48%, #ffffff 100%);
  color: var(--xmdsite-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.xmdsite-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.xmdsite-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 122, 207, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(0, 86, 146, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
}

.xmdsite-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 10px 0;
}

.xmdsite-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--xmdsite-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.xmdsite-brand-logo {
  flex: 0 0 auto;
  width: auto;
  max-width: 168px;
  height: 42px;
  object-fit: contain;
}

.xmdsite-brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xmdsite-info-bar {
  position: relative;
  z-index: 20;
  overflow: hidden;
  background: var(--xmdsite-accent);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.xmdsite-info-bar::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 16% 50%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px), linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 34%, rgba(255, 255, 255, 0.08));
  background-size: 24px 24px, 100% 100%;
  content: "";
  opacity: 0.75;
}

.xmdsite-container.xmdsite-info-list {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.xmdsite-info-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 28px;
  min-height: 50px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.xmdsite-info-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
}

.xmdsite-info-item + .xmdsite-info-item {
  padding-left: 22px;
}

.xmdsite-info-item + .xmdsite-info-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  transform: translateY(-50%);
}

.xmdsite-info-label {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.xmdsite-info-value {
  min-width: 0;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.xmdsite-phone-link {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.xmdsite-phone-link:hover,
.xmdsite-phone-link:focus-visible {
  color: #ffffff;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.xmdsite-info-phone {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 760;
}

.xmdsite-info-phone:hover,
.xmdsite-info-phone:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.xmdsite-info-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
}

.xmdsite-info-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.xmdsite-nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 122, 207, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--xmdsite-accent);
  box-shadow: 0 8px 20px rgba(0, 86, 146, 0.08);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.xmdsite-nav-toggle:hover,
.xmdsite-nav-toggle:focus-visible {
  border-color: var(--xmdsite-border-strong);
  background: var(--xmdsite-accent-soft);
  color: var(--xmdsite-accent-hover);
  outline: none;
  transform: translateY(-1px);
}

.xmdsite-nav-toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

.xmdsite-nav-toggle-icon::before,
.xmdsite-nav-toggle-icon::after,
.xmdsite-nav-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: opacity 180ms ease, transform 180ms ease;
}

.xmdsite-nav-toggle-icon::before {
  top: 0;
}

.xmdsite-nav-toggle-line {
  top: 5px;
}

.xmdsite-nav-toggle-icon::after {
  bottom: 0;
}

.xmdsite-header.is-nav-open .xmdsite-nav-toggle-icon::before {
  transform: translateY(5px) rotate(45deg);
}

.xmdsite-header.is-nav-open .xmdsite-nav-toggle-line {
  opacity: 0;
}

.xmdsite-header.is-nav-open .xmdsite-nav-toggle-icon::after {
  transform: translateY(-5px) rotate(-45deg);
}

body.xmdsite-home-page .xmdsite-nav-list,
body.xmdsite-home-page .xmdsite-nav-sublist,
body.xmdsite-home-page .xmdsite-footer-list,
body.xmdsite-home-page .xmdsite-footer-sublist,
body.xmdsite-home-page .xmdsite-item-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xmdsite-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.xmdsite-nav-item {
  position: relative;
}

.xmdsite-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 15px;
  color: rgba(29, 43, 54, 0.74);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.xmdsite-nav-link::after {
  position: absolute;
  right: 50%;
  bottom: 8px;
  left: auto;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--xmdsite-accent);
  content: "";
  opacity: 0;
  transform: translateX(50%) scaleX(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.xmdsite-nav-link:hover,
.xmdsite-nav-link:focus-visible {
  border-color: rgba(0, 122, 207, 0.18);
  background: rgba(234, 245, 255, 0.82);
  box-shadow: 0 8px 22px rgba(0, 86, 146, 0.08);
  color: var(--xmdsite-accent-hover);
  outline: none;
  transform: translateY(-1px);
}

.xmdsite-nav-link.is-active,
.xmdsite-nav-link[aria-current="page"] {
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--xmdsite-accent-hover);
}

.xmdsite-nav-link:hover::after,
.xmdsite-nav-link:focus-visible::after,
.xmdsite-nav-link.is-active::after,
.xmdsite-nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: translateX(50%) scaleX(1);
}

.xmdsite-nav-sublist {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 198px;
  padding: 10px;
  border: 1px solid var(--xmdsite-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(0, 86, 146, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.xmdsite-nav-item:hover .xmdsite-nav-sublist,
.xmdsite-nav-item:focus-within .xmdsite-nav-sublist {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.xmdsite-home-page .xmdsite-hero {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-bottom: 1px solid var(--xmdsite-border);
  background: radial-gradient(circle at 82% 8%, rgba(0, 122, 207, 0.13), transparent 34%), linear-gradient(135deg, #ffffff 0%, #f4f9ff 58%, #ecf6ff 100%);
}

body.xmdsite-home-page .xmdsite-hero::before {
  position: absolute;
  inset: auto -80px -150px auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(0, 122, 207, 0.08);
  content: "";
  pointer-events: none;
}

body.xmdsite-home-page .xmdsite-hero-has-media {
  min-height: 0;
  border-bottom: none;
  background: #f7f8fb;
}

body.xmdsite-home-page .xmdsite-hero-has-media::before {
  display: none;
}

body.xmdsite-home-page .xmdsite-hero-media,
body.xmdsite-list-page .xmdsite-hero-media {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: #111827;
}

body.xmdsite-home-page .xmdsite-hero-image-list,
body.xmdsite-home-page .xmdsite-hero-image-item,
body.xmdsite-home-page .xmdsite-hero-image-link,
body.xmdsite-list-page .xmdsite-hero-image-list,
body.xmdsite-list-page .xmdsite-hero-image-item,
body.xmdsite-list-page .xmdsite-hero-image-link {
  display: block;
  width: 100%;
}

body.xmdsite-home-page .xmdsite-hero-image-list,
body.xmdsite-list-page .xmdsite-hero-image-list {
  --swiper-pagination-bottom: 18px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-border-radius: 999px;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-bullet-inactive-color: rgba(17, 24, 39, 0.48);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 24px;
  --swiper-pagination-color: var(--xmdsite-accent);
  cursor: grab;
}

body.xmdsite-home-page .xmdsite-hero-image-list:not(:defined),
body.xmdsite-list-page .xmdsite-hero-image-list:not(:defined) {
  overflow: hidden;
}

body.xmdsite-home-page .xmdsite-hero-image-list:not(:defined) .xmdsite-hero-slide:not(:first-child),
body.xmdsite-list-page .xmdsite-hero-image-list:not(:defined) .xmdsite-hero-slide:not(:first-child) {
  display: none;
}

body.xmdsite-home-page .xmdsite-hero-image-list:active,
body.xmdsite-list-page .xmdsite-hero-image-list:active {
  cursor: grabbing;
}

body.xmdsite-home-page .xmdsite-hero-slide,
body.xmdsite-list-page .xmdsite-hero-slide {
  display: block;
  height: auto;
  overflow: hidden;
}

body.xmdsite-home-page .xmdsite-hero-media-content,
body.xmdsite-list-page .xmdsite-hero-media-content {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

body.xmdsite-home-page .xmdsite-hero-image-link,
body.xmdsite-list-page .xmdsite-hero-image-link {
  user-select: none;
  -webkit-user-drag: none;
}

body.xmdsite-home-page .xmdsite-hero-file,
body.xmdsite-list-page .xmdsite-hero-file {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 32px;
  background: linear-gradient(135deg, #f8fbff 0%, #e5f2fb 100%);
  color: var(--xmdsite-ink);
  font-weight: 700;
  text-align: center;
}

body.xmdsite-home-page .xmdsite-platform-banner {
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 122, 207, 0.14);
  background: radial-gradient(circle at 86% 18%, rgba(130, 216, 255, 0.46), transparent 26%), radial-gradient(circle at 8% 82%, rgba(0, 82, 190, 0.38), transparent 32%), linear-gradient(118deg, #0062c8 0%, #007acf 44%, #1b9feb 100%);
  color: #ffffff;
}

body.xmdsite-home-page .xmdsite-platform-banner::before,
body.xmdsite-home-page .xmdsite-platform-banner::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

body.xmdsite-home-page .xmdsite-platform-banner::before {
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 76%);
  opacity: 0.42;
}

body.xmdsite-home-page .xmdsite-platform-banner::after {
  right: -150px;
  top: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 96px rgba(255, 255, 255, 0.045), inset 0 0 0 186px rgba(255, 255, 255, 0.028);
}

body.xmdsite-home-page .xmdsite-platform-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: clamp(22px, 3.4vw, 42px);
  width: min(1180px, calc(100% - 32px));
  min-height: clamp(278px, 25vw, 350px);
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 58px) 0;
}

body.xmdsite-home-page .xmdsite-platform-banner-copy {
  max-width: 690px;
  animation: xmdsite-fade-up 620ms ease both;
}

body.xmdsite-home-page .xmdsite-platform-title {
  display: flex;
  max-width: 660px;
  margin: 0;
  flex-direction: column;
  gap: 4px;
  color: #ffffff;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 16px 36px rgba(0, 42, 117, 0.24);
}

body.xmdsite-home-page .xmdsite-platform-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

body.xmdsite-home-page .xmdsite-platform-text {
  max-width: 660px;
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 4px solid rgba(255, 255, 255, 0.54);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.22vw, 19px);
  font-weight: 590;
  line-height: 1.88;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

body.xmdsite-home-page .xmdsite-platform-text-line {
  display: block;
}

body.xmdsite-home-page .xmdsite-platform-text strong {
  display: inline;
  padding: 0.02em 0.28em 0.08em;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.14);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #ffffff;
  font-weight: 860;
}

body.xmdsite-home-page .xmdsite-platform-tags {
  display: flex;
  max-width: 690px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

body.xmdsite-home-page .xmdsite-platform-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.96);
  font-size: 12.5px;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 18px rgba(0, 48, 126, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.xmdsite-home-page .xmdsite-platform-visual {
  position: relative;
  min-height: 244px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.075)), radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.32), transparent 30%);
  box-shadow: 0 28px 72px rgba(0, 56, 145, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

body.xmdsite-home-page .xmdsite-platform-screen {
  position: absolute;
  inset: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(229, 248, 255, 0.36) 0 42px, transparent 42px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 86px), repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 56px), rgba(255, 255, 255, 0.105);
}

body.xmdsite-home-page .xmdsite-platform-screen::before {
  position: absolute;
  left: 30px;
  top: 18px;
  width: 92px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 124px 0 0 rgba(255, 255, 255, 0.38), 248px 0 0 rgba(255, 255, 255, 0.5);
  content: "";
}

body.xmdsite-home-page .xmdsite-platform-screen::after {
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: 142px;
  height: 74px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(226, 246, 255, 0.76));
  box-shadow: -166px -56px 0 -24px rgba(255, 255, 255, 0.76), -120px 16px 0 -26px rgba(255, 255, 255, 0.48), 0 18px 36px rgba(0, 54, 126, 0.18);
  content: "";
}

body.xmdsite-home-page .xmdsite-platform-flow,
body.xmdsite-home-page .xmdsite-platform-flow::before,
body.xmdsite-home-page .xmdsite-platform-flow::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

body.xmdsite-home-page .xmdsite-platform-flow {
  right: 8%;
  top: 12%;
  width: min(74%, 380px);
  aspect-ratio: 1;
  opacity: 0.55;
}

body.xmdsite-home-page .xmdsite-platform-flow::before {
  left: 12%;
  top: 18%;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(0, 54, 126, 0.16);
}

body.xmdsite-home-page .xmdsite-platform-flow::after {
  right: 8%;
  bottom: 15%;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 28px rgba(0, 54, 126, 0.14);
}

body.xmdsite-home-page .xmdsite-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: inherit;
  padding: 40px 0 34px;
  animation: xmdsite-fade-up 560ms ease both;
}

body.xmdsite-home-page .xmdsite-hero-has-media .xmdsite-hero-content {
  align-content: start;
  min-height: 0;
  padding: 44px 0 56px;
}

body.xmdsite-home-page .xmdsite-page-title,
body.xmdsite-list-page .xmdsite-page-title {
  margin: 0;
  max-width: 820px;
  font-size: 40px;
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

body.xmdsite-home-page .xmdsite-section-description,
body.xmdsite-list-page .xmdsite-section-description {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--xmdsite-muted);
  font-size: 16px;
  line-height: 1.8;
}

body.xmdsite-home-page .xmdsite-section-description > :first-child {
  margin-top: 0;
}

body.xmdsite-home-page .xmdsite-section-description > :last-child {
  margin-bottom: 0;
}

body.xmdsite-home-page .xmdsite-section-description p {
  margin: 0 0 0.7em;
}

body.xmdsite-home-page .xmdsite-section-description a {
  color: var(--xmdsite-accent);
  font-weight: 700;
}

body.xmdsite-home-page .xmdsite-main {
  display: grid;
  gap: 56px;
  padding: 64px 0 88px;
}

body.xmdsite-home-page .xmdsite-section {
  animation: xmdsite-fade-up 560ms ease both;
  animation-delay: 80ms;
}

body.xmdsite-home-page .xmdsite-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--xmdsite-border);
  padding-bottom: 18px;
}

body.xmdsite-home-page .xmdsite-section-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

body.xmdsite-home-page .xmdsite-section-link {
  flex: 0 0 auto;
  color: var(--xmdsite-accent);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

body.xmdsite-home-page .xmdsite-section-link:hover,
body.xmdsite-home-page .xmdsite-section-link:focus-visible {
  color: var(--xmdsite-accent-hover);
  outline: none;
  transform: translateX(2px);
}

body.xmdsite-home-page .xmdsite-item-grid,
body.xmdsite-list-page .xmdsite-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.xmdsite-home-page .xmdsite-item-card {
  height: 100%;
}

body.xmdsite-home-page .xmdsite-item-card-link,
body.xmdsite-list-page .xmdsite-item-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
  border: 1px solid var(--xmdsite-border);
  border-radius: var(--xmdsite-radius);
  background: var(--xmdsite-surface);
  min-height: 192px;
  box-shadow: var(--xmdsite-shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.xmdsite-home-page .xmdsite-item-card-link:hover,
body.xmdsite-home-page .xmdsite-item-card-link:focus-visible,
body.xmdsite-list-page .xmdsite-item-card-link:hover,
body.xmdsite-list-page .xmdsite-item-card-link:focus-visible {
  border-color: rgba(0, 122, 207, 0.34);
  box-shadow: var(--xmdsite-shadow-hover);
  outline: none;
  transform: translateY(-4px);
}

body.xmdsite-home-page .xmdsite-card-body,
body.xmdsite-list-page .xmdsite-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  padding: 22px 24px;
}

body.xmdsite-home-page .xmdsite-card-title,
body.xmdsite-list-page .xmdsite-card-title {
  margin: 0;
  color: rgba(29, 43, 54, 0.82);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.52;
  letter-spacing: -0.005em;
  transition: color 180ms ease;
}

body.xmdsite-home-page .xmdsite-item-card-link:hover .xmdsite-card-title,
body.xmdsite-home-page .xmdsite-item-card-link:focus-visible .xmdsite-card-title,
body.xmdsite-list-page .xmdsite-item-card-link:hover .xmdsite-card-title,
body.xmdsite-list-page .xmdsite-item-card-link:focus-visible .xmdsite-card-title {
  color: var(--xmdsite-accent-hover);
}

body.xmdsite-home-page .xmdsite-card-summary,
body.xmdsite-list-page .xmdsite-card-summary {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--xmdsite-muted);
  font-size: 14px;
  line-height: 1.8;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.xmdsite-home-page .xmdsite-card-time,
body.xmdsite-list-page .xmdsite-card-time {
  align-self: flex-start;
  margin-top: auto;
  color: var(--xmdsite-soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

body.xmdsite-home-page .xmdsite-empty-state,
body.xmdsite-list-page .xmdsite-empty-state {
  border: 1px dashed var(--xmdsite-border-strong);
  border-radius: var(--xmdsite-radius);
  background: rgba(255, 255, 255, 0.74);
  padding: 44px 24px;
  text-align: center;
}

body.xmdsite-home-page .xmdsite-empty-state h2,
body.xmdsite-list-page .xmdsite-empty-state h2 {
  margin: 0;
  font-size: 24px;
}

body.xmdsite-home-page .xmdsite-empty-state p,
body.xmdsite-list-page .xmdsite-empty-state p {
  margin: 12px auto 0;
  max-width: 620px;
  color: var(--xmdsite-muted);
}

.xmdsite-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--xmdsite-footer) 0%, #006ab4 48%, #00558f 100%);
  color: rgba(255, 255, 255, 0.82);
}

.xmdsite-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.xmdsite-footer::after {
  content: "";
  display: none;
}

.xmdsite-footer-main {
  position: relative;
  z-index: 1;
  padding: 32px 0 24px;
}

.xmdsite-footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.7fr) minmax(118px, auto);
  gap: 18px;
  align-items: start;
}

.xmdsite-footer-about,
.xmdsite-footer-nav,
.xmdsite-footer-aside {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
}

.xmdsite-footer-about {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px 20px;
}

.xmdsite-footer-brand {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.32;
}

.xmdsite-footer-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.62;
}

.xmdsite-footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.xmdsite-footer-phone {
  color: #ffffff;
  font-weight: 760;
}

.xmdsite-inline-phone {
  color: var(--xmdsite-accent-hover);
  font-weight: 760;
}

.xmdsite-inline-phone:hover,
.xmdsite-inline-phone:focus-visible {
  color: var(--xmdsite-accent);
}

.xmdsite-footer-contact-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.xmdsite-footer-nav {
  padding: 18px 20px;
}

.xmdsite-footer-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.xmdsite-footer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 6px 18px;
}

.xmdsite-footer-item {
  min-width: 0;
}

.xmdsite-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.55;
  transition: color 180ms ease, transform 180ms ease;
}

.xmdsite-footer-link::before {
  width: 4px;
  height: 10px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  content: "";
}

.xmdsite-footer-link:hover,
.xmdsite-footer-link:focus-visible {
  color: #ffffff;
  outline: none;
  transform: translateX(2px);
}

.xmdsite-footer-sublist {
  display: grid;
  gap: 2px;
  margin-top: 4px;
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.xmdsite-footer-sublist .xmdsite-footer-link {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12.5px;
  font-weight: 500;
}

.xmdsite-footer-sublist .xmdsite-footer-link::before {
  opacity: 0.46;
}

.xmdsite-footer-sublist .xmdsite-footer-link:hover,
.xmdsite-footer-sublist .xmdsite-footer-link:focus-visible {
  color: rgba(255, 255, 255, 0.9);
}

.xmdsite-footer-aside {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-width: 126px;
  padding: 18px;
}

.xmdsite-footer-qrcode {
  width: 92px;
  height: 92px;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 0;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 45, 78, 0.18);
}

.xmdsite-footer-qrcode-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.xmdsite-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.xmdsite-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
}

@keyframes xmdsite-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .xmdsite-container.xmdsite-header-inner {
    position: relative;
    align-items: center;
    gap: 12px;
    min-height: 66px;
  }
}

@media (max-width: 960px) {
  .xmdsite-brand {
    flex: 1 1 auto;
  }
}

@media (max-width: 960px) {
  .xmdsite-brand-logo {
    max-width: 148px;
    height: 38px;
  }
}

@media (max-width: 960px) {
  .xmdsite-info-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    gap: 7px;
    min-height: 0;
    padding: 9px 0;
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .xmdsite-info-item {
    display: grid;
    grid-template-columns: 18px auto minmax(0, 1fr);
    max-width: 100%;
    align-items: center;
    justify-content: start;
    gap: 6px;
    overflow-wrap: anywhere;
    text-align: left;
  }
}

@media (max-width: 960px) {
  .xmdsite-info-item + .xmdsite-info-item {
    padding-left: 0;
  }
}

@media (max-width: 960px) {
  .xmdsite-info-item + .xmdsite-info-item::before {
    display: none;
  }
}

@media (max-width: 960px) {
  .xmdsite-info-item span:not(.xmdsite-info-icon) {
    min-width: 0;
  }
}

@media (max-width: 960px) {
  .xmdsite-info-label {
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  .xmdsite-info-value {
    line-height: 1.38;
  }
}

@media (max-width: 960px) {
  .xmdsite-info-phone {
    display: inline;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: inherit;
    font-weight: 680;
    line-height: inherit;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-toggle {
    display: grid;
    border-radius: 0;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav {
    position: absolute;
    top: 100%;
    right: calc(50% - 50vw);
    width: 100vw;
    max-height: min(78vh, calc(100vh - 66px));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px 14px 18px;
    border-top: 1px solid rgba(0, 122, 207, 0.16);
    border-right: 0;
    border-bottom: 1px solid rgba(0, 122, 207, 0.16);
    border-left: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 253, 0.99));
    box-shadow: 0 18px 46px rgba(17, 32, 46, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.94);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transform-origin: top center;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav::before {
    display: block;
    width: 36px;
    height: 2px;
    margin: 0 auto 12px;
    background: var(--xmdsite-accent);
    content: "";
  }
}

@media (max-width: 960px) {
  .xmdsite-header.is-nav-open .xmdsite-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    gap: 8px;
    width: min(100%, 1180px);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-item + .xmdsite-nav-item {
    border-top: 0;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-item-has-children {
    display: grid;
    gap: 6px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-link {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 44px;
    border-color: rgba(24, 48, 68, 0.1);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 20px rgba(15, 35, 52, 0.05);
    padding: 0 12px 0 14px;
    font-weight: 760;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-link::after {
    display: none;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-link:hover,
  .xmdsite-nav-link:focus-visible {
    border-color: rgba(0, 122, 207, 0.24);
    background: rgba(239, 248, 255, 0.96);
    color: var(--xmdsite-accent-hover);
    box-shadow: none;
    transform: none;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-link.is-active,
  .xmdsite-nav-link[aria-current="page"] {
    border-color: rgba(0, 122, 207, 0.28);
    background: #ffffff;
    box-shadow: inset 3px 0 0 var(--xmdsite-accent), 0 10px 24px rgba(0, 86, 146, 0.08);
    color: var(--xmdsite-accent-hover);
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-sublist {
    position: static;
    display: grid;
    justify-items: stretch;
    gap: 6px;
    min-width: 0;
    margin: -2px 0 4px;
    padding: 8px 0 0 10px;
    border: 0;
    border-left: 1px solid rgba(0, 122, 207, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-sublist .xmdsite-nav-link {
    min-height: 34px;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: none;
    color: rgba(29, 43, 54, 0.72);
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .xmdsite-nav-sublist .xmdsite-nav-link.is-active,
  .xmdsite-nav-sublist .xmdsite-nav-link[aria-current="page"] {
    border-color: rgba(0, 122, 207, 0.18);
    background: rgba(0, 122, 207, 0.08);
    color: var(--xmdsite-accent-hover);
    box-shadow: inset 3px 0 0 var(--xmdsite-accent);
  }
}

@media (max-width: 960px) {
  body.xmdsite-home-page .xmdsite-page-title,
  body.xmdsite-list-page .xmdsite-page-title {
    font-size: 36px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-home-page .xmdsite-item-grid,
  body.xmdsite-list-page .xmdsite-item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .xmdsite-footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .xmdsite-container {
    width: min(100% - 24px, 1180px);
  }
}

@media (max-width: 640px) {
  .xmdsite-header-inner {
    min-height: 62px;
  }
}

@media (max-width: 640px) {
  .xmdsite-brand {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .xmdsite-brand-logo {
    max-width: 132px;
    height: 34px;
  }
}

@media (max-width: 640px) {
  .xmdsite-info-list {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
  }
}

@media (max-width: 640px) {
  .xmdsite-info-item {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    word-break: normal;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .xmdsite-info-icon {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-hero {
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-hero-content {
    padding: 30px 0 26px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-hero-has-media .xmdsite-hero-content {
    padding: 30px 0 42px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-page-title,
  body.xmdsite-list-page .xmdsite-page-title {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-section-description,
  body.xmdsite-list-page .xmdsite-section-description {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-main {
    gap: 42px;
    padding: 46px 0 64px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-item-grid,
  body.xmdsite-list-page .xmdsite-item-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-card-title,
  body.xmdsite-list-page .xmdsite-card-title {
    font-size: 16px;
    font-weight: 730;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-card-summary,
  body.xmdsite-list-page .xmdsite-card-summary {
    font-size: 13px;
    line-height: 1.72;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-footer-main,
  body.xmdsite-list-page .xmdsite-footer-main {
    padding: 26px 0 20px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-footer-about,
  body.xmdsite-home-page .xmdsite-footer-nav,
  body.xmdsite-home-page .xmdsite-footer-aside,
  body.xmdsite-list-page .xmdsite-footer-about,
  body.xmdsite-list-page .xmdsite-footer-nav,
  body.xmdsite-list-page .xmdsite-footer-aside {
    border-radius: 0;
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .xmdsite-footer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-footer-bottom-inner,
  body.xmdsite-list-page .xmdsite-footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .xmdsite-footer-item {
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .xmdsite-container {
    width: min(100% - 20px, 1180px);
  }
}

@media (max-width: 420px) {
  .xmdsite-info-list {
    gap: 6px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .xmdsite-info-item {
    grid-template-columns: 16px auto minmax(0, 1fr);
    gap: 5px;
  }
}

@media (max-width: 420px) {
  .xmdsite-info-label {
    padding-top: 0;
  }
}

@media (max-width: 420px) {
  .xmdsite-info-icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }
}

@media (max-width: 420px) {
  .xmdsite-info-icon svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 420px) {
  body.xmdsite-home-page .xmdsite-page-title,
  body.xmdsite-list-page .xmdsite-page-title {
    font-size: 27px;
  }
}

@media (max-width: 420px) {
  body.xmdsite-home-page .xmdsite-card-body,
  body.xmdsite-list-page .xmdsite-card-body {
    gap: 12px;
    padding: 16px;
  }
}

@media (max-width: 420px) {
  body.xmdsite-home-page .xmdsite-card-title,
  body.xmdsite-list-page .xmdsite-card-title {
    color: rgba(29, 43, 54, 0.78);
    font-size: 15.5px;
    line-height: 1.52;
  }
}

@media (max-width: 420px) {
  .xmdsite-footer-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

body.xmdsite-home-page.xmdsite-page .xmdsite-hero-has-media .xmdsite-hero-content,
body.xmdsite-home-page.xmdsite-page .xmdsite-hero-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 26px max(24px, calc((100vw - 1180px) / 2)) 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 122, 207, 0.12);
  background: linear-gradient(90deg, rgba(234, 245, 255, 0.92), rgba(255, 255, 255, 0.96) 42%, rgba(239, 248, 255, 0.92)), radial-gradient(circle at 88% 50%, rgba(0, 122, 207, 0.12), transparent 28%);
  text-align: left;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: rgba(0, 94, 162, 0.82);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-hero-kicker::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--xmdsite-accent), rgba(0, 122, 207, 0.18));
  content: "";
}

body.xmdsite-home-page.xmdsite-page .xmdsite-page-title {
  max-width: none;
  color: #123f63;
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 760;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-description {
  max-width: 1060px;
  margin-top: 10px;
  color: rgba(29, 43, 54, 0.66);
  font-size: 15px;
  line-height: 1.85;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-main {
  width: 100%;
  display: grid;
  gap: 38px;
  padding: 58px 0 86px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-model-section,
body.xmdsite-home-page.xmdsite-page .xmdsite-about-contact {
  position: relative;
  width: 100%;
  padding: 0;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-model-section:nth-child(even) {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0) 0%, rgba(240, 247, 254, 0.78) 48%, rgba(245, 250, 255, 0) 100%);
  padding: 38px 0;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-shell,
body.xmdsite-home-page.xmdsite-page .xmdsite-about-contact-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: rgba(0, 122, 207, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-kicker::before {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0.72;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-title {
  margin: 0;
  color: #102f49;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 820;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-intro {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(29, 43, 54, 0.66);
  font-size: 15px;
  line-height: 1.8;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-link,
body.xmdsite-home-page.xmdsite-page .xmdsite-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(0, 122, 207, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #006ab4;
  font-size: 14px;
  font-weight: 780;
  box-shadow: 0 8px 22px rgba(0, 86, 146, 0.06);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-link:hover,
body.xmdsite-home-page.xmdsite-page .xmdsite-section-link:focus-visible,
body.xmdsite-home-page.xmdsite-page .xmdsite-text-link:hover,
body.xmdsite-home-page.xmdsite-page .xmdsite-text-link:focus-visible {
  border-color: rgba(0, 122, 207, 0.36);
  color: var(--xmdsite-accent-hover);
  outline: none;
  transform: translateY(-1px);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(0, 122, 207, 0.13);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.98)), radial-gradient(circle at 100% 0%, rgba(0, 122, 207, 0.11), transparent 34%);
  box-shadow: 0 14px 34px rgba(0, 86, 146, 0.08);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 122, 207, 0.92), rgba(74, 164, 230, 0.42), rgba(0, 122, 207, 0));
  content: "";
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 132px;
  height: 132px;
  border: 24px solid rgba(0, 122, 207, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link:hover,
body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link:focus-visible {
  border-color: rgba(0, 122, 207, 0.3);
  box-shadow: 0 22px 46px rgba(0, 86, 146, 0.13);
  transform: translateY(-5px);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-body {
  position: relative;
  z-index: 1;
  gap: 13px;
  padding: 24px 24px 22px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-index {
  color: rgba(0, 122, 207, 0.42);
  font-size: 26px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.04em;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-tag {
  border-radius: 999px;
  background: rgba(0, 122, 207, 0.08);
  color: rgba(0, 94, 162, 0.86);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-title {
  color: #18364d;
  font-size: 17px;
  font-weight: 780;
  line-height: 1.55;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-summary {
  color: rgba(29, 43, 54, 0.62);
  font-size: 14px;
  line-height: 1.78;
  -webkit-line-clamp: 3;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: rgba(0, 106, 180, 0.92);
  font-size: 13px;
  font-weight: 780;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-more::after {
  content: "→";
  transition: transform 180ms ease;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link:hover .xmdsite-card-more::after,
body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link:focus-visible .xmdsite-card-more::after {
  transform: translateX(3px);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-contact {
  padding-top: 18px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-panel,
body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 122, 207, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(0, 86, 146, 0.09);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-panel {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.96)), radial-gradient(circle at 0% 0%, rgba(0, 122, 207, 0.12), transparent 36%);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-panel::after {
  position: absolute;
  right: -60px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 122, 207, 0.06);
  content: "";
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: rgba(29, 43, 54, 0.68);
  font-size: 15px;
  line-height: 1.85;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-content p {
  margin: 0 0 0.75em;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-point {
  border: 1px solid rgba(0, 122, 207, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-point strong {
  display: block;
  color: #0d5d99;
  font-size: 20px;
  line-height: 1.2;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-about-point span {
  display: block;
  margin-top: 4px;
  color: rgba(29, 43, 54, 0.58);
  font-size: 12px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(155deg, #007acf 0%, #0f8fde 52%, #65b9ee 100%);
  color: #ffffff;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), transparent 28%), linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 46%);
  content: "";
  pointer-events: none;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel > * {
  position: relative;
  z-index: 1;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel .xmdsite-section-kicker,
body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel .xmdsite-section-title,
body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel .xmdsite-section-intro {
  color: #ffffff;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel .xmdsite-section-intro {
  color: rgba(255, 255, 255, 0.82);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 820;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-label {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-value {
  display: block;
  margin-top: 2px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel .xmdsite-text-link {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.94);
  color: #006ab4;
  box-shadow: none;
}

@media (min-width: 1180px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-hero-has-media .xmdsite-hero-content,
  body.xmdsite-home-page.xmdsite-page .xmdsite-hero-content {
    padding-right: 42px;
    padding-left: 42px;
  }
}

@media (max-width: 1100px) {
  body.xmdsite-home-page .xmdsite-platform-banner-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 42px 0 38px;
  }
}

@media (max-width: 1100px) {
  body.xmdsite-home-page .xmdsite-platform-banner-copy {
    max-width: 920px;
  }
}

@media (max-width: 1100px) {
  body.xmdsite-home-page .xmdsite-platform-title,
  body.xmdsite-home-page .xmdsite-platform-text,
  body.xmdsite-home-page .xmdsite-platform-tags {
    max-width: 820px;
  }
}

@media (max-width: 1100px) {
  body.xmdsite-home-page .xmdsite-platform-visual {
    min-height: 214px;
  }
}

@media (max-width: 1024px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-about-contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-hero-has-media .xmdsite-hero-content,
  body.xmdsite-home-page.xmdsite-page .xmdsite-hero-content {
    padding: 22px 16px 24px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-hero-kicker {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-page-title {
    font-size: 20px;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-section-description {
    font-size: 14px;
    line-height: 1.75;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-banner-inner {
    width: min(100% - 28px, 1180px);
    gap: 22px;
    padding: 34px 0 30px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-title {
    gap: 3px;
    font-size: clamp(28px, 8.6vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-title-line {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-text {
    margin-top: 16px;
    padding-left: 14px;
    border-left-width: 3px;
    font-size: 15.5px;
    line-height: 1.82;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-text-line {
    display: inline;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-tag {
    min-height: 32px;
    padding: 0 8px;
    font-size: clamp(10.5px, 3.15vw, 12px);
    line-height: 1.18;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-visual {
    min-height: 166px;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-screen {
    inset: 14px;
    border-radius: 11px;
    background-size: auto, 62px 62px, 42px 42px, auto;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-screen::before {
    left: 18px;
    top: 15px;
    width: 64px;
    height: 8px;
    box-shadow: 86px 0 0 rgba(255, 255, 255, 0.36), 170px 0 0 rgba(255, 255, 255, 0.48);
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-screen::after {
    right: 18px;
    bottom: 18px;
    width: 92px;
    height: 54px;
    border-radius: 8px;
    box-shadow: -104px -40px 0 -19px rgba(255, 255, 255, 0.72), -76px 12px 0 -21px rgba(255, 255, 255, 0.46), 0 16px 28px rgba(0, 54, 126, 0.18);
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-flow {
    right: 4%;
    top: 6%;
    width: min(82%, 300px);
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-flow::before,
  body.xmdsite-home-page .xmdsite-platform-flow::after {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-main {
    gap: 30px;
    padding: 42px 0 62px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-model-section:nth-child(even) {
    padding: 28px 0;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-section-shell,
  body.xmdsite-home-page.xmdsite-page .xmdsite-about-contact-shell {
    width: min(100% - 24px, 1180px);
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-item-grid,
  body.xmdsite-home-page.xmdsite-page .xmdsite-about-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link {
    min-height: 0;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-card-body,
  body.xmdsite-home-page.xmdsite-page .xmdsite-about-panel,
  body.xmdsite-home-page.xmdsite-page .xmdsite-contact-panel {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-card-title {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page .xmdsite-platform-banner::after {
    right: -240px;
    top: -280px;
  }
}

body.xmdsite-home-page.xmdsite-page .xmdsite-main {
  gap: 24px;
  padding: 42px 0 68px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f7fbff 100%), radial-gradient(circle at 88% 18%, rgba(0, 122, 207, 0.08), transparent 30%);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-model-section {
  --xmdsite-section-accent: #007acf;
  --xmdsite-section-accent-rgb: 0, 122, 207;
  --xmdsite-section-deep: #007acf;
  --xmdsite-section-deep-rgb: 0, 122, 207;
  --xmdsite-section-bright: #007acf;
  --xmdsite-section-bright-rgb: 0, 122, 207;
  --xmdsite-section-line: linear-gradient(90deg, rgba(0, 122, 207, 0.18), rgba(0, 122, 207, 0.72) 18%, rgba(0, 122, 207, 0.34) 62%, rgba(0, 122, 207, 0.08));
  --xmdsite-entry-line: linear-gradient(90deg, rgba(0, 122, 207, 0.92) 0%, #007acf 42%, rgba(0, 122, 207, 0.2) 78%, rgba(0, 122, 207, 0));
  --xmdsite-entry-line-alt: linear-gradient(90deg, rgba(0, 122, 207, 0.84) 0%, #007acf 46%, rgba(0, 122, 207, 0.18) 100%);
  --xmdsite-entry-line-soft: linear-gradient(90deg, rgba(0, 122, 207, 0.78) 0%, #007acf 36%, rgba(0, 122, 207, 0.24) 100%);
  padding: 18px 0;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-model-custom-software {
  --xmdsite-section-accent: #007acf;
  --xmdsite-section-accent-rgb: 0, 122, 207;
  --xmdsite-section-deep: #007acf;
  --xmdsite-section-deep-rgb: 0, 122, 207;
  --xmdsite-section-bright: #007acf;
  --xmdsite-section-bright-rgb: 0, 122, 207;
  --xmdsite-section-line: linear-gradient(90deg, rgba(0, 122, 207, 0.2), rgba(0, 122, 207, 0.72) 20%, rgba(0, 122, 207, 0.34) 68%, rgba(0, 122, 207, 0.08));
  --xmdsite-entry-line: linear-gradient(90deg, rgba(0, 122, 207, 0.9) 0%, #007acf 44%, rgba(0, 122, 207, 0.22) 100%);
  --xmdsite-entry-line-alt: linear-gradient(90deg, rgba(0, 122, 207, 0.82) 0%, #007acf 48%, rgba(0, 122, 207, 0.16) 100%);
  --xmdsite-entry-line-soft: linear-gradient(90deg, rgba(0, 122, 207, 0.76) 0%, #007acf 40%, rgba(0, 122, 207, 0.2) 100%);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-model-llm-app {
  --xmdsite-section-accent: #007acf;
  --xmdsite-section-accent-rgb: 0, 122, 207;
  --xmdsite-section-deep: #007acf;
  --xmdsite-section-deep-rgb: 0, 122, 207;
  --xmdsite-section-bright: #007acf;
  --xmdsite-section-bright-rgb: 0, 122, 207;
  --xmdsite-section-line: linear-gradient(90deg, rgba(0, 122, 207, 0.2), rgba(0, 122, 207, 0.7) 18%, rgba(0, 122, 207, 0.38) 64%, rgba(0, 122, 207, 0.08));
  --xmdsite-entry-line: linear-gradient(90deg, rgba(0, 122, 207, 0.88) 0%, #007acf 42%, rgba(0, 122, 207, 0.24) 100%);
  --xmdsite-entry-line-alt: linear-gradient(90deg, rgba(0, 122, 207, 0.8) 0%, #007acf 44%, rgba(0, 122, 207, 0.16) 100%);
  --xmdsite-entry-line-soft: linear-gradient(90deg, rgba(0, 122, 207, 0.74) 0%, #007acf 38%, rgba(0, 122, 207, 0.22) 100%);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-model-app-miniprogram {
  --xmdsite-section-accent: #007acf;
  --xmdsite-section-accent-rgb: 0, 122, 207;
  --xmdsite-section-deep: #007acf;
  --xmdsite-section-deep-rgb: 0, 122, 207;
  --xmdsite-section-bright: #007acf;
  --xmdsite-section-bright-rgb: 0, 122, 207;
  --xmdsite-section-line: linear-gradient(90deg, rgba(0, 122, 207, 0.2), rgba(0, 122, 207, 0.68) 18%, rgba(0, 122, 207, 0.36) 66%, rgba(0, 122, 207, 0.08));
  --xmdsite-entry-line: linear-gradient(90deg, rgba(0, 122, 207, 0.86) 0%, #007acf 44%, rgba(0, 122, 207, 0.22) 100%);
  --xmdsite-entry-line-alt: linear-gradient(90deg, rgba(0, 122, 207, 0.78) 0%, #007acf 46%, rgba(0, 122, 207, 0.16) 100%);
  --xmdsite-entry-line-soft: linear-gradient(90deg, rgba(0, 122, 207, 0.72) 0%, #007acf 38%, rgba(0, 122, 207, 0.2) 100%);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-model-section:nth-child(even) {
  padding: 22px 0;
  border-top: 1px solid rgba(var(--xmdsite-section-deep-rgb), 0.09);
  border-bottom: 1px solid rgba(var(--xmdsite-section-accent-rgb), 0.1);
  background: linear-gradient(90deg, rgba(var(--xmdsite-section-deep-rgb), 0.038), rgba(255, 255, 255, 0.97) 36%, rgba(var(--xmdsite-section-bright-rgb), 0.045)), linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(var(--xmdsite-section-accent-rgb), 0.02));
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-shell,
body.xmdsite-home-page.xmdsite-page .xmdsite-about-contact-shell {
  width: min(1180px, calc(100% - 40px));
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-heading {
  position: relative;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(var(--xmdsite-section-accent-rgb), 0.16);
  box-shadow: inset 0 -1px 0 rgba(var(--xmdsite-section-deep-rgb), 0.045);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-heading::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--xmdsite-section-line);
  content: "";
  pointer-events: none;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-kicker {
  display: none;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-title {
  color: #103d60;
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-title::before {
  display: inline-block;
  width: 4px;
  height: 0.95em;
  margin-right: 10px;
  vertical-align: -0.12em;
  background: linear-gradient(180deg, var(--xmdsite-section-bright), var(--xmdsite-section-accent) 54%, var(--xmdsite-section-deep));
  box-shadow: 0 0 0 1px rgba(var(--xmdsite-section-accent-rgb), 0.1);
  content: "";
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-intro {
  max-width: 860px;
  margin-top: 7px;
  color: rgba(28, 49, 66, 0.62);
  font-size: 14px;
  line-height: 1.62;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-link,
body.xmdsite-home-page.xmdsite-page .xmdsite-text-link {
  min-height: 34px;
  padding: 0 12px;
  border-color: rgba(var(--xmdsite-section-accent-rgb), 0.24);
  border-radius: 0;
  background: #ffffff;
  color: var(--xmdsite-section-accent);
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-section-link:hover,
body.xmdsite-home-page.xmdsite-page .xmdsite-section-link:focus-visible,
body.xmdsite-home-page.xmdsite-page .xmdsite-text-link:hover,
body.xmdsite-home-page.xmdsite-page .xmdsite-text-link:focus-visible {
  border-color: rgba(var(--xmdsite-section-accent-rgb), 0.44);
  background: linear-gradient(180deg, #ffffff, rgba(var(--xmdsite-section-bright-rgb), 0.06));
  transform: translateY(-1px);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-grid {
  gap: 12px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card {
  --xmdsite-current-entry-line: var(--xmdsite-entry-line);
  --xmdsite-current-entry-rgb: var(--xmdsite-section-accent-rgb);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card:nth-child(3n + 2) {
  --xmdsite-current-entry-line: var(--xmdsite-entry-line-alt);
  --xmdsite-current-entry-rgb: var(--xmdsite-section-bright-rgb);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card:nth-child(3n) {
  --xmdsite-current-entry-line: var(--xmdsite-entry-line-soft);
  --xmdsite-current-entry-rgb: var(--xmdsite-section-deep-rgb);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link {
  min-height: 0;
  border: 1px solid rgba(var(--xmdsite-current-entry-rgb), 0.2);
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff, #ffffff), linear-gradient(90deg, rgba(var(--xmdsite-section-deep-rgb), 0.03), rgba(var(--xmdsite-section-bright-rgb), 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link::before {
  height: 2px;
  background: var(--xmdsite-current-entry-line);
  box-shadow: 0 1px 0 rgba(var(--xmdsite-current-entry-rgb), 0.08);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link::after {
  display: none;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link:hover,
body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link:focus-visible {
  border-color: rgba(var(--xmdsite-current-entry-rgb), 0.42);
  background: linear-gradient(180deg, #ffffff, rgba(var(--xmdsite-section-bright-rgb), 0.035)), linear-gradient(90deg, rgba(var(--xmdsite-section-deep-rgb), 0.05), rgba(var(--xmdsite-section-bright-rgb), 0.055));
  box-shadow: 0 10px 24px rgba(0, 86, 146, 0.075), inset 0 0 0 1px rgba(var(--xmdsite-current-entry-rgb), 0.045);
  transform: translateY(-2px);
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-body {
  gap: 8px;
  padding: 16px 16px 15px;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-topline {
  gap: 10px;
  margin-bottom: 0;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-index {
  color: rgba(var(--xmdsite-current-entry-rgb), 0.38);
  font-size: 20px;
  font-weight: 820;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-tag {
  border: 1px solid rgba(var(--xmdsite-current-entry-rgb), 0.16);
  border-radius: 0;
  background: rgba(var(--xmdsite-current-entry-rgb), 0.055);
  color: rgba(0, 94, 162, 0.82);
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 720;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-title {
  color: #173a56;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.48;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-summary {
  color: rgba(32, 51, 65, 0.58);
  font-size: 13.5px;
  line-height: 1.62;
  -webkit-line-clamp: 2;
}

body.xmdsite-home-page.xmdsite-page .xmdsite-card-more {
  margin-top: 3px;
  color: var(--xmdsite-section-accent);
  font-size: 13px;
  font-weight: 740;
}

@media (max-width: 1024px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-main {
    gap: 22px;
    padding: 36px 0 58px;
  }
}

@media (max-width: 1024px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-section-shell,
  body.xmdsite-home-page.xmdsite-page .xmdsite-about-contact-shell {
    width: min(100% - 30px, 1180px);
  }
}

@media (max-width: 1024px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-section-heading {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-main {
    gap: 18px;
    padding: 30px 0 48px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-model-section,
  body.xmdsite-home-page.xmdsite-page .xmdsite-model-section:nth-child(even) {
    padding: 16px 0;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-section-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-item-card-link {
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-card-body {
    padding: 14px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-home-page.xmdsite-page .xmdsite-card-title {
    font-size: 15.5px;
  }
}

body.xmdsite-list-page .xmdsite-nav-list,
body.xmdsite-list-page .xmdsite-nav-sublist,
body.xmdsite-list-page .xmdsite-breadcrumb-list,
body.xmdsite-list-page .xmdsite-category-list,
body.xmdsite-list-page .xmdsite-item-grid,
body.xmdsite-list-page .xmdsite-footer-list,
body.xmdsite-list-page .xmdsite-footer-sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.xmdsite-list-page .xmdsite-page-hero {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-bottom: 1px solid var(--xmdsite-border);
  background: radial-gradient(circle at 82% 8%, rgba(0, 122, 207, 0.13), transparent 34%), linear-gradient(135deg, #ffffff 0%, #f4f9ff 58%, #ecf6ff 100%);
}

body.xmdsite-list-page .xmdsite-page-hero::before {
  position: absolute;
  inset: auto -80px -150px auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(0, 122, 207, 0.08);
  content: "";
  pointer-events: none;
}

body.xmdsite-list-page .xmdsite-page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: inherit;
  padding: 40px 0 34px;
  animation: xmdsite-fade-up 560ms ease both;
}

body.xmdsite-list-page .xmdsite-eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  border: 1px solid rgba(0, 122, 207, 0.16);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--xmdsite-accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

body.xmdsite-list-page .xmdsite-main {
  display: grid;
  gap: 26px;
  padding: 28px 0 72px;
}

body.xmdsite-list-page .xmdsite-breadcrumb,
body.xmdsite-detail-page .xmdsite-breadcrumb {
  animation: xmdsite-fade-up 520ms ease both;
}

body.xmdsite-list-page .xmdsite-breadcrumb-list,
body.xmdsite-detail-page .xmdsite-breadcrumb-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  color: var(--xmdsite-soft);
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
}

body.xmdsite-list-page .xmdsite-breadcrumb-item,
body.xmdsite-detail-page .xmdsite-breadcrumb-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

body.xmdsite-list-page .xmdsite-breadcrumb-current-item,
body.xmdsite-detail-page .xmdsite-breadcrumb-current-item {
  flex: 1 1 auto;
  overflow: hidden;
}

body.xmdsite-list-page .xmdsite-breadcrumb-item + .xmdsite-breadcrumb-item::before,
body.xmdsite-detail-page .xmdsite-breadcrumb-item + .xmdsite-breadcrumb-item::before {
  color: rgba(17, 24, 39, 0.28);
  content: "/";
}

body.xmdsite-list-page .xmdsite-breadcrumb-link,
body.xmdsite-detail-page .xmdsite-breadcrumb-link {
  color: var(--xmdsite-muted);
  transition: color 180ms ease;
}

body.xmdsite-list-page .xmdsite-breadcrumb-link:hover,
body.xmdsite-list-page .xmdsite-breadcrumb-link:focus-visible,
body.xmdsite-detail-page .xmdsite-breadcrumb-link:hover,
body.xmdsite-detail-page .xmdsite-breadcrumb-link:focus-visible {
  color: var(--xmdsite-accent);
  outline: none;
}

body.xmdsite-list-page .xmdsite-breadcrumb-current,
body.xmdsite-detail-page .xmdsite-breadcrumb-current {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.xmdsite-list-page .xmdsite-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: xmdsite-fade-up 520ms ease both;
  animation-delay: 40ms;
}

body.xmdsite-list-page .xmdsite-category-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--xmdsite-border);
  border-radius: var(--xmdsite-radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--xmdsite-muted);
  font-size: 14px;
  font-weight: 650;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body.xmdsite-list-page .xmdsite-category-link:hover,
body.xmdsite-list-page .xmdsite-category-link:focus-visible {
  border-color: rgba(0, 122, 207, 0.34);
  background: var(--xmdsite-accent-soft);
  color: var(--xmdsite-accent-hover);
  outline: none;
  transform: translateY(-1px);
}

body.xmdsite-list-page .xmdsite-category-link.is-active {
  border-color: rgba(0, 122, 207, 0.34);
  background: var(--xmdsite-accent-soft);
  color: var(--xmdsite-accent-hover);
}

body.xmdsite-list-page .xmdsite-list-section {
  animation: xmdsite-fade-up 560ms ease both;
  animation-delay: 80ms;
}

body.xmdsite-list-page .xmdsite-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  border: 1px solid rgba(0, 122, 207, 0.16);
  border-radius: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(0, 86, 146, 0.07);
  animation: xmdsite-fade-up 560ms ease both;
  animation-delay: 120ms;
}

body.xmdsite-list-page .xmdsite-pagination-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 0;
  padding: 0 12px;
  background: var(--xmdsite-accent-soft);
  color: var(--xmdsite-accent);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

body.xmdsite-list-page .xmdsite-pagination-actions {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

body.xmdsite-list-page .xmdsite-pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 36px;
  border: 1px solid rgba(0, 122, 207, 0.18);
  border-radius: 0;
  padding: 0 12px;
  background: var(--xmdsite-surface);
  color: var(--xmdsite-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body.xmdsite-list-page .xmdsite-pagination-link:hover,
body.xmdsite-list-page .xmdsite-pagination-link:focus-visible {
  border-color: var(--xmdsite-accent);
  background: var(--xmdsite-accent-soft);
  color: var(--xmdsite-accent);
  outline: none;
  transform: translateY(-1px);
}

body.xmdsite-list-page .xmdsite-pagination-link.is-current {
  border-color: var(--xmdsite-accent);
  background: var(--xmdsite-accent);
  box-shadow: none;
  color: #ffffff;
  cursor: default;
  pointer-events: none;
}

body.xmdsite-list-page .xmdsite-pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 36px;
  color: var(--xmdsite-muted);
  font-size: 16px;
  font-weight: 800;
}

body.xmdsite-list-page .xmdsite-pagination-link.is-disabled {
  border-color: rgba(29, 43, 54, 0.08);
  background: rgba(245, 249, 255, 0.64);
  box-shadow: none;
  color: var(--xmdsite-soft);
  cursor: default;
  pointer-events: none;
}

body.xmdsite-list-page .xmdsite-pagination-jump {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  border-left: 1px solid rgba(0, 122, 207, 0.12);
  padding-left: 12px;
}

body.xmdsite-list-page .xmdsite-pagination-jump-label {
  color: var(--xmdsite-muted);
  font-size: 14px;
  white-space: nowrap;
}

body.xmdsite-list-page .xmdsite-pagination-jump-input {
  width: 58px;
  min-height: 36px;
  border: 1px solid rgba(0, 122, 207, 0.18);
  border-radius: 0;
  padding: 0 9px;
  background: var(--xmdsite-surface);
  color: var(--xmdsite-ink);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  -moz-appearance: textfield;
}

body.xmdsite-list-page .xmdsite-pagination-jump-input::-webkit-inner-spin-button,
body.xmdsite-list-page .xmdsite-pagination-jump-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.xmdsite-list-page .xmdsite-pagination-jump-input:focus {
  border-color: var(--xmdsite-accent);
  outline: none;
  box-shadow: 0 0 0 2px var(--xmdsite-accent-soft);
}

body.xmdsite-list-page .xmdsite-pagination-jump-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--xmdsite-accent);
  border-radius: 0;
  padding: 0 14px;
  background: var(--xmdsite-accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, filter 180ms ease, transform 180ms ease;
}

body.xmdsite-list-page .xmdsite-pagination-jump-btn:hover,
body.xmdsite-list-page .xmdsite-pagination-jump-btn:focus-visible {
  border-color: var(--xmdsite-accent-hover);
  color: #ffffff;
  filter: brightness(0.98);
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  body.xmdsite-list-page .xmdsite-page-hero {
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-list-page .xmdsite-page-hero-content {
    padding: 30px 0 26px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-list-page .xmdsite-main {
    gap: 22px;
    padding: 24px 0 56px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-list-page .xmdsite-pagination {
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-list-page .xmdsite-pagination-status {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  body.xmdsite-list-page .xmdsite-pagination-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body.xmdsite-list-page .xmdsite-pagination-jump {
    justify-content: center;
    border-left: 0;
    border-top: 1px solid rgba(0, 122, 207, 0.12);
    padding-top: 12px;
    padding-left: 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  body.xmdsite-list-page .xmdsite-pagination-link {
    min-width: 40px;
    padding: 0 12px;
  }
}

@media (max-width: 420px) {
  body.xmdsite-list-page .xmdsite-pagination-jump-label {
    font-size: 13px;
  }
}

@supports not (text-wrap: pretty) {
  body.xmdsite-detail-page .xmdsite-item-title,
  body.xmdsite-detail-page .xmdsite-article :where(h1, h2, h3, h4) {
    text-wrap: auto;
  }
}

body.xmdsite-detail-page button {
  font: inherit;
}

body.xmdsite-detail-page .xmdsite-nav-list,
body.xmdsite-detail-page .xmdsite-nav-sublist,
body.xmdsite-detail-page .xmdsite-breadcrumb-list,
body.xmdsite-detail-page .xmdsite-footer-list,
body.xmdsite-detail-page .xmdsite-footer-sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.xmdsite-detail-page .xmdsite-article-head {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 58%, #eef5fb 100%);
  border-bottom: 1px solid rgba(0, 122, 207, 0.18);
  padding: 42px 0 52px;
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-article-head .xmdsite-container {
    box-sizing: border-box;
    padding-right: clamp(36px, 4.2vw, 72px);
    padding-left: clamp(36px, 4.2vw, 72px);
  }
}

body.xmdsite-detail-page .xmdsite-title-block {
  display: grid;
  gap: 14px;
  max-width: 900px;
  padding-top: 28px;
  animation: xmdsite-fade-up 560ms ease both;
  animation-delay: 60ms;
}

body.xmdsite-detail-page .xmdsite-eyebrow {
  margin: 0;
  color: var(--xmdsite-accent);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

body.xmdsite-detail-page .xmdsite-item-title {
  margin: 0;
  max-width: 100%;
  color: #203548;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 720;
  line-height: 1.4;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
}

body.xmdsite-detail-page .xmdsite-item-summary {
  margin: 0;
  max-width: 820px;
  color: rgba(29, 43, 54, 0.66);
  font-size: clamp(14.5px, 1.02vw, 15.5px);
  line-height: 1.78;
  overflow-wrap: break-word;
}

body.xmdsite-detail-page .xmdsite-publish-date {
  margin: 0;
  color: var(--xmdsite-soft);
  font-size: 14px;
}

body.xmdsite-detail-page .xmdsite-main {
  display: grid;
  gap: 36px;
  padding: 38px 0 82px;
}

body.xmdsite-detail-page .xmdsite-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(100%, 880px);
  margin: 0 auto;
  padding: clamp(10px, 1.4vw, 16px);
  overflow: hidden;
  border: 1px solid rgba(0, 122, 207, 0.10);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, var(--xmdsite-surface-soft) 100%);
  box-shadow: 0 18px 42px rgba(0, 86, 146, 0.09);
  animation: xmdsite-fade-up 560ms ease both;
}

body.xmdsite-detail-page .xmdsite-cover img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: clamp(260px, 42vw, 440px);
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

body.xmdsite-detail-page .xmdsite-detail-tabs {
  display: grid;
  gap: 28px;
  animation: xmdsite-fade-up 560ms ease both;
  animation-delay: 80ms;
}

body.xmdsite-detail-page .xmdsite-tabs-list {
  display: flex;
  gap: 34px;
  border-bottom: 1px solid var(--xmdsite-border);
}

body.xmdsite-detail-page .xmdsite-tab {
  appearance: none;
  position: relative;
  min-height: 54px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--xmdsite-soft);
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  transition: border-color 180ms ease, color 180ms ease;
}

body.xmdsite-detail-page .xmdsite-tab:hover,
body.xmdsite-detail-page .xmdsite-tab:focus-visible,
body.xmdsite-detail-page .xmdsite-tab.is-active {
  border-bottom-color: var(--xmdsite-accent);
  color: var(--xmdsite-accent);
  outline: none;
}

body.xmdsite-detail-page .xmdsite-tab-panel[hidden] {
  display: none;
}

body.xmdsite-detail-page .xmdsite-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 46px;
  align-items: start;
}

body.xmdsite-detail-page .xmdsite-article {
  max-width: 800px;
  color: rgba(29, 43, 54, 0.78);
  font-size: 15.5px;
  line-height: 1.9;
  letter-spacing: 0.004em;
  overflow-wrap: break-word;
  word-break: normal;
  animation: xmdsite-fade-up 560ms ease both;
}

body.xmdsite-detail-page .xmdsite-article :where(h1, h2, h3, h4) {
  clear: both;
  margin: 1.42em 0 0.52em;
  color: #20384d;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: -0.006em;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
  text-wrap: pretty;
}

body.xmdsite-detail-page .xmdsite-article :where(h1, h2) {
  font-size: clamp(19px, 1.55vw, 23px);
}

body.xmdsite-detail-page .xmdsite-article :where(h3) {
  font-size: clamp(17px, 1.28vw, 20px);
}

body.xmdsite-detail-page .xmdsite-article :where(h4) {
  font-size: 16px;
}

body.xmdsite-detail-page .xmdsite-article :where(p) {
  margin: 0 0 1.16em;
  color: rgba(29, 43, 54, 0.7);
  line-height: inherit;
}

body.xmdsite-detail-page .xmdsite-article :where(p + p) {
  margin-top: 0;
}

body.xmdsite-detail-page .xmdsite-article :where(strong, b) {
  color: #17293a;
  font-weight: 760;
}

body.xmdsite-detail-page .xmdsite-article :where(a) {
  color: var(--xmdsite-accent-hover);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

body.xmdsite-detail-page .xmdsite-article :where(a:hover, a:focus-visible) {
  color: var(--xmdsite-accent);
  outline: none;
}

body.xmdsite-detail-page .xmdsite-article :where(img, video) {
  height: auto;
  margin: 28px auto;
  border-radius: var(--xmdsite-radius);
}

body.xmdsite-detail-page .xmdsite-article :where(blockquote) {
  margin: 26px 0;
  border-left: 3px solid var(--xmdsite-accent);
  padding: 10px 0 10px 20px;
  color: rgba(29, 43, 54, 0.7);
  background: linear-gradient(90deg, rgba(0, 122, 207, 0.055), transparent 70%);
}

body.xmdsite-detail-page .xmdsite-article :where(ul, ol) {
  margin: 0 0 1.2em 1.35em;
  color: rgba(29, 43, 54, 0.76);
  line-height: inherit;
}

body.xmdsite-detail-page .xmdsite-article :where(li) {
  margin: 0.28em 0;
  padding-left: 0.08em;
}

body.xmdsite-detail-page .xmdsite-article :where(table) {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

body.xmdsite-detail-page .xmdsite-article :where(th, td) {
  border-bottom: 1px solid var(--xmdsite-border);
  padding: 10px 12px;
  text-align: left;
}

body.xmdsite-detail-page .xmdsite-empty-article {
  color: var(--xmdsite-muted);
  text-align: center;
}

body.xmdsite-detail-page .xmdsite-facts {
  border-left: 1px solid var(--xmdsite-border);
  padding-left: 34px;
}

body.xmdsite-detail-page .xmdsite-facts-title {
  margin: 0 0 24px;
  color: var(--xmdsite-soft);
  font-size: 13px;
  font-weight: 700;
}

body.xmdsite-detail-page .xmdsite-fact-list {
  display: grid;
  gap: 0;
  margin: 0;
}

body.xmdsite-detail-page .xmdsite-fact-item {
  border-bottom: 1px solid var(--xmdsite-border);
  padding: 0 0 18px;
  margin: 0 0 18px;
}

body.xmdsite-detail-page .xmdsite-fact-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

body.xmdsite-detail-page .xmdsite-fact-label {
  color: var(--xmdsite-soft);
  font-size: 13px;
}

body.xmdsite-detail-page .xmdsite-fact-value {
  margin: 8px 0 0;
  color: var(--xmdsite-muted);
  font-size: 15px;
  line-height: 1.75;
}

body.xmdsite-detail-page .xmdsite-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.xmdsite-detail-page .xmdsite-gallery-trigger {
  appearance: none;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--xmdsite-surface-soft);
  cursor: zoom-in;
}

body.xmdsite-detail-page .xmdsite-gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform 240ms ease;
}

body.xmdsite-detail-page .xmdsite-gallery-trigger:hover .xmdsite-gallery-image,
body.xmdsite-detail-page .xmdsite-gallery-trigger:focus-visible .xmdsite-gallery-image {
  transform: scale(1.03);
}

body.xmdsite-detail-page .xmdsite-gallery-trigger:focus-visible {
  outline: 3px solid rgba(0, 122, 207, 0.18);
  outline-offset: 3px;
}

body.xmdsite-detail-page .xmdsite-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(16, 19, 25, 0.82);
}

body.xmdsite-detail-page .xmdsite-gallery-modal[hidden] {
  display: none;
}

body.xmdsite-detail-page .xmdsite-gallery-dialog {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 100%;
}

body.xmdsite-detail-page .xmdsite-gallery-preview {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
}

body.xmdsite-detail-page .xmdsite-gallery-caption {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

body.xmdsite-detail-page .xmdsite-gallery-close {
  position: absolute;
  top: -52px;
  right: 0;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

body.xmdsite-detail-page .xmdsite-gallery-close:hover,
body.xmdsite-detail-page .xmdsite-gallery-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

body.xmdsite-detail-page .xmdsite-adjacent-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  animation: xmdsite-fade-up 560ms ease both;
  animation-delay: 120ms;
}

body.xmdsite-detail-page .xmdsite-adjacent-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  border: 1px solid var(--xmdsite-border);
  border-radius: var(--xmdsite-radius);
  background: var(--xmdsite-surface);
  padding: 18px;
  box-shadow: var(--xmdsite-shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.xmdsite-detail-page .xmdsite-adjacent-card-previous {
  grid-column: 1;
}

body.xmdsite-detail-page .xmdsite-adjacent-card-next {
  grid-column: 2;
}

body.xmdsite-detail-page .xmdsite-adjacent-card:hover,
body.xmdsite-detail-page .xmdsite-adjacent-card:focus-visible {
  border-color: rgba(0, 122, 207, 0.34);
  box-shadow: var(--xmdsite-shadow-hover);
  outline: none;
  transform: translateY(-3px);
}

body.xmdsite-detail-page .xmdsite-adjacent-label {
  color: var(--xmdsite-soft);
  font-size: 13px;
  font-weight: 700;
}

body.xmdsite-detail-page .xmdsite-adjacent-title {
  color: var(--xmdsite-ink);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.65;
}

body.xmdsite-detail-page .xmdsite-footer-bottom a {
  color: inherit;
  text-decoration: none;
}

body.xmdsite-detail-page .xmdsite-footer-bottom a:hover {
  text-decoration: underline;
}

body.xmdsite-detail-page.xmdsite-page {
  background: radial-gradient(circle at 8% 18%, rgba(0, 122, 207, 0.08), transparent 30%), radial-gradient(circle at 92% 36%, rgba(41, 151, 255, 0.07), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f4f8fc 46%, #ffffff 100%);
}

body.xmdsite-detail-page .xmdsite-article-head {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  padding: 44px 0 52px;
  background: linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(255, 255, 255, 0.96) 52%, rgba(232, 244, 255, 0.92) 100%);
}

body.xmdsite-detail-page .xmdsite-article-head::before,
body.xmdsite-detail-page .xmdsite-article-head::after {
  position: absolute;
  border-radius: 999px;
  background: rgba(0, 122, 207, 0.08);
  content: "";
  pointer-events: none;
}

body.xmdsite-detail-page .xmdsite-article-head::before {
  top: -120px;
  right: max(24px, 8vw);
  width: 300px;
  height: 300px;
}

body.xmdsite-detail-page .xmdsite-article-head::after {
  bottom: -160px;
  left: max(18px, 7vw);
  width: 360px;
  height: 360px;
  background: rgba(0, 122, 207, 0.05);
}

body.xmdsite-detail-page .xmdsite-article-head > .xmdsite-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 122, 207, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 255, 0.92));
  box-shadow: 0 22px 58px rgba(26, 88, 132, 0.11);
  padding: 32px clamp(40px, 5vw, 76px) 38px;
}

body.xmdsite-detail-page .xmdsite-article-head > .xmdsite-container::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--xmdsite-accent), rgba(0, 122, 207, 0.18));
  content: "";
}

body.xmdsite-detail-page .xmdsite-breadcrumb-list {
  font-size: 13px;
  color: rgba(29, 43, 54, 0.5);
}

body.xmdsite-detail-page .xmdsite-title-block {
  max-width: 1060px;
  gap: 13px;
  padding-top: 24px;
}

body.xmdsite-detail-page .xmdsite-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(0, 122, 207, 0.14);
  border-radius: 999px;
  background: rgba(0, 122, 207, 0.075);
  padding: 5px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

body.xmdsite-detail-page .xmdsite-item-title {
  max-width: 1040px;
  color: #183047;
  font-size: clamp(23px, 1.85vw, 27px);
  font-weight: 760;
  line-height: 1.46;
  letter-spacing: -0.008em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  hyphens: none;
}

body.xmdsite-detail-page .xmdsite-item-summary {
  max-width: 960px;
  color: rgba(29, 43, 54, 0.64);
  font-size: 15px;
  line-height: 1.86;
}

body.xmdsite-detail-page .xmdsite-publish-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  border-top: 1px solid rgba(0, 122, 207, 0.12);
  padding-top: 12px;
  color: rgba(29, 43, 54, 0.52);
  font-size: 13px;
}

body.xmdsite-detail-page .xmdsite-main {
  gap: 30px;
  padding: 44px 0 88px;
}

body.xmdsite-detail-page .xmdsite-detail-tabs {
  overflow: hidden;
  border: 1px solid rgba(0, 122, 207, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 54px rgba(26, 88, 132, 0.09);
  padding: 38px clamp(34px, 4.5vw, 54px);
}

body.xmdsite-detail-page .xmdsite-detail-grid {
  grid-template-columns: minmax(0, 820px) minmax(250px, 300px);
  justify-content: space-between;
  gap: clamp(36px, 5vw, 62px);
}

body.xmdsite-detail-page .xmdsite-article {
  max-width: none;
  color: rgba(29, 43, 54, 0.8);
  font-size: 16px;
  line-height: 1.96;
}

body.xmdsite-detail-page .xmdsite-article > :first-child {
  margin-top: 0;
}

body.xmdsite-detail-page .xmdsite-article :where(h1, h2, h3, h4) {
  position: relative;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
  hyphens: none;
}

body.xmdsite-detail-page .xmdsite-article :where(h1, h2) {
  margin: 1.55em 0 0.72em;
  padding-left: 15px;
  color: #183047;
  font-size: clamp(20px, 1.42vw, 22px);
  line-height: 1.5;
}

body.xmdsite-detail-page .xmdsite-article :where(h1, h2)::before {
  position: absolute;
  top: 0.28em;
  bottom: 0.28em;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--xmdsite-accent), rgba(0, 122, 207, 0.25));
  content: "";
}

body.xmdsite-detail-page .xmdsite-article :where(h3) {
  margin-top: 1.45em;
  color: #253b50;
  font-size: clamp(18px, 1.22vw, 20px);
}

body.xmdsite-detail-page .xmdsite-article :where(p) {
  margin-bottom: 1.18em;
  color: rgba(29, 43, 54, 0.72);
}

body.xmdsite-detail-page .xmdsite-article :where(blockquote) {
  border-left-width: 4px;
  border-radius: 0 14px 14px 0;
  padding: 14px 20px;
  background: linear-gradient(90deg, rgba(0, 122, 207, 0.075), rgba(0, 122, 207, 0.018));
}

body.xmdsite-detail-page .xmdsite-facts {
  position: sticky;
  top: 104px;
  border: 1px solid rgba(0, 122, 207, 0.12);
  border-left: 1px solid rgba(0, 122, 207, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 14px 34px rgba(26, 88, 132, 0.07);
  padding: 24px 24px 26px;
}

body.xmdsite-detail-page .xmdsite-facts-title {
  margin-bottom: 20px;
  color: #20384d;
  font-size: 14px;
  font-weight: 780;
}

body.xmdsite-detail-page .xmdsite-fact-item {
  border-bottom-color: rgba(0, 122, 207, 0.11);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

body.xmdsite-detail-page .xmdsite-fact-label {
  color: rgba(29, 43, 54, 0.46);
  font-size: 12px;
  font-weight: 700;
}

body.xmdsite-detail-page .xmdsite-fact-value {
  color: rgba(29, 43, 54, 0.72);
  font-size: 14px;
}

body.xmdsite-detail-page .xmdsite-adjacent-card {
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  padding: 22px 24px;
}

body.xmdsite-detail-page .xmdsite-adjacent-title {
  color: #1c344a;
  font-size: 15.5px;
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-article-head {
    padding: 30px 0 20px;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-article-head > .xmdsite-container {
    border-radius: 22px;
    padding: 26px clamp(32px, 3.8vw, 58px) 28px;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-title-block {
    max-width: none;
    gap: 10px;
    padding-top: 18px;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-item-title {
    max-width: 1120px;
    font-size: clamp(22px, 1.72vw, 26px);
    line-height: 1.42;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-item-summary {
    max-width: none;
    font-size: 14.5px;
    line-height: 1.76;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-publish-date {
    margin-top: 0;
    padding-top: 10px;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-main {
    gap: 24px;
    padding: 24px 0 80px;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-cover {
    width: min(100%, 760px);
    padding: 14px;
    border-radius: 22px;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-cover img {
    max-height: 380px;
    border-radius: 16px;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    border-radius: 22px;
    padding: 30px clamp(30px, 3.8vw, 48px);
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(246px, 286px);
    gap: clamp(28px, 3.6vw, 44px);
    align-items: start;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-facts {
    position: static;
    align-self: start;
    margin: 0;
    padding: 22px 22px 24px;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-facts-title {
    margin-bottom: 16px;
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-fact-item {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-title-block {
    max-width: 880px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-item-title {
    font-size: clamp(22px, 3.25vw, 28px);
    line-height: 1.42;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-article {
    max-width: none;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-facts {
    border-top: 1px solid var(--xmdsite-border);
    border-left: 0;
    padding-top: 28px;
    padding-left: 0;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-footer-main {
    padding: 26px 0 20px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-footer-about,
  body.xmdsite-detail-page .xmdsite-footer-nav,
  body.xmdsite-detail-page .xmdsite-footer-aside {
    border-radius: 0;
    padding: 16px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-article-head {
    padding: 34px 0 42px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-article-head > .xmdsite-container {
    border-radius: 20px;
    padding: 28px 28px 32px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-title-block {
    max-width: none;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-item-title {
    font-size: clamp(22px, 3vw, 26px);
    line-height: 1.46;
    overflow-wrap: break-word;
    text-wrap: auto;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-item-summary {
    max-width: none;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-main {
    padding-top: 34px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-cover {
    width: min(100%, 680px);
    padding: 12px;
    border-radius: 20px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-cover img {
    max-height: 340px;
    border-radius: 14px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    border-radius: 20px;
    padding: 30px 28px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-facts {
    position: static;
    border: 1px solid rgba(0, 122, 207, 0.12);
    border-radius: 18px;
    padding: 22px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article-head {
    padding: 22px 0 30px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-title-block {
    gap: 11px;
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-breadcrumb-list {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-eyebrow {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-item-title {
    font-size: clamp(19px, 5vw, 23px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
    text-wrap: auto;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-item-summary {
    color: rgba(29, 43, 54, 0.66);
    font-size: 14px;
    line-height: 1.74;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-publish-date {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-main {
    gap: 24px;
    padding: 28px 0 56px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-cover {
    width: min(100%, 520px);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 86, 146, 0.08);
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-cover img {
    width: 100%;
    max-height: 260px;
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article {
    color: rgba(29, 43, 54, 0.78);
    font-size: 14.8px;
    line-height: 1.84;
    letter-spacing: 0;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(h1, h2, h3, h4) {
    display: block;
    margin: 1.22em 0 0.5em;
    color: #263b4e;
    font-weight: 680;
    line-height: 1.52;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
    text-wrap: auto;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(h1, h2) {
    font-size: clamp(17px, 4.25vw, 19px);
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(h3) {
    font-size: clamp(16px, 4vw, 18px);
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(h4) {
    font-size: 15.5px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(p) {
    margin-bottom: 1.08em;
    color: rgba(29, 43, 54, 0.7);
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(blockquote) {
    margin: 20px 0;
    padding-left: 14px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(img, video) {
    margin: 22px auto;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(ul, ol) {
    margin-left: 1.18em;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article-head > .xmdsite-container {
    border-radius: 16px;
    padding: 22px 18px 26px;
    box-shadow: 0 14px 32px rgba(26, 88, 132, 0.08);
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article-head > .xmdsite-container::before {
    width: 3px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    border-radius: 16px;
    padding: 24px 18px;
    box-shadow: 0 12px 28px rgba(26, 88, 132, 0.07);
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(h1, h2) {
    padding-left: 12px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-article :where(h1, h2)::before {
    top: 0.32em;
    bottom: 0.32em;
    width: 3px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-tabs-list {
    gap: 22px;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-tab {
    flex: 0 0 auto;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-gallery-modal {
    padding: 24px 14px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-adjacent-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-adjacent-card-previous,
  body.xmdsite-detail-page .xmdsite-adjacent-card-next {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  body.xmdsite-detail-page .xmdsite-cover {
    width: 100%;
    padding: 8px;
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  body.xmdsite-detail-page .xmdsite-cover img {
    max-height: 220px;
    border-radius: 10px;
  }
}

body.xmdsite-detail-page .xmdsite-article-head > .xmdsite-container,
body.xmdsite-detail-page .xmdsite-detail-tabs,
body.xmdsite-detail-page .xmdsite-cover,
body.xmdsite-detail-page .xmdsite-cover img,
body.xmdsite-detail-page .xmdsite-facts,
body.xmdsite-detail-page .xmdsite-adjacent-card,
body.xmdsite-detail-page .xmdsite-nav,
body.xmdsite-detail-page .xmdsite-nav-sublist,
body.xmdsite-detail-page .xmdsite-nav-toggle,
body.xmdsite-detail-page .xmdsite-gallery-trigger,
body.xmdsite-detail-page .xmdsite-gallery-image,
body.xmdsite-detail-page .xmdsite-gallery-close,
body.xmdsite-detail-page .xmdsite-article :where(img, video, blockquote) {
  border-radius: var(--xmdsite-radius) !important;
}

body.xmdsite-detail-page .xmdsite-main {
  gap: 26px;
  padding-top: clamp(24px, 3vw, 38px);
}

body.xmdsite-detail-page .xmdsite-detail-tabs {
  overflow: visible;
  gap: clamp(22px, 3vw, 30px);
  border-color: rgba(0, 122, 207, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
}

body.xmdsite-detail-page .xmdsite-detail-tabs > .xmdsite-cover {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(12px, 1.8vw, 18px);
  border: 1px solid rgba(0, 122, 207, 0.14);
  background: linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 12px 28px rgba(26, 88, 132, 0.06);
}

body.xmdsite-detail-page .xmdsite-detail-tabs > .xmdsite-cover img {
  width: auto;
  max-width: min(100%, 720px);
  max-height: clamp(240px, 34vw, 420px);
  margin: 0 auto;
  object-fit: contain;
  background: #f7fbff;
}

body.xmdsite-detail-page .xmdsite-footer-about,
body.xmdsite-detail-page .xmdsite-footer-nav,
body.xmdsite-detail-page .xmdsite-footer-aside,
body.xmdsite-detail-page .xmdsite-footer-qrcode {
  border-radius: 0 !important;
}

body.xmdsite-detail-page .xmdsite-detail-grid {
  align-items: start;
}

body.xmdsite-detail-page .xmdsite-facts {
  box-shadow: 0 10px 24px rgba(26, 88, 132, 0.06);
}

body.xmdsite-detail-page .xmdsite-adjacent-card {
  border-color: rgba(0, 122, 207, 0.14);
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    padding: clamp(26px, 3.4vw, 42px);
  }
}

@media (min-width: 961px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs > .xmdsite-cover {
    margin-bottom: 2px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    padding: 24px;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs > .xmdsite-cover img {
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    padding: 18px 14px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs > .xmdsite-cover {
    padding: 10px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs > .xmdsite-cover img {
    max-height: 240px;
  }
}

body.xmdsite-detail-page .xmdsite-detail-tabs {
  padding: clamp(16px, 2.2vw, 24px) !important;
  gap: clamp(14px, 2vw, 20px) !important;
}

body.xmdsite-detail-page .xmdsite-detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(236px, 260px);
  gap: clamp(12px, 1.6vw, 18px);
  align-items: stretch;
}

body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover {
  min-height: clamp(260px, 32vw, 380px);
  padding: clamp(10px, 1.4vw, 14px) !important;
  border-radius: 6px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
  max-width: min(100%, 720px) !important;
  max-height: clamp(230px, 30vw, 350px) !important;
  border-radius: 4px !important;
}

body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-facts {
  position: static;
  top: auto;
  min-width: 0;
  align-self: stretch;
  padding: clamp(14px, 1.7vw, 18px) !important;
  border-radius: 6px !important;
  box-shadow: 0 8px 18px rgba(26, 88, 132, 0.05);
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-facts-title {
  margin-bottom: 12px;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-label {
  margin-bottom: 4px;
  font-size: 11.5px;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-value {
  font-size: 13.5px;
  line-height: 1.55;
}

body.xmdsite-detail-page .xmdsite-tab-panel {
  min-width: 0;
}

body.xmdsite-detail-page .xmdsite-tab-panel > .xmdsite-article {
  max-width: none;
}

body.xmdsite-detail-page .xmdsite-article :where(p) {
  margin-bottom: 0.95em;
}

body.xmdsite-detail-page .xmdsite-article-head {
  padding-bottom: clamp(12px, 1.8vw, 18px) !important;
}

body.xmdsite-detail-page .xmdsite-article-head > .xmdsite-container {
  padding-top: clamp(18px, 2.2vw, 24px) !important;
  padding-bottom: clamp(18px, 2.2vw, 24px) !important;
}

body.xmdsite-detail-page .xmdsite-title-block {
  gap: 8px !important;
  padding-top: 12px !important;
}

body.xmdsite-detail-page .xmdsite-item-summary {
  line-height: 1.68 !important;
}

body.xmdsite-detail-page .xmdsite-main {
  padding-top: clamp(14px, 2vw, 20px) !important;
  gap: clamp(16px, 2vw, 22px) !important;
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover {
    min-height: auto;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
    max-height: 340px !important;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-facts {
    display: block;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    padding: 12px !important;
    gap: 12px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover {
    padding: 8px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
    max-height: 235px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-facts {
    padding: 12px !important;
  }
}

body.xmdsite-detail-page .xmdsite-container.xmdsite-main {
  width: min(1120px, calc(100% - clamp(36px, 5vw, 72px)));
}

body.xmdsite-detail-page .xmdsite-detail-tabs {
  padding: clamp(18px, 2.4vw, 30px) !important;
  gap: clamp(12px, 1.6vw, 18px) !important;
}

body.xmdsite-detail-page .xmdsite-detail-top {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 248px);
  gap: clamp(10px, 1.25vw, 14px) !important;
}

body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover {
  min-height: clamp(220px, 28vw, 332px);
  padding: clamp(8px, 1vw, 12px) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 8px 20px rgba(26, 88, 132, 0.05);
}

body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
  max-height: clamp(200px, 27vw, 310px) !important;
}

body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-facts {
  padding: clamp(10px, 1.25vw, 14px) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-facts-title {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.35;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-list {
  gap: 0;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
  margin-bottom: 7px !important;
  padding-bottom: 7px !important;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-label {
  margin: 0 !important;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-value {
  margin: 0 !important;
  font-size: 13px;
  line-height: 1.45;
}

body.xmdsite-detail-page .xmdsite-tabs-list {
  gap: clamp(18px, 2.6vw, 26px);
}

body.xmdsite-detail-page .xmdsite-tab {
  min-height: 44px;
  font-size: 15.5px;
}

body.xmdsite-detail-page .xmdsite-tab-panel > .xmdsite-article {
  padding-inline: clamp(4px, 1vw, 12px);
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-container.xmdsite-main {
    width: min(1120px, calc(100% - clamp(30px, 4.6vw, 48px)));
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    padding: clamp(16px, 2.8vw, 24px) !important;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-top {
    gap: 10px !important;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
    max-height: 300px !important;
  }
}

@media (max-width: 960px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-container.xmdsite-main {
    width: min(1120px, calc(100% - 28px));
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    padding: 14px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover {
    padding: 6px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
    max-height: 220px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-facts {
    padding: 10px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-item {
    grid-template-columns: 58px minmax(0, 1fr);
    margin-bottom: 6px !important;
    padding-bottom: 6px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-tab-panel > .xmdsite-article {
    padding-inline: 0;
  }
}

body.xmdsite-detail-page .xmdsite-container.xmdsite-main {
  width: min(1160px, calc(100% - clamp(28px, 5vw, 76px))) !important;
}

body.xmdsite-detail-page .xmdsite-detail-tabs {
  border-radius: 4px !important;
  padding: clamp(16px, 2vw, 24px) !important;
  gap: clamp(14px, 1.8vw, 20px) !important;
  background: #ffffff !important;
  border-color: rgba(0, 122, 207, 0.15) !important;
  box-shadow: 0 14px 34px rgba(22, 86, 132, 0.06) !important;
}

body.xmdsite-detail-page .xmdsite-detail-top {
  width: 100%;
  align-items: stretch !important;
  gap: clamp(12px, 1.6vw, 18px) !important;
}

body.xmdsite-detail-page .xmdsite-detail-top.has-media {
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr) !important;
}

body.xmdsite-detail-page .xmdsite-detail-top.no-media {
  grid-template-columns: 1fr !important;
}

body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover {
  width: 100% !important;
  min-height: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 8px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(0, 122, 207, 0.14) !important;
  background: linear-gradient(135deg, #f8fbff 0%, #edf6ff 100%) !important;
  box-shadow: none !important;
  overflow: hidden;
}

body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 420px !important;
  margin: 0 auto !important;
  border-radius: 3px !important;
  object-fit: contain !important;
  background: #ffffff !important;
}

body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-facts {
  position: static !important;
  top: auto !important;
  height: 100%;
  min-width: 0 !important;
  padding: clamp(12px, 1.45vw, 16px) !important;
  border-radius: 4px !important;
  border: 1px solid rgba(0, 122, 207, 0.14) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  box-shadow: none !important;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-facts-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px !important;
  color: #1f3b57 !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-facts-title::before {
  content: "";
  width: 3px;
  height: 14px;
  border-radius: 1px;
  background: var(--xmdsite-accent);
  flex: 0 0 auto;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px !important;
  margin: 0 !important;
}

body.xmdsite-detail-page .xmdsite-detail-top.no-media .xmdsite-fact-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-item {
  display: block !important;
  min-width: 0;
  margin: 0 !important;
  padding: 8px 9px !important;
  border: 1px solid rgba(0, 122, 207, 0.10) !important;
  border-left: 3px solid rgba(0, 122, 207, 0.38) !important;
  background: rgba(247, 251, 255, 0.86) !important;
  border-radius: 3px !important;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-label {
  display: block;
  margin: 0 0 3px !important;
  color: #7a8b9b !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap;
}

body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-value {
  display: block;
  margin: 0 !important;
  color: #31485c !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  overflow-wrap: anywhere;
}

body.xmdsite-detail-page .xmdsite-tabs-list {
  margin-top: 2px !important;
  border-radius: 4px !important;
}

body.xmdsite-detail-page .xmdsite-tab {
  border-radius: 3px !important;
  min-height: 40px !important;
}

@media (max-width: 1080px) {
  body.xmdsite-detail-page .xmdsite-detail-top.has-media {
    grid-template-columns: minmax(260px, 390px) minmax(0, 1fr) !important;
  }
}

@media (max-width: 1080px) {
  body.xmdsite-detail-page .xmdsite-detail-top.no-media .xmdsite-fact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.xmdsite-detail-page .xmdsite-container.xmdsite-main {
    width: min(1120px, calc(100% - 30px)) !important;
  }
}

@media (max-width: 860px) {
  body.xmdsite-detail-page .xmdsite-detail-top.has-media,
  body.xmdsite-detail-page .xmdsite-detail-top.no-media {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 860px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover {
    padding: 6px !important;
  }
}

@media (max-width: 860px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
    max-height: 360px !important;
  }
}

@media (max-width: 860px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-list,
  body.xmdsite-detail-page .xmdsite-detail-top.no-media .xmdsite-fact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-container.xmdsite-main {
    width: calc(100% - 20px) !important;
    padding-top: 10px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    padding: 10px !important;
    gap: 10px !important;
    box-shadow: 0 8px 22px rgba(22, 86, 132, 0.05) !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top {
    gap: 8px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover {
    padding: 4px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
    max-height: 260px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-facts {
    padding: 9px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-facts-title {
    margin-bottom: 8px !important;
    font-size: 12.5px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-list,
  body.xmdsite-detail-page .xmdsite-detail-top.no-media .xmdsite-fact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-item {
    padding: 7px 8px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-label {
    font-size: 10.5px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-value {
    font-size: 12.2px !important;
    line-height: 1.32 !important;
  }
}

@media (max-width: 420px) {
  body.xmdsite-detail-page .xmdsite-container.xmdsite-main {
    width: calc(100% - 16px) !important;
  }
}

@media (max-width: 420px) {
  body.xmdsite-detail-page .xmdsite-detail-tabs {
    padding: 8px !important;
  }
}

@media (max-width: 420px) {
  body.xmdsite-detail-page .xmdsite-detail-top > .xmdsite-cover img {
    max-height: 230px !important;
  }
}

@media (max-width: 420px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-list,
  body.xmdsite-detail-page .xmdsite-detail-top.no-media .xmdsite-fact-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 420px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-item {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    column-gap: 8px;
    padding: 7px 8px !important;
  }
}

@media (max-width: 420px) {
  body.xmdsite-detail-page .xmdsite-detail-top .xmdsite-fact-label {
    margin: 1px 0 0 !important;
  }
}
