:root {
  --red: #b70d16;
  --red-dark: #7b050b;
  --red-deep: #550308;
  --red-soft: #f6e4e4;
  --red-pale: #fff6f5;
  --dark: #272727;
  --gold: #c49a4b;
  --text: #1f2226;
  --muted: #6f747b;
  --soft: #f6f6f6;
  --line: #e7e7e7;
  --surface: #ffffff;
  --shadow: 0 16px 40px rgba(30, 30, 30, 0.08);
  --page: 1180px;
  --wide: 1360px;
  --shell-sidebar: 184px;
  --shell-gap: 40px;
  --content-main: 956px;
  --hero-title: 340px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  font-size: 14px;
  line-height: 1.72;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-weight: 700;
}

main,
header,
footer {
  min-width: 0;
}

body.drawer-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  box-shadow: none;
}

.topbar {
  width: min(var(--wide), calc(100% - 40px));
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 256px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--red);
}

.brand-mark svg path:first-child {
  fill: currentColor;
}

.brand-mark svg path:last-child {
  fill: #fff;
}

.brand-text strong {
  display: block;
  color: #151515;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.demo-notice {
  flex: 0 0 auto;
  min-width: 0;
  padding: 7px 12px;
  border: 1px solid rgba(183, 13, 22, 0.24);
  background: rgba(255, 246, 245, 0.72);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.desktop-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  color: #141414;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--red);
}

.desktop-nav a.is-active::after,
.desktop-nav a:hover::after {
  width: 100%;
}

.header-icon,
.mobile-toggle {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #161616;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.header-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-toggle {
  display: none;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: #111;
  transition: transform 180ms ease;
}

.mobile-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
}

.home-view {
  background:
    linear-gradient(180deg, #fff 0%, #fff 58%, #fbfbf8 100%),
    #fff;
}

.home-hero {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #fff;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets_image2/home-hero-guangming-panorama.webp") center / cover no-repeat;
}

.home-hero::after {
  content: none;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--wide), calc(100% - 48px));
  min-height: 380px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: stretch;
  overflow: visible;
  width: clamp(500px, 38vw, 600px);
  min-height: auto;
  margin-left: 44px;
  padding: 82px 30px 42px 44px;
  color: #fff;
  background: transparent;
  border-left: 0;
  box-shadow: none;
  backdrop-filter: none;
  animation: hero-panel-enter 720ms ease both;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 -24px 0 -38px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: 24px;
  width: 58px;
  height: 2px;
  z-index: 2;
  background: var(--red);
  pointer-events: none;
}

@keyframes hero-panel-enter {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

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

.hero-panel p,
.hero-panel h1 {
  position: relative;
  z-index: 2;
  margin: 0;
}

.hero-panel p:first-child {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.36);
}

.hero-panel h1 {
  color: #fff;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: 0;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
  background: transparent;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.hero-panel p:nth-of-type(2) {
  max-width: 500px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.hero-actions button,
.aggregate-card button,
.office-entry button,
.team-entry button {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid var(--red);
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions button {
  min-height: 38px;
  padding: 0 20px;
  box-shadow: 0 14px 28px rgba(123, 5, 11, 0.18);
}

.hero-actions button::after {
  content: "→";
  margin-left: 16px;
  font-size: 16px;
  line-height: 1;
}

.hero-actions .ghost-button {
  border-color: rgba(28, 32, 36, 0.18);
  color: #171a1f;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.hero-actions .ghost-button:hover {
  border-color: rgba(28, 32, 36, 0.28);
  color: #111;
  background: rgba(255, 255, 255, 0.72);
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 34px;
  height: 44px;
  margin-top: -22px;
  border: 0;
  background: transparent;
  opacity: 0.7;
}

.hero-arrow-prev {
  left: 30px;
}

.hero-arrow-next {
  right: 30px;
}

.hero-arrow::before,
.hero-arrow::after {
  content: "";
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  background: rgba(123, 5, 11, 0.8);
}

.hero-arrow-prev::before {
  top: 15px;
  transform: rotate(-45deg);
}

.hero-arrow-prev::after {
  top: 28px;
  transform: rotate(45deg);
}

.hero-arrow-next::before {
  top: 15px;
  transform: rotate(45deg);
}

.hero-arrow-next::after {
  top: 28px;
  transform: rotate(-45deg);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: calc((100% - min(var(--wide), calc(100% - 40px))) / 2);
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 26px;
  height: 3px;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: transparent;
  background: rgba(123, 5, 11, 0.22);
}

.hero-dots button.is-active {
  background: var(--red);
}

.home-aggregate {
  position: relative;
  isolation: isolate;
  padding: 54px 0 60px;
  background: #f8f8f5;
}

.home-aggregate::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.38)),
    url("assets_image2/backgrounds/home-texture.webp?v=20260629-deploy-002") center top / max(100vw, 2200px) auto no-repeat fixed;
  opacity: 1;
  filter: none;
  pointer-events: none;
}

.home-aggregate::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.38) 48%, rgba(255, 255, 255, 0.18));
  opacity: 1;
  pointer-events: none;
}

.home-entry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.48)),
    url("assets_image2/backgrounds/home-texture.webp?v=20260629-deploy-002") center top / max(100vw, 2200px) auto no-repeat fixed;
  opacity: 0.82;
  filter: none;
  pointer-events: none;
}

.home-office-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.5)),
    url("assets_image2/backgrounds/home-texture.webp?v=20260629-deploy-002") center top / max(100vw, 2200px) auto no-repeat fixed;
  opacity: 0.86;
  filter: none;
  pointer-events: none;
}

.aggregate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.aggregate-card {
  min-width: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.aggregate-card h2 {
  margin: 0 0 22px;
  color: var(--red-dark);
  font-size: 22px;
  line-height: 1.35;
  min-width: 0;
  word-break: keep-all;
}

.aggregate-card h2 span {
  display: none;
}

.aggregate-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.aggregate-card li {
  min-height: 54px;
  padding: 10px 0;
  border-bottom: 1px dotted #cfcfcf;
}

.aggregate-card a {
  color: #4f555b;
  font-size: 13px;
  line-height: 1.55;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aggregate-card a:hover {
  color: var(--red);
  text-decoration: underline;
}

.aggregate-card button {
  margin-top: 16px;
  border-style: dotted;
  color: var(--red);
  background: transparent;
}

.aggregate-card button:hover {
  color: #fff;
  background: var(--red);
}

.home-entry-section {
  position: relative;
  isolation: isolate;
  padding: 54px 0 64px;
}

.partner-section {
  padding-top: 58px;
}

.partner-section .home-section-head {
  padding-bottom: 10px;
  border-bottom: 0;
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.home-section-head > div,
.section-heading > div,
.page-head > div,
.office-panel > div,
.party-banner > div {
  min-width: 0;
}

.office-entry span,
.team-entry span {
  display: none;
}

.home-section-head h2,
.office-entry h2,
.team-entry h2 {
  margin: 0;
  color: #181b1f;
  font-size: 24px;
  line-height: 1.22;
}

.home-section-head p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.practice-entry-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  border-left: 1px solid var(--line);
}

.practice-entry-grid button {
  min-height: 145px;
  padding: 24px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    url("assets_image2/practice-line-icons.webp") right -84px bottom -92px / 210px auto no-repeat,
    #fff;
  text-align: left;
}

.practice-entry-grid span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.practice-entry-grid strong {
  display: block;
  margin-top: 14px;
  color: #20242a;
  font-size: 16px;
  line-height: 1.4;
}

.practice-entry-grid button:hover {
  background: #fafafa;
}

.partner-logo-belt {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(31, 43, 55, 0.06);
}

.partner-logo-row {
  overflow: hidden;
  border-top: 1px solid #ededed;
}

.partner-logo-row:first-child {
  border-top: 0;
}

.partner-logo-track {
  width: max-content;
  display: flex;
  animation: partner-scroll 34s linear infinite;
}

.partner-logo-row.is-reverse .partner-logo-track {
  animation-direction: reverse;
  animation-duration: 39s;
}

.partner-wordmark {
  flex: 0 0 214px;
  min-width: 214px;
  min-height: 86px;
  padding: 18px 24px;
  border-right: 1px solid #ececec;
  display: grid;
  place-content: center;
  gap: 4px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fbfbfb);
}

.partner-wordmark strong {
  color: #2f353c;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.partner-wordmark span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.partner-logo-strip {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  background: rgba(255, 255, 255, 0.96);
}

.partner-logo-strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: partner-scroll 64s linear 2s infinite;
}

.partner-logo-strip img {
  width: 176px;
  height: 58px;
  padding: 10px 20px;
  border-right: 1px solid #ededed;
  object-fit: contain;
  filter: grayscale(0.12);
}

.partner-logo-wall {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  scrollbar-width: none;
}

.partner-logo-wall::-webkit-scrollbar {
  display: none;
}

.partner-logo-wall img {
  width: 100%;
  height: 86px;
  padding: 0 14px;
  border: 0;
  object-fit: contain;
  background: transparent;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.home-office-section {
  position: relative;
  isolation: isolate;
  padding: 58px 0 70px;
  background: rgba(244, 244, 244, 0.88);
}

.office-entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 28px;
}

.office-entry,
.team-entry {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.52)),
    url("assets_image2/home-office-entry.webp") center / cover no-repeat;
}

.team-entry {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(84, 3, 8, 0.96), rgba(183, 13, 22, 0.82)),
    url("assets_image2/home-team-entry.webp") center / cover no-repeat;
}

.office-entry p,
.team-entry p {
  max-width: 520px;
  margin: 14px 0 26px;
  color: var(--muted);
}

.team-entry span,
.team-entry h2,
.team-entry p {
  color: #fff;
}

.team-entry button {
  border-color: #fff;
  color: var(--red);
  background: #fff;
}

.hero-band {
  position: relative;
  width: min(var(--page), calc(100% - 40px));
  height: 190px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  background: #ede0d6;
  box-shadow: var(--shadow);
}

.hero-title-card {
  position: relative;
  z-index: 2;
  width: var(--hero-title);
  flex: 0 0 var(--hero-title);
  padding: 46px 42px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(120deg, rgba(187, 13, 22, 0.95), rgba(103, 2, 8, 0.97)),
    url("assets_image2/red-title-texture.webp") center / cover no-repeat;
}

.hero-title-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
}

.hero-title-card p,
.hero-title-card h1 {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-title-card p:first-child {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.86;
}

.hero-title-card h1 {
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-title-card p:last-child {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

body[data-page="party"] .hero-title-card {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(255, 221, 97, 0.2), transparent 30%),
    linear-gradient(132deg, rgba(205, 27, 32, 0.98), rgba(148, 7, 16, 0.98) 54%, rgba(92, 2, 8, 0.98)),
    url("assets_image2/red-title-texture.webp") center / cover no-repeat;
  border-left: 0;
}

body[data-page="party"] .hero-title-card::before {
  content: "★";
  position: absolute;
  left: 28px;
  top: 18px;
  z-index: 0;
  color: rgba(255, 218, 82, 0.38);
  font-size: 56px;
  line-height: 1;
  text-shadow:
    42px 3px 0 rgba(255, 218, 82, 0.14),
    56px 28px 0 rgba(255, 218, 82, 0.12),
    26px 44px 0 rgba(255, 218, 82, 0.1);
  pointer-events: none;
}

body[data-page="party"] .hero-title-card::after {
  background-image:
    radial-gradient(ellipse at 18% 70%, rgba(255, 237, 145, 0.14), transparent 38%),
    linear-gradient(112deg, transparent 0 32%, rgba(255, 255, 255, 0.12) 34% 40%, transparent 42% 100%),
    linear-gradient(26deg, rgba(255, 255, 255, 0.1), transparent 30%);
  opacity: 1;
}

body[data-page="party"] .hero-title-card p:first-child {
  color: rgba(255, 232, 164, 0.96);
  opacity: 1;
}

body[data-page="party"] .hero-title-card p:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.hero-image {
  flex: 1;
  min-width: 0;
  background:
    linear-gradient(90deg, rgba(123, 5, 11, 0.22), rgba(255, 255, 255, 0) 28%),
    url("assets_image2/inner-hero-skyline.webp") center / cover no-repeat;
}

.content-shell {
  width: min(var(--page), calc(100% - 40px));
  margin: 0 auto 54px;
  padding: 38px 0 48px;
  display: grid;
  grid-template-columns: var(--shell-sidebar) minmax(0, var(--content-main));
  justify-content: stretch;
  gap: var(--shell-gap);
  background: #fff;
}

.content-shell.is-full-width {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.content-shell.is-full-width .page-content {
  width: min(100%, 1120px);
  justify-self: center;
}

.side-panel {
  align-self: start;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.side-panel h2 {
  margin: 0;
  padding: 13px 18px;
  color: #fff;
  background: var(--red);
  font-size: 15px;
  line-height: 1.2;
}

.side-nav {
  display: flex;
  flex-direction: column;
}

.side-nav button {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: #45494f;
  text-align: left;
  font-size: 13px;
}

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

.side-nav button:hover,
.side-nav button.is-active {
  color: var(--red);
  background: #fafafa;
  font-weight: 700;
}

.page-content {
  min-width: 0;
  min-height: 420px;
}

.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.page-head h2,
.section-title {
  margin: 0;
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-panel h1,
.aggregate-card h2,
.home-section-head h2,
.office-entry h2,
.team-entry h2,
.hero-title-card h1,
.page-head h2,
.section-title,
.home-feature h2,
.overview-card strong,
.section-heading h2,
.digest-column h3,
.service-highlight strong,
.strength-grid strong,
.topic-grid strong,
.program-grid strong,
.home-panel h2,
.office-panel h2,
.practice-card strong,
.practice-list-item strong,
.lawyer-card h3,
.news-feature strong,
.news-item h3,
.media-item h3,
.detail-list strong,
.concept-card strong,
.responsibility-item h3,
.party-banner h2,
.job-summary h3,
.contact-row strong {
  max-width: 100%;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-head p {
  max-width: 620px;
  margin: 9px 0 0;
  color: var(--muted);
}

.red-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

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

.intro-copy {
  max-width: 870px;
  color: #555;
}

.intro-copy p {
  margin: 0 0 14px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item {
  min-height: 96px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

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

.stat-item strong {
  display: block;
  color: var(--red);
  font-size: 26px;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 9px;
  color: #4b4f55;
}

.home-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 30px;
}

.home-feature {
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(111, 4, 9, 0.94), rgba(191, 13, 24, 0.85)),
    url("assets_image2/home-hero-skyline-3820x880.webp") center / cover no-repeat;
}

.home-feature h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.home-feature p {
  max-width: 560px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
}

.home-feature button,
.outline-button,
.solid-button {
  min-height: 36px;
  padding: 0 18px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
}

.home-feature button,
.solid-button {
  border: 1px solid var(--red);
  color: #fff;
  background: var(--red);
}

.outline-button {
  border: 1px solid rgba(183, 13, 22, 0.36);
  color: var(--red);
  background: #fff;
}

.outline-button.is-dark {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.home-stack {
  display: grid;
  gap: 42px;
}

.overview-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.overview-card {
  min-height: 105px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.overview-card strong {
  display: block;
  margin-bottom: 8px;
  color: #222;
  font-size: 16px;
}

.overview-card span {
  color: var(--muted);
  font-size: 13px;
}

.overview-card button,
.home-panel button,
.office-panel button {
  margin-top: 16px;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(183, 13, 22, 0.32);
  color: var(--red);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-section {
  display: grid;
  gap: 20px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.section-heading span,
.home-panel span,
.office-panel span {
  display: none;
}

.section-heading h2,
.home-panel h2,
.office-panel h2 {
  margin: 0;
  color: #1b1b1b;
  font-size: 22px;
  line-height: 1.25;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.digest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.digest-column {
  min-height: 310px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.digest-column h3 {
  margin: 0;
  color: #171a1f;
  font-size: 17px;
}

.digest-column p {
  min-height: 58px;
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.digest-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.digest-column li {
  padding: 12px 0;
  border-top: 1px solid #efefef;
}

.digest-column time {
  display: block;
  margin-bottom: 4px;
  color: #9a9fa5;
  font-size: 11px;
}

.digest-column a {
  display: block;
  color: #2a2f35;
  font-size: 13px;
  line-height: 1.55;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.digest-column a:hover {
  color: var(--red);
}

.service-highlight-grid,
.strength-grid,
.topic-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
}

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

.service-highlight,
.strength-grid article,
.topic-grid article,
.program-grid article {
  min-width: 0;
  min-height: 156px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.service-highlight .practice-icon {
  margin: 0 0 14px;
}

.service-highlight strong,
.strength-grid strong,
.topic-grid strong,
.program-grid strong {
  display: block;
  color: #20242a;
  font-size: 16px;
}

.service-highlight p,
.strength-grid p,
.topic-grid p,
.program-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 18px;
}

.home-panel {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78)),
    url("assets_image2/culture-team.webp") center / cover no-repeat;
}

.home-panel.is-red {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(122, 5, 12, 0.94), rgba(187, 13, 22, 0.78)),
    url("assets_image2/responsibility-aid.webp") center / cover no-repeat;
}

.home-panel.is-red span,
.home-panel.is-red h2,
.home-panel.is-red p {
  color: #fff;
}

.home-panel p,
.office-panel p {
  max-width: 440px;
  margin: 12px 0 0;
  color: var(--muted);
}

.home-panel.is-red button {
  color: var(--red);
  border-color: #fff;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.business-intro {
  max-width: 930px;
  margin: 4px auto 54px;
  padding: 0 0 54px;
  border-bottom: 1px dotted #cfcfcf;
  text-align: center;
}

.business-intro h2 {
  margin: 0;
  color: #1d2025;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}

.business-intro p {
  margin: 24px auto 0;
  color: #565d65;
  font-size: 14px;
  line-height: 2;
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 50px;
  border: 0;
  background: #fff;
}

.practice-list-item {
  min-width: 0;
  min-height: 64px;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid #cfcfcf;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 20px;
  align-items: end;
  color: inherit;
  background: transparent;
  text-align: left;
  transition: border-color 160ms ease, color 160ms ease;
}

.practice-list-item:hover {
  border-color: var(--red);
}

.practice-list-item strong {
  min-width: 0;
  color: #20242a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.practice-list-item i {
  align-self: center;
  color: var(--red-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.practice-card {
  appearance: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  min-height: 140px;
  padding: 24px 16px 20px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    url("assets_image2/practice-line-icons.webp") center bottom -110px / 240px auto no-repeat,
    #fff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.practice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.practice-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 13px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(183, 13, 22, 0.26);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.practice-card strong {
  display: block;
  color: #20242a;
  font-size: 15px;
}

.practice-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.practice-card .practice-icon,
.concept-card .practice-icon,
.contact-row .practice-icon {
  display: grid;
  place-items: center;
  line-height: 1;
}

.practice-card .practice-icon {
  margin: 0 auto 13px;
  color: var(--red);
}

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

.case-grid article {
  min-width: 0;
  min-height: 178px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 92% 100%, rgba(123, 5, 11, 0.05), transparent 42%),
    linear-gradient(180deg, #fff, #f7f7f7);
}

.case-grid span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.case-grid strong {
  display: block;
  margin-top: 12px;
  color: #20242a;
  font-size: 15px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.practice-cases-showcase {
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin-top: 68px;
  padding: 0;
  border: 0;
  background: transparent;
}

.practice-cases-showcase::before {
  content: none;
}

.practice-cases-head {
  display: block;
  margin-bottom: 16px;
}

.practice-cases-head h2 {
  margin: 0;
  color: #18202a;
  font-size: 26px;
  line-height: 1.18;
}

.practice-cases-head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.practice-cases-head > p {
  margin: 0;
  padding-left: 22px;
  border-left: 3px solid rgba(183, 13, 22, 0.72);
}

.practice-case-titles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border: 0;
}

.practice-case-title {
  position: relative;
  min-width: 0;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.practice-case-title:last-child {
  border-right: 0;
}

.practice-case-title::before {
  content: "";
  width: 3px;
  height: 16px;
  margin-right: 10px;
  flex: 0 0 auto;
  background: var(--red);
}

.practice-case-title strong {
  min-width: 0;
  color: #22272d;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.practice-case-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  padding-right: 6px;
}

.practice-case-card {
  position: relative;
  min-width: 0;
  min-height: 286px;
  padding: 24px 18px 24px 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(216, 228, 237, 0.96);
  border-radius: 7px 10px 10px 7px;
  background:
    linear-gradient(90deg, rgba(123, 5, 11, 0.09) 0 15px, rgba(255, 255, 255, 0) 15px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.98) 72%, rgba(239, 246, 250, 0.96));
  box-shadow:
    8px 14px 28px rgba(25, 46, 64, 0.11),
    inset -10px 0 18px rgba(115, 168, 204, 0.08),
    inset 12px 0 16px rgba(123, 5, 11, 0.035);
  transform: translateZ(0);
}

.practice-case-card::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 18px;
  border-radius: 7px 0 0 7px;
  background:
    linear-gradient(180deg, rgba(123, 5, 11, 0.94), rgba(183, 13, 22, 0.72)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  box-shadow: inset -4px 0 10px rgba(58, 4, 8, 0.2);
  pointer-events: none;
}

.practice-case-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -6px;
  bottom: 10px;
  width: 7px;
  border: 1px solid rgba(214, 224, 232, 0.82);
  border-left: 0;
  border-radius: 0 9px 9px 0;
  background:
    repeating-linear-gradient(180deg, rgba(201, 214, 224, 0.58) 0 1px, rgba(255, 255, 255, 0.9) 1px 5px);
  box-shadow: 5px 8px 16px rgba(31, 55, 76, 0.06);
  pointer-events: none;
}

.practice-case-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.practice-case-number {
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.practice-case-icon {
  position: relative;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 8px;
  border: 1px solid rgba(117, 169, 209, 0.28);
  background:
    linear-gradient(135deg, rgba(232, 245, 252, 0.92), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.practice-case-icon::before,
.practice-case-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.practice-case-card.is-case-1 .practice-case-icon::before {
  left: 15px;
  top: 14px;
  width: 24px;
  height: 24px;
  border: 2px solid #73a8cc;
  border-radius: 50%;
}

.practice-case-card.is-case-1 .practice-case-icon::after {
  left: 25px;
  top: 9px;
  width: 4px;
  height: 36px;
  background: linear-gradient(#73a8cc 0 0) center / 4px 8px no-repeat, linear-gradient(#73a8cc 0 0) center / 28px 2px no-repeat;
}

.practice-case-card.is-case-2 .practice-case-icon::before {
  left: 13px;
  top: 28px;
  width: 28px;
  height: 10px;
  border: 2px solid #73a8cc;
  border-top: 0;
}

.practice-case-card.is-case-2 .practice-case-icon::after {
  left: 18px;
  top: 13px;
  width: 18px;
  height: 18px;
  border-left: 3px solid #73a8cc;
  border-bottom: 3px solid #73a8cc;
  transform: rotate(-45deg);
}

.practice-case-card.is-case-3 .practice-case-icon::before {
  left: 13px;
  top: 15px;
  width: 28px;
  height: 24px;
  border: 2px solid #73a8cc;
  border-radius: 4px;
}

.practice-case-card.is-case-3 .practice-case-icon::after {
  left: 20px;
  top: 23px;
  width: 15px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 7px 0 #73a8cc;
}

.practice-case-card.is-case-4 .practice-case-icon::before {
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  border: 2px solid #73a8cc;
  transform: rotate(45deg);
}

.practice-case-card.is-case-4 .practice-case-icon::after {
  left: 24px;
  top: 9px;
  width: 6px;
  height: 36px;
  background: linear-gradient(var(--red), var(--red)) center / 6px 6px no-repeat;
  border-top: 2px solid #73a8cc;
  border-bottom: 2px solid #73a8cc;
}

.practice-case-card.is-case-5 .practice-case-icon::before {
  left: 12px;
  top: 13px;
  width: 30px;
  height: 30px;
  border: 2px solid #73a8cc;
  border-radius: 50%;
}

.practice-case-card.is-case-5 .practice-case-icon::after {
  left: 22px;
  top: 18px;
  width: 12px;
  height: 20px;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(38deg);
}

.practice-case-card strong {
  display: block;
  min-width: 0;
  color: #1e2730;
  font-size: 16px;
  line-height: 1.36;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.practice-case-card i {
  display: block;
  width: 38px;
  height: 2px;
  margin: 14px 0 14px;
  background: var(--red);
}

.practice-case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.72;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.practice-detail-page {
  display: grid;
  gap: 24px;
}

.back-link {
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: #4d5359;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.practice-detail-hero {
  min-height: 210px;
  padding: 36px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(165deg, rgba(31, 43, 55, 0.04) 0 1px, transparent 1px 10px),
    #fafafa;
}

.practice-detail-hero > span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red-dark);
  font-size: 22px;
  font-weight: 800;
}

.practice-detail-hero p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.practice-detail-hero h2 {
  margin: 0;
  color: #20242a;
  font-size: 30px;
  line-height: 1.25;
}

.practice-detail-hero strong {
  display: block;
  margin-top: 12px;
  color: #555d66;
  font-size: 15px;
}

.demo-notice {
  padding: 14px 18px;
  border-left: 4px solid var(--red);
  background: #fafafa;
  color: #5a6067;
  font-size: 13px;
}

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

.detail-section-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.detail-section-grid h3 {
  margin: 0 0 10px;
  color: #20242a;
  font-size: 17px;
}

.detail-section-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.practice-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.practice-detail-actions button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--red);
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.lawyer-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fafafa);
}

.filter-bar button,
.news-tabs button {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: #4d5359;
  font-size: 13px;
}

.filter-bar button.is-active,
.news-tabs button.is-active {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.search-box {
  position: relative;
  margin-left: auto;
  width: 300px;
  flex: 0 0 300px;
}

.search-box input {
  width: 100%;
  height: 36px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--line);
  outline: 0;
  color: #2a2f35;
}

.search-box svg {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #8d939a;
  stroke-width: 2;
  stroke-linecap: round;
}

.lawyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.lawyer-card {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 16px;
  min-height: 236px;
  padding: 17px;
  border: 1px solid var(--line);
  background: #fff;
}

.lawyer-card > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.lawyer-card img {
  width: 98px;
  height: 142px;
  object-fit: cover;
  background: #eee;
}

.lawyer-card h3 {
  margin: 2px 0 3px;
  color: #16191d;
  font-size: 16px;
  line-height: 1.3;
}

.lawyer-card p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 12px;
}

.lawyer-summary {
  min-height: 38px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lawyer-link {
  margin-top: auto;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.pagination button {
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: #4d5359;
  font-size: 13px;
}

.pagination button.is-active {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.pagination button:disabled {
  color: #a8adb3;
  background: #f7f7f7;
  cursor: default;
}

.directory-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.directory-summary article {
  min-height: 84px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.directory-summary strong {
  display: block;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.directory-summary span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 26px;
  margin-bottom: 10px;
}

.tag-row span {
  padding: 2px 7px;
  color: #6c7178;
  border: 1px solid #e1e1e1;
  font-size: 11px;
  line-height: 1.5;
}

.lawyer-link,
.read-link {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.news-layout {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  align-items: stretch;
  gap: 34px;
}

.news-feature {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    url("assets_image2/news-feature.webp") center / cover no-repeat;
}

.news-feature strong {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.45;
}

.news-feature span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.news-list,
.media-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.news-item,
.media-item {
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
}

.media-item-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 20px;
  align-items: center;
  min-height: 88px;
  padding: 18px 0;
  color: inherit;
  cursor: pointer;
}

.media-item-link:hover h3,
.media-item-link:focus-visible h3,
.culture-activity-card:hover span,
.culture-activity-card:focus-visible span {
  color: var(--red);
}

.media-item-link:focus-visible,
.culture-activity-card:focus-visible {
  outline: 2px solid rgba(183, 13, 22, 0.28);
  outline-offset: 3px;
}

.culture-activity-card:hover img,
.culture-activity-card:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
}

.news-item > div,
.media-item > div,
.media-item-link > div,
.responsibility-item > div {
  min-width: 0;
}

.news-item h3,
.media-item h3 {
  margin: 0 0 7px;
  color: #20242a;
  font-size: 16px;
}

.news-item p,
.media-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-item time,
.media-item time {
  color: #8d939a;
  font-size: 12px;
  text-align: right;
}

body[data-page="party"] .media-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  border-top: 1px solid var(--line);
}

body[data-page="party"] .media-item {
  min-height: 104px;
  align-items: start;
  padding: 0;
}

body[data-page="party"] .media-item-link {
  min-height: 104px;
  align-items: start;
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.news-search {
  position: relative;
  width: 300px;
  flex: 0 0 300px;
}

.news-search input {
  width: 100%;
  height: 36px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--line);
  outline: 0;
  color: #2a2f35;
}

.news-search svg {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #8d939a;
  stroke-width: 2;
  stroke-linecap: round;
}

.news-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
}

.news-column-layout .news-list {
  border-top: 2px solid #2f353c;
}

.news-list-item {
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.news-list-link {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 20px;
  min-height: 96px;
  padding: 16px 0;
  color: inherit;
  cursor: pointer;
}

.news-list-link:hover h3,
.news-list-link:focus-visible h3,
.news-sidebox a:hover em,
.news-sidebox a:focus-visible em {
  color: var(--red);
}

.news-list-link:hover img,
.news-list-link:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
}

.news-list-link:focus-visible,
.news-sidebox a:focus-visible {
  outline: 2px solid rgba(183, 13, 22, 0.28);
  outline-offset: 3px;
}

.news-date-media {
  display: grid;
  align-content: start;
  gap: 8px;
}

.news-list-item time {
  color: #8b9299;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.news-list-item img {
  width: 96px;
  height: 58px;
  object-fit: cover;
  background: #f0f0f0;
}

.news-list-item span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.news-list-item h3 {
  margin: 0 0 6px;
  color: #20242a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42;
}

.news-list-item p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.news-detail-page {
  display: grid;
  gap: 24px;
}

.news-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 2px solid #2f353c;
}

.news-detail-meta {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-detail-meta span {
  color: var(--red);
}

.news-detail-hero h2 {
  grid-column: 1;
  margin: 0;
  color: #20242a;
  font-size: 30px;
  line-height: 1.35;
}

.news-detail-hero p {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.news-detail-hero img {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 100%;
  height: 214px;
  object-fit: cover;
  background: #f1f1f1;
}

.news-detail-body {
  max-width: 860px;
}

.news-detail-body p {
  margin: 0 0 18px;
  color: #383f46;
  font-size: 14px;
  line-height: 2;
}

.story-detail-page {
  display: grid;
  gap: 24px;
}

.story-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 2px solid #2f353c;
}

.story-detail-hero--plain {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.story-detail-meta {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.story-detail-meta span {
  color: var(--red);
}

.story-detail-hero h2 {
  grid-column: 1;
  margin: 0;
  color: #20242a;
  font-size: 30px;
  line-height: 1.35;
}

.story-detail-hero p {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.story-detail-hero img {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 100%;
  height: 214px;
  object-fit: cover;
  background: #f1f1f1;
}

.story-detail-body {
  max-width: 860px;
}

.story-detail-body p {
  margin: 0 0 18px;
  color: #383f46;
  font-size: 14px;
  line-height: 2;
}

.news-sidebox {
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 249, 0.98));
}

.news-sidebox h3 {
  margin: 0 0 14px;
  color: #20242a;
  font-size: 18px;
}

.news-sidebox a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.news-sidebox a span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.news-sidebox a strong,
.news-sidebox a em {
  display: block;
  color: #3f464d;
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.side-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 8px;
  margin-bottom: 14px;
}

.side-search input {
  min-width: 0;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  outline: 0;
}

.side-search button,
.hot-keywords button {
  border: 1px solid var(--red);
  color: var(--red);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.side-search button {
  height: 36px;
}

.hot-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hot-keywords button {
  min-height: 28px;
  padding: 0 10px;
  border-color: #e4c8c8;
}

.news-side-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px solid var(--red-dark);
}

.news-side-note strong {
  display: block;
  color: #20242a;
  font-size: 14px;
}

.news-side-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

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

.news-card {
  min-width: 0;
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.news-card > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.news-card h3 {
  margin: 12px 0 8px;
  color: #20242a;
  font-size: 17px;
  line-height: 1.45;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card time {
  margin-top: auto;
  padding-top: 14px;
  color: #8d939a;
  font-size: 12px;
}

.content-block {
  margin-top: 36px;
}

.content-block .section-title {
  margin-bottom: 18px;
}

.milestone-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
  padding: 30px 0 8px;
}

.milestone-roadmap::before {
  content: "";
  position: absolute;
  top: 53px;
  right: calc(12.5% + 16px);
  left: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, rgba(183, 13, 22, 0.15), rgba(183, 13, 22, 0.72), rgba(183, 13, 22, 0.15));
}

.milestone-roadmap article {
  position: relative;
  min-width: 0;
  min-height: 154px;
  padding: 0 14px;
  border: 0;
  background: transparent;
}

.milestone-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border: 8px solid #fff;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 18%, var(--red) 20% 100%);
  box-shadow: 0 0 0 1px rgba(183, 13, 22, 0.25), 0 14px 26px rgba(123, 5, 11, 0.12);
}

.milestone-roadmap strong {
  display: grid;
  place-items: center;
  width: 82px;
  min-height: 38px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--red-dark);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.milestone-roadmap p {
  max-width: 190px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.milestone-roadmap article:nth-child(2n) .milestone-marker {
  border-radius: 8px;
  transform: rotate(45deg);
}

.milestone-roadmap article:nth-child(2n) .milestone-marker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.detail-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.detail-list article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list strong {
  color: #20242a;
  font-size: 16px;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
}

.culture-growth-block {
  max-width: 940px;
  margin: 46px auto 0;
  text-align: center;
}

.culture-growth-block .section-title {
  margin-bottom: 22px;
  text-align: center;
}

.culture-growth-block .detail-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  border-top: 0;
}

.culture-growth-block .detail-list article {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 22px 10px 20px;
  border-top: 1px solid rgba(183, 13, 22, 0.18);
  border-bottom: 1px solid rgba(31, 34, 38, 0.08);
  text-align: center;
}

.culture-growth-block .detail-list strong {
  white-space: normal;
}

.culture-growth-block .detail-list p {
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.72;
}

.office-panel,
.team-note {
  margin-top: 36px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: #fafafa;
}

.office-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    url("assets_image2/about-office.webp") center / cover no-repeat;
}

.process-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 32px;
  border: 1px solid var(--line);
  background: #fafafa;
}

.process-band div {
  min-height: 92px;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
}

.process-band div:last-child {
  border-right: 0;
}

.process-band span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.process-band strong {
  display: block;
  margin-top: 6px;
  color: #20242a;
}

.team-note h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.team-note p {
  margin: 0;
  color: var(--muted);
}

.concept-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
  margin-bottom: 30px;
}

.concept-card {
  min-height: 132px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.concept-card .practice-icon {
  margin-bottom: 10px;
}

.concept-card strong {
  display: block;
  color: #222;
  font-size: 16px;
}

.concept-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 14px;
}

.image-strip figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.culture-activity-card {
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit;
  cursor: pointer;
}

.image-strip img {
  width: 100%;
  height: 116px;
  object-fit: cover;
}

.image-strip figcaption,
.culture-activity-card span {
  display: block;
  padding: 10px 12px;
  color: #333;
  font-size: 12px;
}

.responsibility-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.charity-logo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  margin-bottom: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(183, 13, 22, 0.18);
  background: linear-gradient(135deg, #fff, #fff7f7);
}

.charity-logo-panel strong {
  display: block;
  color: var(--red-dark);
  font-size: 18px;
}

.charity-logo-panel p {
  margin: 6px 0 0;
  color: #9b1b21;
  font-size: 12px;
}

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

.charity-project-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.charity-project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.charity-project-card > div {
  padding: 22px;
}

.charity-project-card span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.charity-project-card h3 {
  margin: 10px 0 8px;
  color: #20242a;
  font-size: 18px;
  line-height: 1.35;
}

.charity-project-card p {
  min-height: 66px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.charity-project-card button {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--red);
  color: var(--red);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.responsibility-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 92px;
  gap: 22px;
  align-items: center;
  min-height: 128px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.responsibility-item img {
  width: 180px;
  height: 90px;
  object-fit: cover;
}

.responsibility-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.responsibility-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.party-banner {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 0;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: center;
  gap: 32px;
  padding: 20px 0 22px;
  color: var(--text);
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.party-banner::after {
  content: none;
}

.party-banner::before {
  content: none;
}

.party-banner h2 {
  max-width: none;
  margin: 7px 0 8px;
  color: #24272b;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.party-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
}

.party-poster-main span {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 12px;
  color: var(--red-dark);
  background: transparent;
  border-left: 3px solid var(--red);
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
}

.party-poster-main span::before {
  content: none;
}

.party-slogan-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  padding-left: 0;
  border-left: 0;
}

.party-slogan-board strong {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 0 0 0 14px;
  color: #34383d;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(183, 13, 22, 0.46);
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.35;
}

.party-slogan-board strong::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: translateY(-50%);
}

.party-slogan-board strong::after {
  content: none;
}

.jobs {
  border-top: 1px solid var(--line);
}

.career-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: stretch;
  min-height: 300px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.career-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.career-visual > div {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.career-visual span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.career-visual h3 {
  margin: 10px 0 12px;
  color: #20242a;
  font-size: 26px;
  line-height: 1.28;
}

.career-visual p {
  margin: 0;
  color: var(--muted);
}

.career-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.career-benefits span {
  position: relative;
  flex: 0 0 auto;
  padding-left: 13px;
  color: #30343a;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.career-benefits span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.job-card {
  border-bottom: 1px solid var(--line);
}

.job-summary {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 176px;
  gap: 22px;
  align-items: center;
  min-height: 92px;
}

.job-summary h3 {
  margin: 0;
  color: #20242a;
  font-size: 17px;
}

.job-summary span,
.job-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.job-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.job-actions button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(183, 13, 22, 0.38);
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.career-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  padding: 26px 0 4px;
}

.career-flow::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 42px;
  height: 1px;
  background: #d7d7d7;
}

.career-flow-node {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.career-flow-node span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  z-index: 1;
}

.career-flow-node strong {
  color: #20242a;
  font-size: 14px;
}

.job-actions button.apply.is-applied {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
  gap: 36px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 20px;
}

.contact-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.contact-row .practice-icon {
  width: 26px;
  height: 26px;
  margin: 0;
  font-size: 11px;
}

.contact-row strong {
  display: block;
  color: #222;
  font-size: 15px;
}

.contact-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.map-card {
  margin: 0;
  border: 1px solid var(--line);
  padding: 12px;
  background: #fff;
}

.map-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 50% 49%;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 16%, rgba(183, 13, 22, 0.16), rgba(183, 13, 22, 0) 42%),
    linear-gradient(135deg, #24303a 0%, #18222b 48%, #101821 100%);
  border-top: 5px solid var(--red-dark);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(var(--wide), calc(100% - 40px));
  min-height: 172px;
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.site-footer strong {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
}

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

.site-footer a:hover {
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1180px) {
  .topbar,
  .site-width,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .brand {
    min-width: 218px;
  }

  .demo-notice {
    display: none;
  }

  .header-icon {
    display: none;
  }

  .desktop-nav {
    gap: 8px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

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

  .aggregate-card {
    padding: 22px 18px;
    border-bottom: 1px solid var(--line);
  }

  .aggregate-card:nth-child(2n + 1) {
    border-right: 1px solid var(--line);
  }

  .aggregate-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .partner-logo-wall {
    gap: 18px;
  }

  .partner-logo-wall img {
    height: 74px;
    padding: 0 8px;
  }

  .content-shell {
    width: calc(100% - 32px);
    grid-template-columns: 156px minmax(0, 1fr);
    gap: 24px;
  }

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

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

  .news-column-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .contact-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  }

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

@media (max-width: 920px) {
  .topbar {
    width: calc(100% - 28px);
    height: 60px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .demo-notice {
    display: none;
  }

  .desktop-nav,
  .header-icon {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    margin-left: auto;
  }

  .mobile-drawer {
    position: fixed;
    inset: 60px 0 auto 0;
    max-height: calc(100vh - 60px);
    overflow: auto;
    padding: 10px 20px 24px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  }

  .mobile-drawer.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mobile-drawer a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    font-size: 13px;
  }

  .mobile-drawer a.is-active {
    color: #fff;
    border-color: var(--red);
    background: var(--red);
  }

  .site-width,
  .home-hero-inner {
    width: calc(100% - 28px);
  }

  .home-hero,
  .home-hero-inner {
    min-height: 340px;
  }

  .home-hero::before {
    inset: 0;
    height: auto;
    opacity: 1;
    background-position: center;
  }

  .home-aggregate::before,
  .home-entry-section::before,
  .home-office-section::before {
    background-attachment: scroll, scroll;
    background-size: auto, 1600px auto;
  }

  .home-hero::after {
    height: 44px;
  }

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

  .hero-panel {
    width: min(100%, 560px);
    min-height: 340px;
    padding: 72px 24px 34px 36px;
  }

  .hero-panel::before {
    inset: 0 -18px 0 -28px;
  }

  .hero-panel h1 {
    font-size: 28px;
    white-space: normal;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    right: 14px;
    bottom: 18px;
  }

  .home-aggregate {
    padding: 34px 0 42px;
  }

  .aggregate-grid,
  .office-entry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-logo-belt {
    margin-top: 20px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .partner-logo-track {
    animation-duration: 42s;
  }

  .partner-wordmark {
    flex-basis: 184px;
    min-width: 184px;
    min-height: 76px;
    padding: 16px 18px;
  }

  .partner-wordmark strong {
    font-size: 16px;
  }

  .partner-logo-strip {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .partner-logo-strip img {
    width: 160px;
    height: 54px;
    padding: 9px 16px;
  }

  .partner-logo-wall {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 18px;
  }

  .partner-logo-wall img {
    flex: 0 0 138px;
    width: 138px;
    height: 74px;
    padding: 0 10px;
  }

  .aggregate-card {
    padding: 22px 16px;
    border-bottom: 1px solid var(--line);
  }

  .aggregate-card:nth-child(2n + 1) {
    border-right: 1px solid var(--line);
  }

  .aggregate-card h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .home-section-head {
    display: block;
  }

  .home-section-head p {
    max-width: none;
    margin-top: 10px;
    white-space: normal;
  }

  .practice-entry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-logo-grid article {
    min-height: 104px;
  }

  .office-entry,
  .team-entry {
    min-height: 0;
  }

  .hero-band {
    width: calc(100% - 28px);
    height: auto;
    min-height: 238px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 128px 110px;
    box-shadow: none;
  }

  .hero-title-card {
    width: 100%;
    min-height: 128px;
    padding: 28px 24px;
    flex: none;
  }

  .hero-title-card h1 {
    font-size: 26px;
  }

  .hero-title-card p:last-child {
    font-size: 13px;
  }

  .content-shell {
    width: calc(100% - 28px);
    padding-top: 24px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 22px;
  }

  .content-shell.is-full-width .page-content {
    width: 100%;
  }

  .side-panel {
    border: 0;
  }

  .side-panel h2 {
    display: none;
  }

  .side-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .side-nav button {
    width: auto;
    min-width: 0;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--line);
    white-space: nowrap;
  }

  .page-head {
    display: block;
  }

  .hero-panel h1,
  .aggregate-card h2,
  .home-section-head h2,
  .office-entry h2,
  .team-entry h2,
  .hero-title-card h1,
  .page-head h2,
  .section-title,
  .home-feature h2,
  .overview-card strong,
  .section-heading h2,
  .digest-column h3,
  .service-highlight strong,
  .strength-grid strong,
  .topic-grid strong,
  .program-grid strong,
  .home-panel h2,
  .office-panel h2,
  .practice-card strong,
  .lawyer-card h3,
  .news-feature strong,
  .news-item h3,
  .media-item h3,
  .detail-list strong,
  .concept-card strong,
  .responsibility-item h3,
  .party-banner h2,
  .job-summary h3,
  .contact-row strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .aggregate-grid .aggregate-card h2,
  .aggregate-grid .aggregate-card a,
  .strength-grid strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .aggregate-card li,
  .news-item,
  .media-item,
  .responsibility-item {
    min-height: auto;
  }

  .home-grid,
  .news-layout,
  .contact-grid,
  .home-split {
    grid-template-columns: 1fr;
  }

  .lawyer-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .lawyer-toolbar .filter-bar {
    width: 100%;
  }

  .lawyer-toolbar .search-box {
    width: 100%;
    flex: none;
    margin-left: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    max-width: none;
    margin-top: 10px;
  }

  .practice-cases-showcase {
    margin-top: 54px;
    padding: 0;
  }

  .practice-cases-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .practice-cases-head > p {
    padding-left: 0;
    padding-top: 14px;
    border: 0;
  }

  .practice-case-titles {
    grid-template-columns: 1fr;
  }

  .practice-case-title {
    min-height: auto;
    border-right: 0;
    border-bottom: 0;
  }

  .practice-case-title:last-child {
    border-bottom: 0;
  }

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

  .digest-grid,
  .service-highlight-grid,
  .strength-grid,
  .topic-grid,
  .program-grid,
  .milestone-roadmap,
  .case-grid,
  .news-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .milestone-roadmap::before {
    display: none;
  }

  .detail-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .office-panel {
    display: block;
  }

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

  .process-band div:nth-child(2n) {
    border-right: 0;
  }

  .directory-summary {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .practice-list {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .business-intro {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .business-intro h2 {
    font-size: 28px;
  }

  .detail-section-grid,
  .news-column-layout {
    grid-template-columns: 1fr;
  }

  .news-search {
    width: 100%;
    flex: none;
  }

  .news-list-link {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
  }

  .news-list-item img {
    width: 96px;
    height: 60px;
  }

  .news-detail-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-detail-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-detail-hero h2,
  .news-detail-hero p,
  .news-detail-meta,
  .news-detail-hero img,
  .story-detail-hero h2,
  .story-detail-hero p,
  .story-detail-meta,
  .story-detail-hero img {
    grid-column: 1;
  }

  .news-detail-hero img,
  .story-detail-hero img {
    grid-row: auto;
    height: 188px;
  }

  .practice-detail-hero {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 26px;
  }

  .practice-detail-hero > span {
    width: 72px;
    height: 72px;
  }

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

  .charity-project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .career-visual {
    grid-template-columns: 1fr;
  }

  .party-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 14px;
    padding: 22px 22px;
  }

  .party-banner::before {
    display: none;
  }

  .party-slogan-board {
    padding-left: 0;
    padding-top: 14px;
    border-left: 0;
    border-top: 1px solid rgba(183, 13, 22, 0.18);
  }

  body[data-page="party"] .media-list {
    grid-template-columns: 1fr;
  }

  .career-flow {
    grid-template-columns: repeat(5, minmax(80px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
  }

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

  .search-box {
    width: 100%;
    margin-left: 0;
  }

  .concept-row,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .charity-logo-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 20px;
  }

  .responsibility-item {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .responsibility-item img {
    width: 110px;
    height: 76px;
  }

  .responsibility-item time {
    grid-column: 2;
    text-align: left;
  }

  .job-summary {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .job-actions {
    justify-content: flex-start;
  }

  .site-footer {
    width: 100%;
  }

  .footer-inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .brand-text strong {
    font-size: 13px;
  }

  .brand-text small {
    font-size: 8px;
  }

  .mobile-drawer.is-open {
    grid-template-columns: 1fr;
  }

  .home-aggregate::before,
  .home-entry-section::before,
  .home-office-section::before {
    background-size: auto, 1200px auto;
  }

  .practice-cases-showcase {
    padding: 0;
  }

  .practice-cases-head h2 {
    font-size: 23px;
  }

  .practice-case-cards {
    grid-template-columns: 1fr;
    padding-right: 5px;
  }

  .practice-case-title {
    padding: 0;
  }

  .practice-case-title strong {
    font-size: 15px;
  }

  .practice-case-card {
    min-height: 232px;
    padding: 22px 18px 22px 30px;
  }

  .practice-case-top {
    margin-bottom: 18px;
  }

  .practice-case-icon {
    width: 46px;
    height: 46px;
  }

  .home-hero,
  .home-hero-inner {
    min-height: 332px;
  }

  .hero-panel {
    min-height: 332px;
    padding: 58px 18px 30px 28px;
  }

  .hero-panel::before {
    inset: 0 -12px 0 -18px;
  }

  .hero-panel h1 {
    font-size: 25px;
  }

  .party-banner h2 {
    font-size: 20px;
  }

  .party-banner p,
  .party-slogan-board strong {
    font-size: 13px;
  }

  .party-slogan-board {
    grid-template-columns: 1fr;
  }

  .business-intro {
    text-align: left;
  }

  .business-intro h2 {
    font-size: 24px;
  }

  .business-intro p {
    margin-top: 16px;
    line-height: 1.8;
  }

  .hero-panel p:nth-of-type(2) {
    font-size: 13px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions button {
    min-height: 42px;
    padding: 0 16px;
  }

  .partner-wordmark {
    flex-basis: 168px;
    min-width: 168px;
  }

  .partner-logo-strip img {
    width: 142px;
    height: 50px;
    padding: 8px 12px;
  }

  .partner-logo-wall img {
    flex-basis: 122px;
    width: 122px;
    height: 68px;
    padding: 0 8px;
  }

  .culture-growth-block {
    max-width: none;
    margin-top: 38px;
  }

  .culture-growth-block .detail-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .culture-growth-block .detail-list article {
    padding: 18px 0;
  }

  .content-shell {
    margin-bottom: 32px;
  }

  .practice-detail-hero,
  .news-list-link,
  .media-item-link {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-date-media {
    grid-template-columns: 86px 96px;
    align-items: center;
  }

  .news-list-item img {
    width: 96px;
    height: 60px;
  }

  .news-list-link {
    min-height: 0;
  }

  .media-item-link {
    min-height: 0;
  }

  .practice-detail-hero {
    padding: 22px;
  }

  .practice-detail-hero h2 {
    font-size: 24px;
  }

  .news-detail-hero h2 {
    font-size: 23px;
  }

  .story-detail-hero h2 {
    font-size: 23px;
  }

  .news-detail-hero img,
  .story-detail-hero img {
    height: 170px;
  }

  .news-list-item time {
    font-weight: 700;
  }

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

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

  .stat-item {
    padding: 20px 16px;
  }

  .overview-list,
  .practice-grid,
  .digest-grid,
  .service-highlight-grid,
  .strength-grid,
  .topic-grid,
  .program-grid,
  .milestone-roadmap,
  .case-grid,
  .news-card-grid,
  .directory-summary,
  .process-band,
  .aggregate-grid,
  .case-grid,
  .detail-section-grid,
  .charity-project-grid,
  .practice-entry-grid,
  .office-entry-grid {
    grid-template-columns: 1fr;
  }

  .aggregate-card,
  .aggregate-card:nth-child(2n + 1) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .aggregate-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .aggregate-card:last-child {
    border-bottom: 0;
  }

  .home-entry-section,
  .home-office-section {
    padding-bottom: 42px;
  }

  .digest-column,
  .service-highlight,
  .strength-grid article,
  .topic-grid article,
  .program-grid article,
  .case-grid article,
  .news-card,
  .practice-entry-grid button,
  .practice-card,
  .lawyer-card,
  .news-feature,
  .responsibility-item,
  .milestone-roadmap article,
  .home-panel {
    min-height: auto;
  }

  .digest-column p {
    min-height: 0;
  }

  .digest-column a,
  .service-highlight p,
  .strength-grid p,
  .topic-grid p,
  .program-grid p,
  .case-grid p,
  .news-card p,
  .lawyer-summary,
  .news-item p,
  .media-item p,
  .responsibility-item p,
  .aggregate-card a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }

  .process-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-band div:last-child {
    border-bottom: 0;
  }

  .lawyer-card {
    grid-template-columns: 82px 1fr;
    gap: 13px;
    padding: 14px;
  }

  .lawyer-card img {
    width: 82px;
    height: 108px;
  }

  .news-item,
  .media-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .media-item-link {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .charity-logo-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .news-item time,
  .media-item time {
    text-align: left;
  }

  .contact-grid {
    gap: 26px;
  }

  .map-card img {
    height: 220px;
  }
}
