:root {
  --container: min(1300px, calc(100vw - 48px));
  --page-bg: #f6f0e7;
  --paper: #fbf8f0;
  --paper-strong: rgba(255, 255, 250, 0.9);
  --brown: #b78750;
  --brown-deep: #8e6134;
  --brown-soft: #d3b487;
  --ink: #33302b;
  --muted: #8a8176;
  --line: rgba(174, 135, 87, 0.28);
  --white-line: rgba(255, 255, 255, 0.48);
  --shadow: 0 18px 38px rgba(94, 69, 42, 0.15);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --kai: "STKaiti", "KaiTi", "Kaiti SC", serif;
  font-family:
    "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans",
    "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
  color: var(--ink);
  background: var(--page-bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background-color: var(--page-bg);
  background-image: url("/images/2026-bg-sketch.png"), url("/images/2026-bg.jpg");
  background-position:
    right -100px center,
    center top;
  background-size:
    min(1096px, 86vw) auto,
    801px 1067px;
  background-repeat: no-repeat, repeat;
}

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

button,
label[for] {
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  height: 108px;
  background: url("/images/2026-top_bg.jpg") center top / auto 108px repeat-x;
}

.header-inner {
  position: relative;
  display: grid;
  align-items: end;
  width: var(--container);
  height: 108px;
  margin-inline: auto;
}

.brand {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 425px;
}

.brand img {
  width: 100%;
  height: auto;
}

.domain-search {
  position: absolute;
  top: 26px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2c2924;
  font-size: 13px;
  font-weight: 600;
}

.search-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 30px;
  padding: 0 10px 0 14px;
  border: 2px solid rgba(123, 83, 40, 0.35);
  border-radius: 9px;
  background: rgba(255, 250, 240, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.search-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.search-icon::before,
.search-icon::after {
  content: "";
  position: absolute;
}

.search-icon::before {
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  border: 3px solid #6b431f;
  border-radius: 50%;
}

.search-icon::after {
  right: 0;
  bottom: 1px;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: #6b431f;
  transform: rotate(45deg);
}

.nav-state,
.nav-button {
  display: none;
}

.main-nav {
  justify-self: end;
  align-self: end;
  padding-bottom: 14px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-list > li {
  position: relative;
  min-width: max-content;
}

.nav-list > li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 112px;
  border-radius: 6px 6px 0 0;
  background: url("/images/2026-submenu_bg.png") center bottom / 112px 200px no-repeat;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
}

.nav-list > li:hover::before,
.nav-list > li:focus-within::before,
.nav-list > .nav-item-active::before {
  opacity: 1;
}

.nav-list > li > a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 11px 0 12px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #2b2924;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-list > li:hover > a,
.nav-list > li:focus-within > a,
.nav-list > .nav-item-active > a {
  color: #fff9ec;
}

.nav-list > .nav-item-active > a {
  color: #fff9ec;
}

.sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 20;
  width: 112px;
  height: 200px;
  overflow: hidden;
  padding: 17px 10px 0;
  border-radius: 0 0 7px 7px;
  background: url("/images/2026-submenu_bg.png") center bottom / 112px 200px no-repeat;
  box-shadow: 0 12px 20px rgba(93, 60, 29, 0.2);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(-50%);
  transition:
    clip-path 0.28s ease,
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.nav-list > li:hover > .sub-menu,
.nav-list > li:focus-within > .sub-menu,
.nav-list > .nav-item-active > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  clip-path: inset(0);
  transform: translateX(-50%);
}

.sub-menu a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  padding-bottom: 8px;
  color: #fff7e6;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 0 rgba(78, 45, 18, 0.28);
  white-space: nowrap;
}

.sub-menu a::after {
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  transition:
    width 0.24s ease,
    opacity 0.24s ease;
}

.sub-menu a:hover::after,
.sub-menu a:focus-visible::after {
  width: 100%;
}

.sub-menu > li:not(.sub-decoration) {
  text-align: center;
}

.sub-decoration {
  pointer-events: none;
}

.sub-palace {
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 54px;
  height: 48px;
  object-fit: contain;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #dde1dd;
}

.hero-background {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
}

.hero-text,
.hero-phone {
  position: absolute;
  z-index: 1;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-text {
  top: clamp(34px, 9.6vw, 154px);
  right: clamp(26px, 15.5vw, 248px);
  width: clamp(108px, 13.125vw, 210px);
  height: auto;
  transform: translateX(96px);
  transition:
    opacity 1.18s cubic-bezier(0.18, 0.86, 0.28, 1) 0.16s,
    transform 1.18s cubic-bezier(0.18, 0.86, 0.28, 1) 0.16s,
    visibility 0s linear 0.16s;
}

.hero-phone {
  bottom: 0;
  left: 50%;
  width: min(81.0625vw, 1297px);
  height: auto;
  transform: translate(-50%, 72px);
  transition:
    opacity 1.18s cubic-bezier(0.18, 0.86, 0.28, 1) 0.34s,
    transform 1.18s cubic-bezier(0.18, 0.86, 0.28, 1) 0.34s,
    visibility 0s linear 0.34s;
}

.hero.is-preparing .hero-text,
.hero.is-preparing .hero-phone {
  visibility: hidden;
  opacity: 0;
  transition: none;
}

.hero.is-visible .hero-text,
.hero.is-visible .hero-phone {
  visibility: visible;
  opacity: 1;
}

.hero.is-visible .hero-text {
  transform: translateX(0);
}

.hero.is-visible .hero-phone {
  transform: translate(-50%, 0);
}

.paper-stage {
  position: relative;
  z-index: 1;
  padding: 72px 0 50px;
  overflow: hidden;
  background: transparent;
}

.news-area {
  --news-card-height: 480px;
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.feature-card,
.news-board,
.service-rail,
.notice-panel,
.specialty-card {
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  height: var(--news-card-height);
  overflow: hidden;
  border-radius: 4px;
  background: #ddd3c3;
}

.feature-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px) scale(1.02);
  transition:
    opacity 0.68s cubic-bezier(0.18, 0.86, 0.28, 1),
    transform 0.68s cubic-bezier(0.18, 0.86, 0.28, 1);
  will-change: opacity, transform;
}

.feature-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.feature-slide.is-leaving {
  z-index: 1;
  opacity: 0;
  transform: translateX(-26px) scale(0.99);
}

.feature-illustration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(28, 56, 68, 0.08) 0 2px, transparent 2px 68px),
    linear-gradient(180deg, #e4e6e1 0 16%, #f7f2ea 16% 52%, #bfc7c9 52% 54%, #d8d4c9 54% 100%);
}

.feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.feature-illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.08), rgba(73, 49, 28, 0.18)),
    linear-gradient(90deg, rgba(94, 58, 24, 0.08), transparent 34% 66%, rgba(94, 58, 24, 0.08));
  pointer-events: none;
}

.feature-image ~ .hallway-sign,
.feature-image ~ .doctor,
.feature-image ~ .banner-flag {
  display: none;
}

.feature-illustration--green {
  background:
    linear-gradient(90deg, rgba(44, 94, 70, 0.1) 0 2px, transparent 2px 68px),
    linear-gradient(180deg, #dfe8dc 0 16%, #f4f4ea 16% 52%, #b5c6b8 52% 54%, #d5d7c9 54% 100%);
}

.feature-illustration--blue {
  background:
    linear-gradient(90deg, rgba(40, 86, 113, 0.1) 0 2px, transparent 2px 68px),
    linear-gradient(180deg, #dce7e8 0 16%, #f1f4f0 16% 52%, #aec2ca 52% 54%, #d0d5d2 54% 100%);
}

.feature-illustration--rose {
  background:
    linear-gradient(90deg, rgba(129, 70, 70, 0.09) 0 2px, transparent 2px 68px),
    linear-gradient(180deg, #eadfdb 0 16%, #f6f1eb 16% 52%, #c8b8b6 52% 54%, #d9d1ca 54% 100%);
}

.feature-illustration--gold {
  background:
    linear-gradient(90deg, rgba(133, 96, 45, 0.11) 0 2px, transparent 2px 68px),
    linear-gradient(180deg, #e7e0cf 0 16%, #f8f1e5 16% 52%, #c8ba9b 52% 54%, #d8d1bf 54% 100%);
}

.feature-illustration::before {
  content: "";
  position: absolute;
  display: none;
  inset: 80px 40px 0 32px;
  background:
    linear-gradient(90deg, rgba(20, 72, 70, 0.24) 0 8px, transparent 8px 44px) 0 0 / 70px 100%
      repeat-x,
    linear-gradient(
      100deg,
      transparent 0 38%,
      rgba(143, 126, 101, 0.28) 38% 39%,
      transparent 39% 100%
    );
  transform: perspective(380px) rotateX(10deg);
}

.hallway-sign {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 50%;
  width: 150px;
  padding: 8px 6px 7px;
  color: #f5e8d6;
  background: #28627a;
  border: 3px solid rgba(255, 255, 255, 0.48);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transform: translateX(-50%);
}

.hallway-sign small {
  font-size: 12px;
  font-weight: 400;
}

.doctor {
  position: absolute;
  z-index: 1;
  bottom: 42px;
  width: 52px;
  height: 128px;
  border-radius: 18px 18px 10px 10px;
  background:
    radial-gradient(circle at 50% 16px, #f2bd72 0 16px, transparent 17px),
    linear-gradient(#fff 0 74%, #e8e7e1 74%);
  border: 1px solid rgba(100, 91, 76, 0.14);
}

.doctor::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  height: 42px;
  border-radius: 5px;
  background: linear-gradient(#b72122, #741515);
}

.doctor-one {
  left: 190px;
}

.doctor-two {
  left: 242px;
  transform: scale(1.05);
}

.doctor-three {
  left: 294px;
  transform: scale(1.02);
}

.doctor-four {
  left: 346px;
}

.banner-flag {
  position: absolute;
  z-index: 1;
  right: 148px;
  bottom: 43px;
  width: 76px;
  height: 126px;
  border: 4px solid #cf9b42;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 0 42%, #e9c26c 42% 48%, transparent 48%),
    linear-gradient(#9d1f21, #6f1618);
}

.feature-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  height: 94px;
  padding: 0 24px 0 28px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(163, 113, 61, 0.66), rgba(139, 91, 45, 0.58));
}

.feature-caption::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(70, 39, 20, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.feature-card:hover .feature-caption::before,
.feature-card:focus-within .feature-caption::before {
  opacity: 1;
}

.feature-caption h2 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.feature-caption b {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .feature-caption::before {
    transition: none;
  }
}

.news-board {
  position: relative;
  height: var(--news-card-height);
  padding: 28px 36px 20px;
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.84)),
    linear-gradient(120deg, transparent 0 72%, rgba(177, 143, 94, 0.13) 72% 73%, transparent 73%);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 26px;
  margin-bottom: 23px;
  color: #8e8a84;
  font-size: 16px;
  text-align: center;
}

.tabs button {
  position: relative;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 10px 6px;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.tabs button::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 2px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #b48648;
  opacity: 0;
  transform: translateX(50%) scaleX(0.36);
  transform-origin: center;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.tabs button:not(.tab-active):hover,
.tabs button:not(.tab-active):focus-visible {
  color: #b48648;
  transform: translateY(-2px);
}

.tabs button:not(.tab-active):hover::after,
.tabs button:not(.tab-active):focus-visible::after {
  opacity: 1;
  transform: translateX(50%) scaleX(1);
}

.tabs button:focus-visible {
  outline: 2px solid rgba(180, 134, 72, 0.42);
  outline-offset: 3px;
  border-radius: 4px;
}

.tabs .tab-active {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 131px;
  height: 46px;
  padding: 5px 8px 0 8px;
  color: #b48648;
  background: url("/images/2026-tab-active.png") center -16px / 131px 87px no-repeat;
}

.tabs .tab-active:hover,
.tabs .tab-active:focus-visible {
  transform: translateY(-1px);
}

.news-panel {
  height: calc(var(--news-card-height) - 117px);
}

.news-board[data-tab-direction="next"] .news-panel.is-active {
  animation: news-panel-slide-next 0.34s ease both;
}

.news-board[data-tab-direction="prev"] .news-panel.is-active {
  animation: news-panel-slide-prev 0.34s ease both;
}

@keyframes news-panel-slide-next {
  from {
    opacity: 0;
    transform: translateX(22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes news-panel-slide-prev {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tabs button,
  .tabs button::after {
    transition: none;
  }

  .tabs button:not(.tab-active):hover,
  .tabs button:not(.tab-active):focus-visible,
  .tabs .tab-active:hover,
  .tabs .tab-active:focus-visible {
    transform: none;
  }

  .news-board[data-tab-direction="next"] .news-panel.is-active,
  .news-board[data-tab-direction="prev"] .news-panel.is-active {
    animation: none;
  }
}

.news-panel-list {
  display: flex;
  flex-direction: column;
}

.news-panel[hidden] {
  display: none;
}

.news-group {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 62px;
  grid-template-rows: auto auto;
  gap: 12px 10px;
  padding: 8px 0 0;
}

.news-group::after {
  content: "";
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: center;
  height: 1px;
  background: rgba(178, 151, 116, 0.28);
}

.news-badge {
  grid-column: 1;
  grid-row: 1;
  display: block;
  align-self: start;
  width: 54px;
}

.news-badge img {
  width: 54px;
  height: auto;
}

.news-list {
  grid-column: 2 / -1;
  grid-row: 1;
  display: grid;
  gap: 9px;
  min-width: 0;
}

.news-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 14px;
  align-items: center;
  color: #2d2b28;
  font-size: 15px;
  line-height: 1.35;
}

.news-list a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list a,
.tab-news-list a,
.notice-column li a {
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-list a::after,
.tab-news-list a::after,
.notice-column li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: radial-gradient(circle, rgba(120, 113, 104, 0.82) 1px, transparent 1.2px) left
    center / 5px 2px repeat-x;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.news-list li:hover a,
.news-list a:focus-visible,
.tab-news-list li:hover a,
.tab-news-list a:focus-visible,
.notice-column li:hover a,
.notice-column li a:focus-visible {
  color: var(--brown-deep);
}

.news-list li:hover a::after,
.news-list a:focus-visible::after,
.tab-news-list li:hover a::after,
.tab-news-list a:focus-visible::after,
.notice-column li:hover a::after,
.notice-column li a:focus-visible::after {
  opacity: 1;
}

.news-list time {
  display: inline-flex;
  justify-content: center;
  min-width: 55px;
  padding: 3px 8px;
  color: #fff;
  border-radius: 5px;
  background: #dfd0bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.more-link {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  white-space: nowrap;
}

.more-link,
.tab-more-link,
.column-title a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: #a57a45;
  font-size: 14px;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.more-link::after,
.tab-more-link::after,
.column-title a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentcolor;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: right center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.more-link:hover,
.more-link:focus-visible,
.tab-more-link:hover,
.tab-more-link:focus-visible,
.column-title a:hover,
.column-title a:focus-visible {
  color: var(--brown-deep);
  transform: translateX(2px);
}

.more-link:hover::after,
.more-link:focus-visible::after,
.tab-more-link:hover::after,
.tab-more-link:focus-visible::after,
.column-title a:hover::after,
.column-title a:focus-visible::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.more-link:focus-visible,
.tab-more-link:focus-visible,
.column-title a:focus-visible {
  outline: 2px solid rgba(180, 134, 72, 0.34);
  outline-offset: 5px;
}

.tab-news-list {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.tab-news-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 18px;
  align-items: center;
  min-height: 28px;
  color: #2d2b28;
  font-size: 15px;
  line-height: 1.35;
}

.tab-news-list a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab-news-list time {
  color: #9b9389;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  text-align: right;
}

.tab-more-link {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(178, 151, 116, 0.28);
}

.service-rail {
  position: absolute;
  top: 72px;
  right: max(20px, calc((100vw - 1300px) / 2 - 126px));
  z-index: 4;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  width: 100px;
  min-height: 462px;
  padding: 34px 14px 76px;
  overflow: visible;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 28% 14%, rgba(255, 255, 255, 0.9), transparent 42%);
  box-shadow:
    0 14px 34px rgba(102, 82, 58, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.86);
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition:
    opacity 0.58s ease,
    transform 0.58s ease;
}

.service-rail.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.service-rail.is-preparing {
  opacity: 0;
  pointer-events: none;
  transform: translateX(44px);
  transition: none;
}

.service-rail::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 56px;
  background: url("/images/2026-aside-icon.png") center bottom / 54px auto no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.service-rail a {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  min-width: 0;
  padding: 8px 4px;
  color: #5b5a58;
  border-radius: 14px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.1;
  text-align: center;
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.service-rail a:hover,
.service-rail a:focus-visible {
  color: #9f6a32;
  background: rgba(184, 135, 78, 0.12);
  box-shadow: inset 0 0 0 1px rgba(184, 135, 78, 0.18);
  transform: translateY(-3px);
}

.service-rail a:focus-visible {
  outline: 2px solid rgba(180, 134, 72, 0.42);
  outline-offset: 4px;
}

.service-rail a:last-child {
  border-bottom: 0;
}

.service-rail img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition:
    filter 0.24s ease,
    transform 0.24s ease;
}

.service-rail a:hover > img,
.service-rail a:focus-visible > img {
  filter: drop-shadow(0 8px 10px rgba(128, 88, 47, 0.18));
  transform: translateY(-2px) scale(1.08);
}

.service-rail-qr {
  position: absolute;
  top: 50%;
  right: calc(100% + 16px);
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 10px;
  border: 1px solid rgba(184, 135, 78, 0.22);
  border-radius: 12px;
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 18px 32px rgba(95, 70, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(12px, -50%);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease;
  visibility: hidden;
}

.service-rail-qr::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(184, 135, 78, 0.22);
  border-right: 1px solid rgba(184, 135, 78, 0.22);
  background: rgba(255, 253, 247, 0.98);
  transform: translateY(-50%) rotate(45deg);
}

.service-rail-qr img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-rail-wechat:hover .service-rail-qr,
.service-rail-wechat:focus-visible .service-rail-qr {
  opacity: 1;
  transform: translate(0, -50%);
  visibility: visible;
}

.notice-area {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  margin-top: 58px;
}

.shortcut-stack {
  display: grid;
  gap: 30px;
}

.shortcut-stack a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 0 0 24px;
  overflow: hidden;
  color: white;
  border-radius: 4px;
  background:
    radial-gradient(ellipse at 82% 30%, rgba(255, 247, 220, 0.1) 0 12px, transparent 13px),
    radial-gradient(ellipse at 90% 60%, rgba(255, 247, 220, 0.08) 0 14px, transparent 15px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(111, 68, 28, 0.07)), #b8874e;
  font-family: var(--serif);
  font-size: 25px;
  box-shadow:
    0 10px 20px rgba(113, 77, 39, 0.14),
    inset 0 0 0 1px rgba(255, 248, 230, 0.18);
  transition:
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.shortcut-stack a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0 48%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 52% 100%
  );
  opacity: 0;
  transform: translateX(-22%);
  transition:
    opacity 0.22s ease,
    transform 0.32s ease;
}

.shortcut-stack a::after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 8px;
  width: 76px;
  height: 52px;
  background:
    radial-gradient(
      ellipse 18px 8px at 28px 18px,
      rgba(255, 248, 224, 0.42) 0 68%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 18px 8px at 48px 28px,
      rgba(255, 248, 224, 0.36) 0 68%,
      transparent 72%
    ),
    linear-gradient(62deg, transparent 0 49%, rgba(255, 248, 224, 0.42) 50%, transparent 51% 100%);
  opacity: 0.18;
  pointer-events: none;
  transform: rotate(-12deg);
}

.shortcut-stack a:hover,
.shortcut-stack a:focus-visible {
  background-color: #c19057;
  box-shadow:
    0 16px 28px rgba(113, 77, 39, 0.2),
    inset 0 0 0 1px rgba(255, 248, 230, 0.28);
  transform: translateY(-3px);
}

.shortcut-stack a:hover::before,
.shortcut-stack a:focus-visible::before {
  opacity: 1;
  transform: translateX(18%);
}

.shortcut-stack a:focus-visible {
  outline: 2px solid rgba(180, 134, 72, 0.42);
  outline-offset: 4px;
}

.shortcut-stack a:active {
  box-shadow:
    0 7px 14px rgba(113, 77, 39, 0.14),
    inset 0 3px 10px rgba(86, 50, 20, 0.18);
  transform: translateY(1px);
  transition-duration: 0.08s;
}

.shortcut-stack span,
.shortcut-stack img {
  position: relative;
  z-index: 1;
}

.shortcut-stack img {
  width: 82px;
  height: 82px;
  margin-right: -12px;
  margin-bottom: -20px;
  object-fit: contain;
  transition: transform 0.22s ease;
}

.shortcut-stack a:hover img,
.shortcut-stack a:focus-visible img {
  transform: translate(-3px, -3px) scale(1.04);
}

.shortcut-stack a:active img {
  transform: translate(0, 0) scale(0.98);
}

.notice-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  padding: 28px 42px 34px;
  border-radius: 4px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.86)),
    linear-gradient(
      110deg,
      transparent 0 55%,
      rgba(174, 140, 95, 0.12) 55% 56%,
      transparent 56% 100%
    );
}

.column-title {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  height: 50px;
  padding: 0 18px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: rgba(239, 231, 218, 0.72);
  color: #4e4a45;
}

.column-title h2 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
}

.column-title a {
  justify-self: end;
}

.column-title img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.notice-column ul {
  display: grid;
  gap: 20px;
}

.notice-column li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  color: #4a4742;
  font-size: 17px;
  line-height: 1.35;
}

.notice-column li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-column time {
  color: #a79c8e;
  font-family: Georgia, "Times New Roman", serif;
}

.specialties {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 86px;
}

.specialty-card {
  position: relative;
  min-height: 460px;
  padding: 158px 26px 112px;
  overflow: hidden;
  color: #b28a52;
  border-radius: 28px;
  background: var(--specialty-bg) center / 100% 100% no-repeat;
  text-align: center;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease;
  will-change: opacity, transform;
}

.specialties.is-visible .specialty-card {
  opacity: 1;
  transform: translateY(0);
}

.specialties.is-preparing .specialty-card {
  opacity: 0;
  transform: translateY(52px);
  transition: none;
}

.specialties.is-visible .specialty-card--1 {
  transition-delay: 0s;
}

.specialties.is-visible .specialty-card--2 {
  transition-delay: 0.12s;
}

.specialties.is-visible .specialty-card--3 {
  transition-delay: 0.24s;
}

.specialties.is-visible .specialty-card--4 {
  transition-delay: 0.36s;
}

.specialty-card--1 {
  --specialty-bg: url("/images/2026-specialty-card1.png");
}

.specialty-card--2 {
  --specialty-bg: url("/images/2026-specialty-card2.png");
}

.specialty-card--3 {
  --specialty-bg: url("/images/2026-specialty-card3.png");
}

.specialty-card--4 {
  --specialty-bg: url("/images/2026-specialty-card4.png");
}

.specialty-icon {
  position: absolute;
  top: 120px;
  left: 50%;
  width: 59px;
  height: 59px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.specialty-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: 0;
}

.specialty-card p {
  color: rgba(165, 139, 108, 0.82);
  font-size: 14px;
  line-height: 1.58;
  word-break: keep-all;
}

.specialty-card > a {
  position: absolute;
  left: 50%;
  bottom: 80px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 53px;
  height: 71px;
  transform: translateX(-50%);
  transition:
    filter 0.32s ease,
    transform 0.32s ease;
}

.specialty-card > a img {
  width: 53px;
  height: 71px;
  object-fit: contain;
}

.specialty-card > a:hover,
.specialty-card > a:focus-visible {
  filter: drop-shadow(0 8px 10px rgba(130, 87, 37, 0.2));
  transform: translate(-50%, -4px);
}

.specialty-card > a:focus-visible {
  outline: 2px solid rgba(180, 134, 72, 0.42);
  outline-offset: 5px;
}

.specialty-card:hover > a,
.specialty-card:focus-within > a {
  filter: drop-shadow(0 8px 10px rgba(130, 87, 37, 0.2));
  transform: translate(-50%, -8px);
}

.specialty-overlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 7px 8px;
  height: 80%;
  max-height: calc(100% - 28px);
  padding: 22px 18px 20px;
  overflow-y: auto;
  color: #fff8e8;
  border: 1px solid rgba(255, 242, 208, 0.32);
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 238, 181, 0.08) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(255, 238, 181, 0.08) 1px, transparent 1px) 0 0 / 18px 18px,
    radial-gradient(circle at 24% 0%, rgba(255, 238, 181, 0.22), transparent 34%),
    linear-gradient(160deg, rgba(104, 64, 28, 0.94), rgba(157, 105, 48, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 28px rgba(92, 60, 30, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(92%);
  transition:
    opacity 0.48s cubic-bezier(0.18, 0.86, 0.28, 1),
    transform 0.48s cubic-bezier(0.18, 0.86, 0.28, 1);
  scrollbar-width: none;
}

.specialty-overlay::-webkit-scrollbar {
  display: none;
}

.specialty-card:hover .specialty-overlay,
.specialty-card:focus-within .specialty-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.specialty-overlay--dense {
  gap: 6px 7px;
  padding: 18px 16px;
}

.specialty-overlay a {
  position: relative;
  display: inline-flex;
  flex: 0 1 auto;
  max-width: 100%;
  padding: 5px 9px;
  color: rgba(255, 249, 232, 0.92);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
  white-space: normal;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.specialty-overlay a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 1px;
  border-radius: 999px;
  background: currentcolor;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.specialty-overlay a:hover,
.specialty-overlay a:focus-visible {
  color: #fff8d1;
  background: rgba(255, 245, 216, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 241, 199, 0.22);
  transform: translateX(3px);
}

.specialty-overlay a:hover::after,
.specialty-overlay a:focus-visible::after {
  opacity: 0.62;
  transform: scaleX(1);
}

.specialty-overlay a:focus-visible {
  outline: 2px solid rgba(255, 239, 192, 0.48);
  outline-offset: 2px;
}

@media (hover: none) {
  .specialty-card {
    padding-bottom: 32px;
    cursor: pointer;
    background-size: contain;
    background-position: center center;
  }

  .specialty-card > a {
    display: none;
  }

  .specialty-card:focus-visible {
    outline: 2px solid rgba(180, 134, 72, 0.48);
    outline-offset: 4px;
  }

  .specialty-overlay {
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    height: auto;
    max-height: 0;
    margin: 0 -6px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      max-height 0.46s cubic-bezier(0.18, 0.86, 0.28, 1),
      opacity 0.28s ease,
      transform 0.46s cubic-bezier(0.18, 0.86, 0.28, 1),
      margin-top 0.46s cubic-bezier(0.18, 0.86, 0.28, 1),
      padding-top 0.46s cubic-bezier(0.18, 0.86, 0.28, 1),
      padding-bottom 0.46s cubic-bezier(0.18, 0.86, 0.28, 1);
  }

  .specialty-card.is-expanded .specialty-overlay {
    max-height: 1000px;
    margin: 18px -6px 0;
    padding-top: 18px;
    padding-bottom: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) and (hover: none) {
  .specialty-overlay {
    transition: none;
  }

  .specialty-card.is-expanded .specialty-overlay {
    transform: none;
  }
}

.inner-page {
  background-color: var(--page-bg);
}

.inner-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #f6f0e7;
}

.inner-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.inner-hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.inner-hero-title h1 {
  color: #8a5d31;
  font-family: var(--serif);
  font-size: clamp(24px, 3.25vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.6);
  padding-left: 20px;
}

.inner-stage {
  position: relative;
  padding: 22px 0 54px;
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: #786f65;
  font-size: 14px;
}

.breadcrumb a {
  transition: color 0.2s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--brown-deep);
}

.breadcrumb-home {
  position: relative;
  width: 16px;
  height: 15px;
}

.breadcrumb-home::before {
  content: "";
  position: absolute;
  inset: 4px 2px 0;
  border-radius: 2px 2px 1px 1px;
  background: #b6874f;
}

.breadcrumb-home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border-top: 4px solid #b6874f;
  border-left: 4px solid #b6874f;
  transform: rotate(45deg);
}

.inner-shell {
  display: grid;
  gap: 26px;
  align-items: start;
}

.about-shell,
.list-shell,
.experts-shell {
  grid-template-columns: 250px minmax(0, 1fr);
}

.inner-sidebar {
  min-width: 0;
}

.side-nav {
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 253, 247, 0.76);
  box-shadow: 0 10px 24px rgba(105, 80, 50, 0.1);
}

.side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 24px;
  color: #5b5147;
  border-bottom: 1px solid rgba(177, 145, 106, 0.24);
  font-family: var(--serif);
  font-size: 21px;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.side-nav a:last-child {
  border-bottom: 0;
}

.side-nav a::before,
.side-nav a::after {
  content: "";
  flex: 0 0 auto;
}

.side-nav a::before {
  position: absolute;
  right: 31px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
}

.side-nav a::after {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.72;
}

.side-nav a:hover,
.side-nav a:focus-visible {
  color: var(--brown-deep);
  background: rgba(255, 248, 235, 0.88);
  transform: translateX(3px);
}

.side-nav .is-active {
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(136, 88, 42, 0.7), rgba(176, 125, 66, 0.92)),
    url("/images/2026-top_bg.jpg") center / auto 108px repeat-x;
}

.side-nav .is-active::before,
.side-nav .is-active::after {
  opacity: 1;
}

.culture-card {
  min-height: 240px;
  margin-top: 20px;
  padding: 35px 22px;
  overflow: hidden;
  border-radius: 7px;
  background:
    radial-gradient(circle at 72% 78%, rgba(157, 96, 47, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 254, 249, 0.9), rgba(245, 232, 211, 0.86)),
    url("/images/2026-bg.jpg") center / 801px 1067px repeat;
  box-shadow: 0 10px 24px rgba(105, 80, 50, 0.1);
}

.culture-card h2 {
  color: #9b6836;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.culture-card p {
  margin-top: 14px;
  color: #9b8268;
  font-size: 14px;
}

.culture-card::after {
  content: "";
  display: block;
  width: 124px;
  height: 92px;
  margin: 48px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 78%, rgba(158, 109, 62, 0.24), transparent 42%),
    linear-gradient(0deg, rgba(139, 92, 45, 0.14), transparent);
}

.inner-content,
.list-panel,
.article-card,
.aside-card {
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 92% 100%, rgba(183, 135, 80, 0.1), transparent 36%);
  box-shadow: 0 12px 32px rgba(110, 80, 45, 0.1);
}

.inner-content {
  min-width: 0;
  padding: 30px 34px 28px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-heading span {
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: #bc8a51;
}

.section-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #5d4430;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
}

.section-heading h2::after {
  content: "";
  width: 54px;
  height: 14px;
  background:
    linear-gradient(#d7b383, #d7b383) 0 50% / 42px 1px no-repeat,
    radial-gradient(circle, transparent 0 5px, #d7b383 5.5px 6.5px, transparent 7px) right center /
      14px 14px no-repeat;
}

.section-heading-small {
  margin-top: 28px;
  margin-bottom: 18px;
}

.section-heading-small h2 {
  font-size: 23px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 296px;
  gap: 34px;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 18px;
  color: #514c45;
  font-size: 16px;
  line-height: 2;
  text-indent: 2em;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(83, 62, 38, 0.12);
}

.about-photo img {
  width: 100%;
  height: auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-stats li,
.value-grid article {
  border: 1px solid rgba(190, 142, 84, 0.36);
  border-radius: 7px;
  background: rgba(255, 252, 246, 0.66);
  text-align: center;
}

.about-stats li {
  min-height: 120px;
  padding: 18px 12px 14px;
}

.about-stats strong {
  display: block;
  margin-top: 10px;
  color: #a8753e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
}

.about-stats small {
  font-size: 14px;
  font-weight: 400;
}

.about-stats p {
  margin-top: 8px;
  color: #7f756b;
  font-size: 13px;
}

.stat-icon {
  position: relative;
  display: block;
  width: 32px;
  height: 30px;
  margin: 0 auto;
  color: #b6874f;
}

.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
}

.stat-icon-building::before {
  inset: 4px 7px 0;
  border: 3px solid currentColor;
  border-bottom-width: 5px;
}

.stat-icon-building::after {
  inset: 9px 13px 0;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.stat-icon-badge::before {
  inset: 4px 5px 5px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.stat-icon-badge::after {
  left: 12px;
  bottom: 0;
  border-top: 10px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.stat-icon-bed::before {
  right: 2px;
  bottom: 7px;
  left: 2px;
  height: 9px;
  border: 3px solid currentColor;
  border-top: 0;
}

.stat-icon-bed::after {
  left: 3px;
  bottom: 16px;
  width: 11px;
  height: 8px;
  border-radius: 4px 4px 0 0;
  background: currentColor;
}

.stat-icon-team::before {
  inset: 5px 9px 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    -10px 7px 0 -2px currentColor,
    10px 7px 0 -2px currentColor;
}

.stat-icon-team::after {
  right: 2px;
  bottom: 3px;
  left: 2px;
  height: 11px;
  border-radius: 10px 10px 3px 3px;
  background: currentColor;
}

.stat-icon-kit::before {
  inset: 5px 4px 0;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.stat-icon-kit::after {
  top: 13px;
  left: 11px;
  width: 10px;
  height: 10px;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 3px no-repeat,
    linear-gradient(currentColor, currentColor) center / 3px 100% no-repeat;
}

.history-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding-top: 36px;
}

.history-line::before {
  content: "";
  position: absolute;
  top: 54px;
  right: 6%;
  left: 6%;
  border-top: 1px dashed rgba(188, 138, 81, 0.62);
}

.history-line li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #6b6158;
  text-align: center;
}

.history-line li::before {
  content: "";
  position: relative;
  z-index: 1;
  order: 2;
  width: 14px;
  height: 14px;
  border: 3px solid #d9c4a9;
  border-radius: 50%;
  background: #a8753e;
  box-shadow: 0 0 0 4px rgba(255, 252, 246, 0.94);
}

.history-line time {
  color: #674b35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.history-line strong {
  order: 3;
  color: #7f5c38;
  font-size: 14px;
}

.history-line p {
  order: 4;
  font-size: 12px;
  line-height: 1.55;
}

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

.value-grid article {
  min-height: 104px;
  padding: 17px 14px;
}

.value-grid span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
  color: #b6874f;
  border: 1px solid rgba(190, 142, 84, 0.42);
  border-radius: 50%;
  font-size: 10px;
}

.value-grid h3 {
  color: #6a4e37;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.value-grid p {
  margin-top: 8px;
  color: #675e55;
  font-size: 13px;
  line-height: 1.6;
}

.list-shell {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 32px rgba(110, 80, 45, 0.1);
}

.list-side-card {
  position: relative;
  min-height: 760px;
  padding: 25px 10px 280px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 232, 210, 0.84)),
    url("/images/2026-bg.jpg") center / 801px 1067px repeat;
}

.list-side-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 310px;
  opacity: 0.2;
  background: url("/images/2026-list_aside_bg.jpg") center bottom / 100% auto no-repeat;
  pointer-events: none;
}

.list-side-card .list-category {
  position: relative;
  z-index: 1;
}

.list-side-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  color: #9b6836;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.list-side-card h2::after {
  content: "";
  width: 42px;
  height: 28px;
  background:
    radial-gradient(circle at 12px 15px, transparent 0 8px, #d4ad79 8.5px 9.5px, transparent 10px),
    radial-gradient(circle at 25px 11px, transparent 0 8px, #d4ad79 8.5px 9.5px, transparent 10px);
}

.list-category {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.list-category a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  align-items: center;
  min-height: 64px;
  padding: 0 20px;
  color: #6c6258;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.list-category a::after {
  content: "";
  justify-self: end;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.list-category a:hover,
.list-category a:focus-visible {
  color: var(--brown-deep);
  transform: translateX(3px);
}

.list-category .is-active {
  color: #fff8e8;
  background: #b8874e;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 230, 0.24);
}

.category-icon {
  position: relative;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.category-icon::before,
.category-icon::after {
  content: "";
  position: absolute;
}

.category-icon-news::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.category-icon-news::after {
  top: 7px;
  right: 6px;
  left: 6px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.category-icon-notice::before {
  inset: 3px 5px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 6px 6px;
}

.category-icon-notice::after {
  right: 8px;
  bottom: 2px;
  left: 8px;
  height: 2px;
  background: currentColor;
}

.category-icon-book::before {
  inset: 4px 2px 3px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.category-icon-book::after {
  top: 5px;
  bottom: 4px;
  left: 50%;
  border-left: 2px solid currentColor;
}

.category-icon-mic::before {
  top: 2px;
  left: 7px;
  width: 8px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 8px;
}

.category-icon-mic::after {
  right: 4px;
  bottom: 2px;
  left: 4px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 0 0 9px 9px;
}

.category-icon-user::before {
  top: 2px;
  left: 7px;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.category-icon-user::after {
  right: 3px;
  bottom: 2px;
  left: 3px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 3px 3px;
}

.category-icon-study::before {
  top: 5px;
  left: 2px;
  width: 18px;
  height: 11px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skewY(-12deg);
}

.category-icon-study::after {
  top: 2px;
  left: 0;
  border-right: 11px solid transparent;
  border-bottom: 6px solid currentColor;
  border-left: 11px solid transparent;
}

.category-icon-calendar::before {
  inset: 4px 3px 3px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.category-icon-calendar::after {
  top: 8px;
  right: 5px;
  left: 5px;
  height: 2px;
  background: currentColor;
  box-shadow:
    0 5px 0 -0.5px currentColor,
    0 -5px 0 -0.5px currentColor;
}

.category-icon-team::before {
  inset: 3px 8px 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow:
    -8px 4px 0 -3px currentColor,
    8px 4px 0 -3px currentColor;
}

.category-icon-team::after {
  right: 1px;
  bottom: 3px;
  left: 1px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 3px 3px;
}

.list-panel {
  min-width: 0;
  padding: 22px 28px 26px;
  box-shadow: inset 0 0 0 1px rgba(190, 142, 84, 0.22);
}

.inner-news-list li {
  border-bottom: 1px dashed rgba(173, 148, 119, 0.46);
}

.inner-news-list a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 98px;
  gap: 24px;
  align-items: center;
  min-height: 58px;
  color: #4c4945;
  font-size: 16px;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.inner-news-list a:hover,
.inner-news-list a:focus-visible {
  color: var(--brown-deep);
  transform: translateX(3px);
}

.inner-news-list span {
  justify-self: start;
  padding: 5px 9px;
  color: #b8874e;
  border: 1px solid rgba(184, 135, 78, 0.28);
  border-radius: 2px;
  background: rgba(255, 249, 239, 0.72);
  font-size: 13px;
}

.inner-news-list strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}

.inner-news-list time {
  color: #9d968e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  text-align: right;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #a0978d;
  font-size: 14px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(190, 142, 84, 0.26);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.72);
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.pagination a:hover,
.pagination a:focus-visible,
.pagination .active a {
  color: #fff8e8;
  border-color: #b8874e;
  background: #b8874e;
}

.pagination .disabled a {
  color: #c6bbb0;
  cursor: default;
  pointer-events: none;
}

.experts-shell {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 32px rgba(110, 80, 45, 0.1);
}

.experts-shell--single {
  grid-template-columns: minmax(0, 1fr);
}

.experts-sidebar {
  display: grid;
  gap: 18px;
}

.experts-side-card {
  min-height: 210px;
  padding-bottom: 24px;
}

.experts-side-card::after {
  display: none;
}

.experts-side-note {
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(105, 80, 50, 0.1);
}

.experts-side-note img {
  width: 100%;
  height: auto;
}

.experts-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.experts-list-panel {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.experts-section {
  min-width: 0;
  padding: 22px 24px 24px;
  border: 1px solid rgba(190, 142, 84, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 92% 100%, rgba(183, 135, 80, 0.1), transparent 34%);
  box-shadow: 0 8px 20px rgba(110, 80, 45, 0.06);
}

.experts-section-heading {
  position: relative;
  margin-bottom: 18px;
  padding-right: 92px;
}

.section-more {
  position: absolute;
  right: 0;
  color: #b38a61;
  font-size: 14px;
  transition: color 0.22s ease;
}

.section-more:hover,
.section-more:focus-visible {
  color: var(--brown-deep);
}

.expert-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.expert-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  min-height: 190px;
  padding: 12px;
  border: 1px solid rgba(190, 142, 84, 0.34);
  border-radius: 7px;
  background: rgba(255, 252, 246, 0.76);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.expert-card:hover,
.expert-card:focus-within {
  border-color: rgba(184, 135, 78, 0.58);
  box-shadow: 0 10px 22px rgba(110, 80, 45, 0.1);
  transform: translateY(-2px);
}

.expert-photo-placeholder {
  display: block;
  min-height: 166px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(161, 126, 82, 0.1)),
    radial-gradient(circle at 50% 28%, rgba(183, 135, 80, 0.28), transparent 18%),
    linear-gradient(180deg, #f5efe5, #e8d9c7);
  color: rgba(142, 97, 52, 0.72);
}

.expert-photo-placeholder img {
  width: 100%;
  height: 166px;
  object-fit: cover;
  object-position: center top;
}

.expert-card-body {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.expert-card h3,
.department-card h3 {
  color: #77512f;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}

.expert-title {
  color: #7b6c5c;
  font-size: 14px;
  font-weight: 700;
}

.expert-card p:not(.expert-title),
.department-card p {
  color: #6f655c;
  font-size: 13px;
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.expert-card a,
.department-card a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 28px;
  margin-top: 4px;
  padding: 0 12px;
  color: #a06c38;
  border: 1px solid rgba(184, 135, 78, 0.48);
  border-radius: 4px;
  background: rgba(255, 250, 241, 0.76);
  font-size: 13px;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.expert-card a:hover,
.expert-card a:focus-visible,
.department-card a:hover,
.department-card a:focus-visible {
  color: #fff8e8;
  border-color: #b8874e;
  background: #b8874e;
}

.leadership-content {
  min-width: 0;
}

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

.leadership-card {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  min-height: 272px;
  padding: 16px;
  background: rgba(233, 233, 233, 0.72);
  border-color: rgba(191, 191, 191, 0.52);
}

.leadership-card .expert-photo-placeholder {
  min-height: 240px;
  border-radius: 4px;
}

.leadership-card .expert-photo-placeholder img {
  height: 240px;
}

.leadership-card .expert-card-body {
  gap: 10px;
  padding-top: 4px;
}

.leadership-card h3 {
  color: #3b3b3b;
  font-size: 22px;
}

.leadership-card p {
  color: #4c4c4c;
  font-size: 16px;
  line-height: 1.8;
}

.leadership-card a {
  margin-top: 10px;
}

.expert-schedule-wrap {
  overflow-x: auto;
  border: 1px solid rgba(190, 142, 84, 0.28);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.78);
}

.expert-schedule {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #685d52;
  font-size: 14px;
  text-align: center;
}

.expert-schedule th,
.expert-schedule td {
  min-width: 88px;
  padding: 11px 10px;
  border-right: 1px solid rgba(190, 142, 84, 0.22);
  border-bottom: 1px solid rgba(190, 142, 84, 0.22);
}

.expert-schedule tr > *:last-child {
  border-right: 0;
}

.expert-schedule tbody tr:last-child > * {
  border-bottom: 0;
}

.expert-schedule thead th {
  color: #745437;
  background: rgba(234, 215, 187, 0.58);
  font-weight: 700;
}

.expert-schedule tbody th {
  color: #7a6048;
  background: rgba(248, 239, 226, 0.62);
  font-weight: 700;
}

.schedule-tip {
  margin-top: 12px;
  color: #8b8177;
  font-size: 14px;
}

.schedule-tip::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 17px;
  margin-right: 8px;
  border-radius: 999px;
  background: #bc8a51;
  vertical-align: -3px;
}

.department-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.department-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(190, 142, 84, 0.3);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(249, 240, 226, 0.82)),
    radial-gradient(circle at right bottom, rgba(184, 135, 78, 0.12), transparent 34%);
}

.department-card > div {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.department-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff8e8;
  border-radius: 50%;
  background: #b8874e;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 230, 0.4);
}

.department-mark::before,
.department-mark::after {
  content: "";
  position: absolute;
}

.department-mark-internal::before {
  width: 19px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 5px 5px;
}

.department-mark-internal::after {
  width: 8px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.department-mark-surgery::before {
  width: 24px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: rotate(-32deg);
}

.department-mark-surgery::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: rotate(32deg);
}

.department-mark-needle::before {
  width: 2px;
  height: 28px;
  background: currentColor;
  transform: rotate(28deg);
}

.department-mark-needle::after {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.department-mark-bone::before,
.department-mark-bone::after {
  width: 25px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.department-mark-bone::before {
  transform: rotate(34deg);
}

.department-mark-bone::after {
  transform: rotate(-34deg);
}

.department-mark-women::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.department-mark-women::after {
  bottom: 10px;
  width: 2px;
  height: 12px;
  background: currentColor;
  box-shadow:
    -4px 7px 0 -0.8px currentColor,
    4px 7px 0 -0.8px currentColor;
}

.department-mark-child::before {
  top: 11px;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.department-mark-child::after {
  right: 13px;
  bottom: 11px;
  left: 13px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 3px 3px;
}

.channel-panel {
  min-width: 0;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 92% 100%, rgba(183, 135, 80, 0.1), transparent 36%);
  box-shadow:
    inset 0 0 0 1px rgba(190, 142, 84, 0.22),
    0 12px 32px rgba(110, 80, 45, 0.1);
}

.channel-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  gap: 28px;
  align-items: stretch;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(190, 142, 84, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 244, 220, 0.96), transparent 34%),
    linear-gradient(135deg, rgba(255, 252, 245, 0.96), rgba(246, 232, 210, 0.78));
}

.channel-cover-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
  padding: 8px 6px 8px 10px;
}

.channel-kicker {
  width: max-content;
  padding: 5px 12px;
  color: #9b6836;
  border: 1px solid rgba(184, 135, 78, 0.28);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-cover h1 {
  margin-top: 18px;
  color: #5d4430;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.channel-cover p {
  max-width: 620px;
  margin-top: 18px;
  color: #685e54;
  font-size: 16px;
  line-height: 1.9;
}

.channel-cover-image {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 0 18px 34px rgba(83, 62, 38, 0.16);
}

.channel-cover-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(88, 54, 24, 0.16));
  pointer-events: none;
}

.channel-cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 22px;
}

.channel-section {
  min-width: 0;
  padding: 20px 20px 18px;
  border: 1px solid rgba(190, 142, 84, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
}

.channel-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(190, 142, 84, 0.18);
}

.channel-section-header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6a4e37;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.channel-section-header h2::before {
  content: "";
  width: 5px;
  height: 21px;
  border-radius: 999px;
  background: #bc8a51;
}

.channel-section-header a {
  flex: 0 0 auto;
  color: #a8753e;
  font-size: 13px;
  transition: color 0.22s ease;
}

.channel-section-header a:hover,
.channel-section-header a:focus-visible {
  color: var(--brown-deep);
}

.channel-article-list {
  display: grid;
  gap: 0;
}

.channel-article-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px dashed rgba(173, 148, 119, 0.34);
}

.channel-article-list li:last-child {
  border-bottom: 0;
}

.channel-article-list a {
  position: relative;
  min-width: 0;
  padding-left: 14px;
  color: #4c4945;
  font-size: 15px;
  line-height: 1.5;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.channel-article-list a::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c49b6b;
}

.channel-article-list a:hover,
.channel-article-list a:focus-visible {
  color: var(--brown-deep);
  transform: translateX(3px);
}

.channel-article-list time {
  color: #9d968e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  text-align: right;
}

.inner-hero--service .inner-hero-image {
  height: clamp(220px, 20vw, 330px);
  object-fit: cover;
}

.inner-hero-title.service-hero-title {
  align-items: flex-start;
}

.service-hero-copy {
  max-width: 460px;
  padding: clamp(36px, 5.8vw, 88px) 0 0 18px;
  color: #7f5a34;
}

.service-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  color: #a8753e;
  border: 1px solid rgba(184, 135, 78, 0.24);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-hero-copy h1 {
  margin-top: 18px;
  color: #8b5b31;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 70px);
  font-weight: 700;
  line-height: 1.06;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.72);
}

.service-hero-copy p {
  margin-top: 14px;
  color: #5e4b39;
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.2em;
}

.service-stage {
  padding-top: 20px;
}

.service-shell {
  grid-template-columns: 286px minmax(0, 1fr);
}

.service-sidebar {
  display: grid;
  gap: 18px;
  align-items: start;
}

.service-side-card {
  min-height: 0;
  padding: 22px 12px 20px;
}

.service-side-card::after {
  display: none;
}

.service-side-card h2 {
  height: auto;
  padding: 4px 0 8px;
  font-size: 28px;
}

.service-side-card .list-category {
  margin-top: 6px;
  gap: 10px;
}

.service-side-card .list-category a {
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  min-height: 60px;
  padding: 0 18px;
  font-size: 17px;
}

.service-side-card .list-category .category-icon {
  justify-self: center;
}

.service-hotline-card {
  display: grid;
  gap: 10px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(183, 135, 80, 0.14), transparent 28%);
}

.service-hotline-number {
  color: #8f6238;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.service-hotline-meta {
  color: #a8753e;
  font-size: 15px;
  font-weight: 700;
}

.service-hotline-hours {
  color: #5d5147;
  font-size: 16px;
  line-height: 1.55;
}

.service-scene-card {
  overflow: hidden;
  margin: 0;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(105, 80, 50, 0.1);
}

.service-scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.service-section {
  min-width: 0;
  padding: 24px 24px 22px;
  border: 1px solid rgba(190, 142, 84, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.89), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 92% 100%, rgba(183, 135, 80, 0.1), transparent 34%);
  box-shadow: 0 12px 32px rgba(110, 80, 45, 0.1);
}

.service-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(190, 142, 84, 0.18);
}

.service-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6a4e37;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.service-section-heading span {
  width: 5px;
  height: 22px;
  border-radius: 999px;
  background: #bc8a51;
}

.service-section-note {
  color: #b17b45;
  font-family: var(--serif);
  font-size: 18px;
  white-space: nowrap;
}

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

.service-department-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
  margin-top: 22px;
}

.service-feature-card,
.service-insurance-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 245px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(190, 142, 84, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  text-align: center;
}

.service-department-card {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  min-width: 0;
  min-height: 66px;
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(190, 142, 84, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 10px 24px rgba(110, 80, 45, 0.06);
  width: fit-content;
  flex: 0 1 auto;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-department-card h3 {
  color: #6a4e37;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.service-department-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 44px;
  padding: 5px 8px;
  color: #fff8ea;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(180deg, #c89a63, #a96f38);
  box-shadow: 0 8px 16px rgba(173, 119, 61, 0.16);
}

.service-department-link:hover,
.service-department-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 11px 18px rgba(173, 119, 61, 0.2);
}

.service-department-card:hover,
.service-department-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(110, 80, 45, 0.12);
}

.service-department-card:focus-visible {
  outline: 2px solid rgba(169, 111, 56, 0.36);
  outline-offset: 2px;
}

.service-department-link:focus-visible {
  outline: 2px solid rgba(169, 111, 56, 0.38);
  outline-offset: 2px;
}

.service-card-icon,
.service-flow-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  color: #b8874e;
  border: 1px solid rgba(190, 142, 84, 0.28);
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-card-icon .category-icon,
.service-flow-icon .category-icon {
  transform: scale(1.55);
}

.service-feature-card h3,
.service-insurance-card h3 {
  color: #6a4e37;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.service-card-desc {
  flex: 1;
  margin-top: 10px;
  color: #6d645a;
  font-size: 14px;
  line-height: 1.8;
}

.service-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  min-width: 122px;
  margin-top: 18px;
  padding: 10px 20px;
  border: 0;
  color: #fff8ea;
  border-radius: 999px;
  background: linear-gradient(180deg, #c89a63, #a96f38);
  font: inherit;
  box-shadow: 0 8px 16px rgba(173, 119, 61, 0.18);
  font-size: 14px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.service-card-action::after {
  content: "→";
  font-size: 13px;
}

.service-card-action:hover,
.service-card-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(173, 119, 61, 0.22);
  filter: brightness(1.02);
}

.service-card-action:focus-visible {
  outline: 2px solid rgba(169, 111, 56, 0.38);
  outline-offset: 3px;
}

.service-flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.service-flow-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 178px;
  padding: 18px 14px 16px;
  border: 1px solid rgba(190, 142, 84, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  text-align: center;
}

.service-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  color: #c0935f;
  font-size: 20px;
  transform: translateY(-50%);
}

.service-flow-index {
  color: #b8874e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.service-flow-step h3 {
  color: #6a4e37;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.service-flow-step p {
  color: #6b625a;
  font-size: 13px;
  line-height: 1.7;
}

.service-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(173, 148, 119, 0.32);
  color: #8c7f72;
  font-size: 14px;
  line-height: 1.7;
}

.service-tip::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: #c69b69;
  box-shadow: 0 0 0 3px rgba(198, 155, 105, 0.16);
}

.service-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(61, 43, 26, 0.54);
  backdrop-filter: blur(3px);
}

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

.service-qr-dialog {
  position: relative;
  width: min(92vw, 420px);
  padding: 28px 24px 22px;
  border: 1px solid rgba(190, 142, 84, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.98), rgba(251, 246, 238, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(255, 239, 219, 0.96), transparent 34%);
  box-shadow: 0 26px 60px rgba(59, 41, 23, 0.26);
  text-align: center;
}

.service-qr-dialog:focus-visible {
  outline: 2px solid rgba(184, 135, 78, 0.44);
  outline-offset: 4px;
}

.service-qr-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(181, 131, 76, 0.12);
  color: #8b5b31;
  font-size: 22px;
  line-height: 34px;
}

.service-qr-close:hover,
.service-qr-close:focus-visible {
  background: rgba(181, 131, 76, 0.18);
}

.service-qr-image {
  width: min(58vw, 240px);
  height: auto;
  margin: 10px auto 16px;
}

.service-qr-dialog h2 {
  color: #7a4f2c;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
}

.service-qr-dialog p {
  margin-top: 10px;
  color: #6c6157;
  font-size: 15px;
  line-height: 1.7;
}

.service-step-icon--hospital .category-icon-calendar,
.service-step-icon--visit .category-icon-user,
.service-step-icon--consult .category-icon-team,
.service-step-icon--pay .category-icon-notice,
.service-step-icon--pickup .category-icon-book {
  transform: scale(1.55);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
  margin-top: 8px;
}

.article-card {
  min-width: 0;
  padding: 32px 42px 24px;
}

.article-header {
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(154, 118, 77, 0.38);
  text-align: center;
}

.article-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 48px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 32' fill='none'%3E%3Cpath d='M10 25V13c0-1.1.9-2 2-2h40c1.1 0 2 .9 2 2v12' stroke='%239a764d' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M10 25h44' stroke='%239a764d' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M14 25V16h36v9' fill='%23f7efe3' stroke='%239a764d' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M31 25v-9h2v9M28 10h8M32 6v8' stroke='%239a764d' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M21 19h6M21 22h6M37 19h6M37 22h6' stroke='%239a764d' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transform: translateX(-50%);
  z-index: 1;
}

.article-header h1 {
  color: #383029;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.55;
  font-weight: 700;
}

.article-source {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-top: 12px;
  padding: 0 20px;
  color: #a47745;
  border-radius: 999px;
  background: rgba(240, 226, 204, 0.72);
  font-size: 13px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 14px;
  color: #80776f;
  font-size: 13px;
}

.article-body {
  padding-top: 30px;
  color: #4b4742;
  font-size: 15px;
  line-height: 2;
  word-break: break-word;
}

.article-body :where(p, div, span, strong, em, b, i, u, font, small, big, mark, label, a) {
  color: inherit !important;
  background: transparent !important;
  background-color: transparent !important;
  border-color: currentColor;
  box-shadow: none !important;
  text-shadow: none !important;
  font-family: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}

.article-body :where(p, div) {
  margin: 0 0 18px;
  padding: 0;
}

.article-body :where(div) {
  display: block;
}

.article-body :where(span, strong, em, b, i, u, font, small, big, mark, label, a) {
  margin: 0;
  padding: 0;
}

.article-body :where(ul, ol) {
  margin: 0 0 18px 2em;
  padding: 0;
}

.article-body :where(li) {
  margin: 0;
}

.article-body :where(img, video, iframe, object, embed) {
  max-width: 100%;
  height: auto;
}

.article-body :where(img) {
  display: block;
  margin: 16px auto;
  padding: 2px;
  border: 1px solid rgba(184, 135, 78, 0.42);
  background: #fff;
}

.article-body p {
  margin-bottom: 18px;
  text-indent: 2em;
}

.article-body h2 {
  margin: 22px 0 8px;
  color: #4c3d31;
  font-size: 16px;
  line-height: 1.6;
}

.article-body figure {
  margin: 22px auto;
  overflow: hidden;
  border-radius: 2px;
}

.article-body figure img {
  width: min(508px, 100%);
  height: auto;
  margin-inline: auto;
}

.article-body blockquote {
  position: relative;
  margin: 24px 0;
  padding: 18px 54px;
  color: #8a6743;
  border: 1px solid rgba(184, 135, 78, 0.48);
  border-radius: 8px;
  background: rgba(255, 251, 244, 0.74);
  font-size: 16px;
  line-height: 1.8;
}

.article-body blockquote::before,
.article-body blockquote::after {
  position: absolute;
  color: #b8874e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.article-body blockquote::before {
  content: "“";
  top: 10px;
  left: 22px;
}

.article-body blockquote::after {
  content: "”";
  right: 22px;
  bottom: -4px;
}

.article-attachment {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 24px 0 0 !important;
  padding: 16px 18px !important;
  color: #655b51 !important;
  border: 1px solid rgba(184, 135, 78, 0.32) !important;
  border-radius: 4px;
  background: rgba(255, 251, 244, 0.64) !important;
  background-color: rgba(255, 251, 244, 0.64) !important;
  text-indent: 0 !important;
  line-height: 1.6 !important;
  font-size: 14px !important;
}

.article-attachment a {
  color: #6d5137 !important;
  transition: color 0.2s ease;
}

.article-attachment a:hover,
.article-attachment a:focus-visible {
  color: var(--brown-deep) !important;
}

.article-attachment span {
  color: #9a9087 !important;
}

.article-attachment strong {
  flex: 0 0 auto;
  color: #6d5137 !important;
}

.article-share-inline {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(154, 118, 77, 0.24);
  color: #6c6258;
  font-size: 14px;
  clear: both;
}

.article-share-inline__mobile {
  display: none;
}

.article-share-inline__group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.article-share-inline__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 38px;
  padding: 0 16px;
  color: #7a5a3c;
  border: 1px solid rgba(184, 135, 78, 0.34);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.82);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.article-share-inline__btn:hover,
.article-share-inline__btn:focus-visible {
  color: #fff8e8;
  border-color: #b8874e;
  background: #b8874e;
  transform: translateY(-1px);
}

.article-share-inline__popup {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(184, 135, 78, 0.28);
  border-radius: 8px;
  background: rgba(255, 251, 244, 0.92);
}

.article-share-inline__qrcode {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  padding: 6px;
  border: 1px solid rgba(184, 135, 78, 0.18);
  border-radius: 6px;
  background: #fff;
}

.article-share-inline__qrcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.article-share-inline__tip {
  color: #7b7168;
  line-height: 1.6;
}

.article-pager {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(154, 118, 77, 0.24);
  color: #7b7168;
  font-size: 14px;
}

.article-pager span {
  min-width: 0;
}

.article-pager a {
  overflow: hidden;
  color: #7b7168;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-pager a:hover,
.article-pager a:focus-visible {
  color: var(--brown-deep);
}

.article-aside {
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 24px 20px;
}

.aside-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #a06c36;
  font-family: var(--serif);
  font-size: 21px;
}

.aside-card h2::before {
  content: "";
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: #b8874e;
}

.article-side-list,
.article-hot-list {
  display: grid;
}

.article-side-list li {
  display: grid;
  gap: 5px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(173, 148, 119, 0.38);
}

.article-side-list a,
.article-rank-list a,
.article-hot-list a,
.hot-feature a {
  color: #5e5851;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 0.2s ease;
}

.article-side-list a:hover,
.article-side-list a:focus-visible,
.article-rank-list a:hover,
.article-rank-list a:focus-visible,
.article-hot-list a:hover,
.article-hot-list a:focus-visible,
.hot-feature a:hover,
.hot-feature a:focus-visible {
  color: var(--brown-deep);
}

.article-side-list time,
.article-rank-list time,
.article-hot-list time,
.hot-feature time {
  color: #b08c62;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.aside-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 34px;
  margin: 18px auto 0;
  color: #a06c36;
  border: 1px solid rgba(184, 135, 78, 0.46);
  border-radius: 4px;
  font-size: 14px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.aside-more:hover,
.aside-more:focus-visible {
  color: #fff8e8;
  background: #b8874e;
}

.article-rank-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rank;
}

.article-rank-list li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 30px;
  counter-increment: rank;
}

.article-rank-list li::before {
  content: counter(rank, decimal-leading-zero);
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 18px;
  color: white;
  border-radius: 2px;
  background: #b8874e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
}

.article-rank-list li:nth-child(n + 4)::before {
  background: #beb7af;
}

.hot-feature {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: start;
  margin-bottom: 12px;
}

.hot-feature img {
  grid-row: span 2;
  width: 110px;
  height: 58px;
  border-radius: 2px;
  object-fit: cover;
}

.article-hot-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px dashed rgba(173, 148, 119, 0.28);
}

.article-hot-list a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-decoration {
  position: relative;
  margin-top: 90px;
  pointer-events: none;
}

.footer-hospital-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  width: min(900px, 82vw);
  height: auto;
  opacity: 0.4;
}

.footer-incense {
  position: absolute;
  bottom: -55px;
  left: 15%;
  transform: translateX(-50%);
  width: 56px;
  height: auto;
  opacity: 0.78;
}

.site-footer {
  color: rgba(255, 249, 235, 0.92);
  background: #b8864f;
}

.footer-inner {
  padding: 40px 0 58px;
}

.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  align-items: center;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255, 249, 235, 0.38);
  font-size: 16px;
}

.friend-links strong {
  margin-right: 12px;
  font-size: 18px;
  font-weight: 700;
}

.friend-links a {
  position: relative;
  display: inline-flex;
  padding-bottom: 5px;
}

.friend-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.friend-links a:hover::after,
.friend-links a:focus-visible::after {
  transform: scaleX(1);
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1.35fr 160px;
  gap: 56px;
  align-items: center;
  padding-top: 54px;
}

.footer-info > div {
  display: grid;
  gap: 12px;
  min-height: 120px;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 249, 235, 0.5);
}

.footer-info p {
  font-size: 17px;
  line-height: 1.35;
}

.public-badge-link {
  justify-self: center;
  display: block;
}

.public-badge {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media (max-width: 1320px) {
  .service-rail {
    display: none;
  }

  .nav-list {
    gap: 15px;
  }

  .nav-list > li > a {
    font-size: 17px;
  }

  .brand {
    width: 385px;
  }

  .feature-caption h2 {
    font-size: 16px;
  }

  .service-shell {
    grid-template-columns: 264px minmax(0, 1fr);
  }
}

@media (max-width: 1080px) {
  :root {
    --container: min(100vw - 32px, 100%);
  }

  .site-header,
  .header-inner {
    height: auto;
    min-height: 88px;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }

  .brand {
    position: static;
    width: min(420px, calc(100vw - 72px));
  }

  .domain-search {
    display: none;
  }

  .nav-button {
    display: grid;
    gap: 5px;
    place-content: center;
    width: 46px;
    height: 42px;
    border: 1px solid rgba(134, 92, 47, 0.28);
    border-radius: 8px;
    background: rgba(255, 248, 236, 0.78);
  }

  .nav-button span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #754920;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px 18px 18px;
    border: 1px solid rgba(151, 100, 49, 0.2);
    border-radius: 10px;
    background: rgba(248, 237, 218, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-state:checked ~ .main-nav {
    display: block;
  }

  .nav-list {
    display: grid;
    gap: 0;
  }

  .nav-list > li {
    border-bottom: 1px solid rgba(150, 110, 67, 0.14);
  }

  .nav-list > li::before {
    display: none;
  }

  .nav-list > li:last-child {
    border-bottom: 0;
  }

  .nav-list > li > a,
  .nav-list > .nav-item-active > a {
    padding: 14px 4px;
    color: #302c27;
    border-radius: 0;
    background: transparent;
    font-size: 18px;
  }

  .sub-menu,
  .nav-list > li:not(.nav-item-active) .sub-menu {
    display: none;
  }

  .sub-menu a {
    display: inline-block;
    margin-right: 16px;
    padding-bottom: 0;
    color: #8f6134;
    font-family: inherit;
    font-size: 15px;
  }

  .sub-menu a::after {
    display: none;
  }

  .sub-palace {
    display: none;
  }

  .hero-background {
    width: 100%;
    height: min(62vw, 620px);
  }

  .news-area {
    grid-template-columns: 1fr;
  }

  .service-rail {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    width: var(--container);
    min-height: 0;
    padding: 18px 14px;
    margin: 22px auto 0;
    border-radius: 14px;
  }

  .service-rail::after {
    display: none;
  }

  .service-rail a {
    border-bottom: 0;
    border-right: 1px solid rgba(171, 137, 89, 0.18);
    font-size: 18px;
  }

  .service-rail a:last-child {
    border-right: 0;
  }

  .notice-area {
    grid-template-columns: 1fr;
  }

  .shortcut-stack {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

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

  .footer-decoration {
    height: 146px;
    margin-top: 54px;
  }

  .footer-hospital-name {
    right: 0;
    width: min(980px, 92vw);
  }

  .footer-incense {
    left: 10px;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-info > div {
    min-height: 0;
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 249, 235, 0.32);
  }

  .service-shell {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    grid-template-columns: 1fr;
  }

  .service-side-card,
  .service-hotline-card,
  .service-scene-card {
    min-height: auto;
  }

  .service-feature-grid,
  .service-insurance-grid,
  .service-department-grid,
  .service-flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-flow-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    background-position:
      right 12px center,
      center top;
  }

  .brand {
    width: min(340px, calc(100vw - 68px));
  }

  .hero-background {
    height: 430px;
    object-position: center;
  }

  .paper-stage {
    padding-top: 38px;
  }

  .feature-card,
  .news-board {
    height: auto;
  }

  .feature-card {
    min-height: 390px;
  }

  .feature-caption {
    height: auto;
    min-height: 110px;
    padding: 16px 18px;
  }

  .feature-caption h2 {
    font-size: 15px;
  }

  .feature-caption b {
    font-size: 28px;
  }

  .tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 17px;
  }

  .news-board {
    padding: 20px 18px;
  }

  .news-panel {
    height: auto;
  }

  .news-group {
    grid-template-columns: 50px minmax(0, 1fr) 46px;
    gap: 10px 10px;
  }

  .news-list {
    grid-column: 2 / -1;
  }

  .news-list li {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 6px 8px;
    font-size: 14px;
  }

  .news-list time {
    justify-self: end;
    min-width: 46px;
    padding: 2px 4px;
    font-size: 12px;
  }

  .tab-news-list li {
    grid-template-columns: minmax(0, 1fr) 56px;
    gap: 10px;
    min-height: 24px;
    font-size: 14px;
  }

  .tab-news-list time {
    min-width: 56px;
    font-size: 12px;
  }

  .more-link {
    grid-column: 3;
  }

  .service-rail {
    grid-template-columns: 1fr;
  }

  .service-rail a {
    border-right: 0;
    border-bottom: 1px solid rgba(171, 137, 89, 0.18);
  }

  .shortcut-stack,
  .notice-panel,
  .specialties {
    grid-template-columns: 1fr;
  }

  .notice-panel {
    gap: 28px;
    padding: 22px 18px;
  }

  .shortcut-stack a {
    min-height: 64px;
    font-size: 22px;
  }

  .notice-column li {
    grid-template-columns: 1fr;
    gap: 5px;
    font-size: 15px;
  }

  .specialty-card {
    min-height: 420px;
  }

  .specialty-overlay,
  .specialty-overlay--dense {
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    max-width: 100%;
    padding-left: 0;
    padding-top: 28px;
  }

  .service-hero-copy h1 {
    font-size: 38px;
  }

  .service-hero-copy p {
    margin-top: 10px;
    letter-spacing: 0.12em;
    font-size: 14px;
  }

  .service-section {
    padding: 18px 16px 16px;
  }

  .service-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-section-note {
    font-size: 15px;
  }

  .service-feature-grid,
  .service-insurance-grid,
  .service-department-grid,
  .service-flow-list {
    grid-template-columns: 1fr;
  }

  .service-feature-card,
  .service-insurance-card,
  .service-department-card,
  .service-flow-step {
    min-height: 0;
    padding: 18px 16px 16px;
  }

  .service-department-card {
    display: inline-flex;
    align-items: center;
    padding: 12px 12px 12px 14px;
    width: 100%;
  }

  .service-department-card h3 {
    font-size: 16px;
  }

  .service-department-link {
    min-width: 40px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .service-card-icon,
  .service-flow-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .service-card-icon .category-icon,
  .service-flow-icon .category-icon {
    transform: scale(1.35);
  }

  .service-card-action {
    width: 100%;
    min-width: 0;
  }

  .service-flow-step:not(:last-child)::after {
    display: none;
  }

  .service-hotline-number {
    font-size: 32px;
  }

  .service-hotline-hours {
    font-size: 15px;
  }

  .footer-decoration {
    height: 104px;
    margin-top: 38px;
  }

  .footer-hospital-name {
    bottom: 18px;
    left: 50%;
    width: min(760px, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
    transform: translateX(-50%);
  }

  .footer-incense {
    left: 14px;
    width: 42px;
  }

  .friend-links {
    gap: 12px 18px;
  }

  .footer-inner {
    padding: 30px 0 40px;
  }

  .footer-info {
    padding-top: 32px;
  }

  .footer-info p {
    font-size: 15px;
  }
}

@media (max-width: 1080px) {
  .about-shell,
  .list-shell,
  .experts-shell,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 18px;
  }

  .culture-card {
    min-height: auto;
    margin-top: 0;
  }

  .culture-card::after {
    margin-top: 24px;
  }

  .list-side-card {
    min-height: auto;
  }

  .list-side-card::after {
    display: none;
  }

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

  .experts-sidebar {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

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

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

  .hot-feature,
  .article-hot-list li {
    grid-template-columns: 1fr;
  }

  .hot-feature img {
    grid-row: auto;
    width: 100%;
    height: 92px;
  }
}

@media (max-width: 820px) {
  .about-intro,
  .about-sidebar,
  .experts-sidebar,
  .channel-cover,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .channel-cover-image {
    min-height: 220px;
  }

  .about-photo {
    max-width: 360px;
  }

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

  .history-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
  }

  .history-line::before {
    display: none;
  }

  .history-line li {
    padding: 16px 12px;
    border: 1px dashed rgba(188, 138, 81, 0.34);
    border-radius: 6px;
    background: rgba(255, 252, 246, 0.54);
  }

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

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

  .inner-news-list a {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 16px;
    padding: 12px 0;
  }

  .inner-news-list time {
    grid-column: 2;
    text-align: left;
    font-size: 12px;
  }

  .inner-news-list span {
    padding: 4px 7px;
    font-size: 12px;
  }

  .tab-news-list li {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 10px;
    font-size: 14px;
  }

  .tab-news-list time {
    min-width: 58px;
    font-size: 12px;
  }

  .pagination strong {
    width: 100%;
    margin-left: 0;
  }

  .article-card {
    padding: 26px 22px 22px;
  }

  .article-header h1 {
    font-size: 23px;
  }

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

@media (max-width: 720px) {
  .inner-stage {
    padding-top: 14px;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .inner-content,
  .list-panel,
  .channel-panel,
  .list-shell,
  .experts-shell,
  .experts-section,
  .aside-card {
    padding: 18px;
  }

  .side-nav a {
    min-height: 54px;
    padding: 0 18px;
    font-size: 18px;
  }

  .section-heading h2 {
    font-size: 23px;
  }

  .about-copy,
  .article-body {
    font-size: 14px;
    line-height: 1.85;
  }

  .about-stats,
  .value-grid,
  .list-category,
  .leadership-grid,
  .expert-grid,
  .department-grid,
  .history-line {
    grid-template-columns: 1fr;
  }

  .leadership-card {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    min-height: 184px;
    padding: 12px;
  }

  .leadership-card .expert-photo-placeholder {
    min-height: 160px;
  }

  .leadership-card .expert-photo-placeholder img {
    height: 160px;
  }

  .leadership-card h3 {
    font-size: 30px;
  }

  .list-category a {
    min-height: 56px;
  }

  .expert-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 168px;
  }

  .expert-photo-placeholder {
    min-height: 144px;
  }

  .expert-photo-placeholder img {
    height: 144px;
  }

  .department-card {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 16px;
  }

  .experts-section-heading {
    padding-right: 0;
  }

  .experts-section-heading .section-more {
    position: static;
    margin-left: auto;
  }

  .channel-cover {
    gap: 18px;
    padding: 16px;
  }

  .channel-cover-copy {
    min-height: auto;
    padding: 0;
  }

  .channel-cover p {
    font-size: 14px;
    line-height: 1.8;
  }

  .channel-section {
    padding: 17px 16px 15px;
  }

  .channel-section-header h2 {
    font-size: 21px;
  }

  .channel-section-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .channel-article-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .channel-article-list time {
    padding-left: 14px;
    text-align: left;
  }

  .inner-news-list a {
    grid-template-columns: 60px minmax(0, 1fr) 52px;
    gap: 6px 8px;
  }

  .inner-news-list time {
    grid-column: 3;
    justify-self: end;
    padding: 3px 6px;
    font-size: 12px;
  }

  .inner-news-list span {
    padding: 4px 7px;
    font-size: 12px;
  }

  .inner-news-list strong,
  .article-hot-list a {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .article-header h1 {
    font-size: 20px;
  }

  .article-meta {
    display: grid;
    gap: 8px;
  }

  .article-body blockquote {
    padding: 16px 26px;
    font-size: 14px;
  }

  .article-body blockquote::before,
  .article-body blockquote::after {
    display: none;
  }

  .article-share-inline {
    padding-top: 14px;
  }

  .article-share-inline__mobile {
    display: block;
  }

  .article-share-inline__group {
    display: none;
    margin-top: 12px;
  }

  .article-share-inline.is-expanded .article-share-inline__group {
    display: flex;
  }

  .article-share-inline__btn {
    min-width: 0;
    width: 100%;
  }

  .article-share-inline__popup {
    align-items: flex-start;
  }

  .article-share-inline__qrcode {
    width: 84px;
    height: 84px;
  }

  .article-hot-list li {
    grid-template-columns: 1fr;
  }
}

.inner-page-news-list .inner-stage {
  padding-bottom: 50px;
}

.inner-page-experts-list .inner-stage {
  padding-bottom: 50px;
}

.inner-page-search .inner-stage {
  padding-bottom: 50px;
}

.search-shell {
  grid-template-columns: minmax(0, 1fr);
}

.search-panel {
  padding: 30px 34px 32px;
}

.search-panel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(190, 142, 84, 0.22);
}

.search-kicker {
  display: block;
  margin-bottom: 7px;
  color: #b8874e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-panel-header h1 {
  color: #5d4430;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
}

.search-panel-header p {
  color: #786f65;
  font-size: 15px;
}

.search-panel-header strong {
  color: #a8753e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 12px;
  margin: 24px 0 8px;
}

.search-form input,
.search-form button {
  height: 46px;
  border-radius: 4px;
  font: inherit;
}

.search-form input {
  min-width: 0;
  padding: 0 16px;
  color: #4c4945;
  border: 1px solid rgba(190, 142, 84, 0.34);
  background: rgba(255, 253, 248, 0.82);
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.search-form input:focus {
  border-color: #b8874e;
  box-shadow: 0 0 0 3px rgba(184, 135, 78, 0.12);
}

.search-form button {
  color: #fff8e8;
  border: 0;
  background: #b8874e;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    transform 0.22s ease;
}

.search-form button:hover,
.search-form button:focus-visible {
  background: #9b6836;
  transform: translateY(-1px);
}

.search-results-list {
  margin-top: 18px;
}

.search-results-list li {
  border-bottom: 1px dashed rgba(173, 148, 119, 0.46);
}

.search-results-list article {
  display: grid;
  gap: 10px;
  padding: 20px 0;
}

.search-result-title {
  color: #4c4945;
  font-size: 18px;
  line-height: 1.5;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.search-result-title:hover,
.search-result-title:focus-visible {
  color: var(--brown-deep);
  transform: translateX(3px);
}

.search-results-list p {
  color: #6d655d;
  font-size: 15px;
  line-height: 1.8;
}

.search-result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: #9d968e;
  font-size: 13px;
}

.search-result-meta span {
  padding: 4px 8px;
  color: #b8874e;
  border: 1px solid rgba(184, 135, 78, 0.28);
  border-radius: 2px;
  background: rgba(255, 249, 239, 0.72);
}

.search-result-meta time {
  font-family: Georgia, "Times New Roman", serif;
}

.search-empty {
  margin-top: 24px;
  padding: 42px 24px;
  border: 1px dashed rgba(190, 142, 84, 0.42);
  border-radius: 6px;
  background: rgba(255, 249, 239, 0.54);
  text-align: center;
}

.search-empty h2 {
  color: #5d4430;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.search-empty p {
  margin-top: 10px;
  color: #786f65;
  font-size: 15px;
}

.video-js {
  margin: 0 auto;
  max-width: 100%;
}

@media (max-width: 720px) {
  .search-panel {
    padding: 20px 18px 22px;
  }

  .search-panel-header {
    display: grid;
    gap: 10px;
    align-items: start;
  }

  .search-panel-header h1 {
    font-size: 24px;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-form button {
    width: 100%;
  }

  .search-result-title {
    font-size: 16px;
  }

  .search-results-list p {
    font-size: 14px;
    line-height: 1.75;
  }

  .search-empty {
    padding: 30px 18px;
  }
}
