:root {
  --page-width: 1200px;
  --blue: #47a7ea;
  --blue-deep: #1f7ccf;
  --blue-soft: #edf6fd;
  --cyan: #5ec7f2;
  --green: #63c86d;
  --indigo: #6f86f8;
  --red: #d84f45;
  --slate: #4e6786;
  --text: #5c6674;
  --text-dark: #343d48;
  --line: #e8edf2;
  --line-strong: #d9e2ea;
  --bg: #ffffff;
  --soft: #f7fafc;
  --shadow: 0 18px 50px rgba(42, 94, 144, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body.module-home {
  background: #ffffff;
}

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

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

.wrap {
  width: min(var(--page-width), calc(100% - 24px));
  margin: 0 auto;
}

.topbar {
  background: #ededed;
  border-bottom: 1px solid #e3e3e3;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  font-size: 11px;
  color: #666;
}

.lang-switch::before {
  content: "◔";
  margin-right: 6px;
  font-size: 12px;
}

.top-links {
  display: flex;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #f2f2f2;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}

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

.brand-logo {
  color: #e55b24;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-name {
  color: #3c434a;
  font-size: 26px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  color: #727272;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 7px;
  width: 24px;
  height: 2px;
  background: #3b4654;
}

.nav-toggle::before {
  top: 13px;
}

.nav-toggle::after {
  top: 22px;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(234, 244, 251, 0.95), rgba(255, 255, 255, 0.82)),
    linear-gradient(130deg, #dbedf9 0%, #f8fbfe 54%, #dfeffc 100%);
  border-bottom: 1px solid var(--line);
}

.home-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 64px 0;
}

.hero-kicker,
.section-kicker,
.page-hero-copy p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  color: var(--text-dark);
  font-size: 54px;
  line-height: 1.12;
  font-weight: 400;
}

.hero-desc,
.section-text,
.content-panel p,
.feature-card p,
.outline-card p,
.news-card p,
.quick-card small,
.list-body p {
  line-height: 1.9;
}

.hero-desc {
  max-width: 620px;
  margin: 24px 0 32px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
}

.btn-primary {
  color: #fff;
  background: var(--blue-deep);
}

.btn-secondary {
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid #c9e1f6;
}

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text-dark);
}

.hero-panel-header strong {
  color: var(--blue-deep);
  font-weight: 600;
}

.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-facts li + li {
  margin-top: 14px;
}

.hero-facts span,
.hero-facts strong {
  display: block;
}

.hero-facts span {
  margin-bottom: 4px;
  font-size: 12px;
  color: #8090a3;
}

.hero-facts strong {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
}

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

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 0;
}

.quick-card,
.feature-card,
.outline-card,
.news-card,
.content-panel,
.side-menu,
.image-frame {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 22px 20px;
}

.quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.bg-blue {
  background: var(--blue);
}

.bg-cyan {
  background: var(--cyan);
}

.bg-green {
  background: var(--green);
}

.bg-indigo {
  background: var(--indigo);
}

.quick-card strong,
.feature-card h3,
.outline-card h3,
.news-card h3,
.content-panel h2,
.list-body h3 {
  color: var(--text-dark);
}

.quick-card small {
  color: #8793a1;
  font-size: 13px;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: var(--soft);
}

.section-deep {
  background: linear-gradient(135deg, #4f7cab 0%, #2c5f97 100%);
}

.section-head {
  margin-bottom: 30px;
  text-align: center;
}

.section-head.light .section-kicker,
.section-head.light .section-title {
  color: #fff;
}

.section-title {
  margin: 0;
  color: var(--blue);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
}

.section-title.text-left {
  text-align: left;
}

.section-grid {
  display: grid;
  gap: 32px;
}

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

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

.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.reverse {
  align-items: center;
}

.image-frame {
  overflow: hidden;
}

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

.small-frame img {
  max-height: 320px;
}

.news-grid,
.card-grid {
  display: grid;
  gap: 22px;
}

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

.news-card {
  overflow: hidden;
}

.news-card.featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-card-body,
.feature-card,
.outline-card,
.content-panel {
  padding: 26px;
}

.feature-card.compact,
.outline-card {
  min-height: 220px;
}

.news-date {
  display: inline-flex;
  padding: 5px 10px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 12px;
  border-radius: 999px;
}

.news-card a,
.text-link {
  color: var(--blue-deep);
  font-size: 14px;
}

.outline-card {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.outline-card h3 {
  color: #fff;
}

.page-hero {
  position: relative;
  min-height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-image::before,
.hero-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 66, 104, 0.28), rgba(34, 66, 104, 0.1));
}

.hero-solid.solid-blue {
  background: linear-gradient(135deg, #7dbcea 0%, #58a7e6 45%, #7cc7f4 100%);
}

.hero-solid.solid-red {
  background: linear-gradient(135deg, #b83630 0%, #d4544c 48%, #ef8c72 100%);
}

.hero-solid.solid-slate {
  background: linear-gradient(135deg, #657e9f 0%, #52739b 44%, #84a8cd 100%);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero-copy {
  padding-top: 110px;
  color: var(--blue);
}

.page-hero-copy.light,
.page-hero-copy.light p,
.page-hero-copy.light h1,
.page-hero-copy.light span {
  color: #fff;
}

.page-hero-copy h1 {
  margin: 0 0 10px;
  font-size: 44px;
  font-weight: 400;
}

.page-hero-copy span {
  font-size: 15px;
  letter-spacing: 0.18em;
}

.breadcrumb {
  border-bottom: 1px solid var(--line);
  background: #fafcfe;
}

.breadcrumb .wrap {
  padding: 14px 0;
  font-size: 13px;
  color: #7a8794;
}

.breadcrumb a {
  color: var(--blue-deep);
}

.sidebar-layout {
  grid-template-columns: 260px 1fr;
  align-items: start;
}

.side-menu {
  padding: 24px 0;
}

.side-menu h3 {
  margin: 0 0 12px;
  padding: 0 24px 14px;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.side-menu a {
  display: block;
  padding: 14px 24px;
  border-left: 3px solid transparent;
}

.side-menu a.active,
.side-menu a:hover,
.side-menu a:focus-visible {
  color: var(--blue-deep);
  background: #f8fbfe;
  border-left-color: var(--blue);
}

.content-area {
  display: grid;
  gap: 22px;
}

.list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.list-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.list-date {
  text-align: center;
  color: #748195;
}

.list-date strong {
  display: block;
  font-size: 28px;
  font-weight: 300;
}

.list-date span {
  font-size: 18px;
}

.site-footer {
  border-top: 1px solid var(--line-strong);
  background: #f5f7f9;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 450px;
  font-size: 13px;
}

.footer-inner a {
  color: #6d6d6d;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--blue-deep);
}

.module-shot-list {
  width: 100%;
}

.module-shot {
  margin: 0;
  border-bottom: 1px solid #efefef;
  background: #fff;
}

.module-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.doc-hero {
  position: relative;
  height: 520px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border-top: 1px solid #f2f2f2;
}

.doc-hero-company {
  background-image: url("../images/image1.png");
}

.doc-hero-news {
  background-image: url("../images/image2.png");
}

.doc-hero-hr {
  background-image: url("../images/image3.png");
}

.doc-hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.doc-hero-inner {
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding-top: 175px;
  padding-left: 120px;
}

.doc-hero-inner-news {
  justify-content: center;
  padding-top: 152px;
  padding-left: 0;
}

.doc-hero-inner-hr {
  padding-top: 160px;
  padding-left: 210px;
}

.doc-title {
  color: #48aef3;
}

.doc-title p {
  margin: 0 0 8px;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
}

.doc-title p::after {
  content: "";
  display: inline-block;
  width: 200px;
  height: 1px;
  margin-left: 18px;
  vertical-align: middle;
  background: rgba(72, 174, 243, 0.7);
}

.doc-title h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.1;
}

.doc-title h1 span {
  font-size: 30px;
  font-weight: 400;
}

.doc-title-light,
.doc-title-light h1,
.doc-title-light h1 span,
.doc-title-light p {
  color: #fff;
}

.doc-title-light p::after {
  background: rgba(255, 255, 255, 0.58);
}

.doc-icon-strip {
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.doc-icon-grid {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 110px;
}

.doc-icon-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.doc-icon-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.doc-icon-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 520px;
}

.doc-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 16px;
}

.doc-icon-card strong {
  color: #8e8e8e;
  font-size: 15px;
  font-weight: 400;
}

.doc-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.doc-icon-orange {
  background: linear-gradient(135deg, #5daef0 0 45%, #f7a33c 45% 100%);
}

.doc-icon-blue {
  background: #71b7ff;
}

.doc-icon-cyan {
  background: #39c0ea;
}

.doc-icon-green {
  background: #5ec76b;
}

.doc-icon-indigo {
  background: #7286ff;
}

.doc-icon-square {
  border-radius: 6px;
  background: #29bfe8;
  font-size: 13px;
}

.doc-icon-orbit {
  background: #65aef5;
  color: transparent;
  font-size: 0;
}

.doc-icon-orbit::before,
.doc-icon-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.doc-icon-orbit::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-top: 3px solid rgba(255, 255, 255, 0.82);
  border-right: 3px solid rgba(255, 255, 255, 0.82);
  transform: rotate(32deg);
}

.doc-icon-ring {
  background: #6fa9ff;
  color: transparent;
  font-size: 0;
}

.doc-icon-tilt {
  background: #ef5464;
  border-radius: 4px;
  transform: rotate(-12deg);
  color: transparent;
  font-size: 0;
}

.doc-icon-tilt::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.doc-content {
  padding: 44px 0 74px;
  background: #fff;
}

.doc-copy {
  max-width: 900px;
}

.doc-copy h2 {
  margin: 0 0 42px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 400;
  text-align: center;
}

.doc-copy p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 2;
}

.doc-news-content {
  padding-top: 34px;
}

.doc-news-item {
  display: grid;
  grid-template-columns: 140px 140px 1fr;
  gap: 26px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
}

.doc-news-date {
  padding-top: 6px;
  text-align: center;
  color: #6d7580;
}

.doc-news-date strong {
  display: block;
  font-size: 32px;
  font-weight: 300;
}

.doc-news-date span {
  font-size: 22px;
  font-weight: 300;
}

.doc-news-thumb img {
  width: 140px;
  height: 106px;
  object-fit: cover;
}

.doc-news-copy h3 {
  margin: 2px 0 12px;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 400;
}

.doc-news-copy p {
  margin-bottom: 10px;
  color: #5f6873;
  font-size: 14px;
}

.doc-news-copy a {
  color: #58aee6;
  font-size: 13px;
}

.doc-talent-panel {
  display: grid;
  grid-template-columns: 1fr 430px;
  min-height: 360px;
  margin-top: 10px;
  background: linear-gradient(90deg, #f2f6fb 0%, #edf4fb 100%);
  overflow: hidden;
}

.doc-talent-copy {
  padding: 86px 34px 40px 28px;
}

.doc-talent-copy h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 400;
}

.doc-talent-copy p {
  color: #606875;
  font-size: 14px;
}

.doc-talent-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1080px) {
  .home-hero-inner,
  .news-grid,
  .four-col,
  .three-col,
  .two-col,
  .quick-grid,
  .sidebar-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .doc-hero-inner,
  .doc-hero-inner-news,
  .doc-hero-inner-hr,
  .doc-news-item,
  .doc-talent-panel,
  .doc-icon-grid-four,
  .doc-icon-grid-three,
  .doc-icon-grid-two {
    grid-template-columns: 1fr;
  }

  .doc-hero-inner,
  .doc-hero-inner-news,
  .doc-hero-inner-hr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
  }

  .page-hero-copy {
    padding-top: 86px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 95px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a.active::after {
    display: none;
  }

  .brand-logo {
    font-size: 24px;
  }

  .brand-name {
    font-size: 22px;
  }

  .doc-hero {
    height: 320px;
  }

  .doc-title p {
    font-size: 26px;
  }

  .doc-title p::after {
    width: 120px;
  }

  .doc-title h1 {
    font-size: 38px;
  }

  .doc-title h1 span {
    font-size: 22px;
  }
}

@media (max-width: 680px) {
  .hero-copy h1,
  .page-hero-copy h1,
  .section-title {
    font-size: 32px;
  }

  .home-hero-inner {
    min-height: auto;
    padding: 42px 0 50px;
  }

  .page-hero {
    min-height: 240px;
  }

  .list-item {
    grid-template-columns: 1fr;
  }

  .list-date {
    text-align: left;
  }

  .topbar-inner {
    min-height: 30px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 4px 0;
  }

  .doc-content {
    padding: 32px 0 48px;
  }

  .doc-copy h2 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .doc-news-item {
    gap: 14px;
  }

  .doc-news-date {
    text-align: left;
  }

  .doc-news-thumb img {
    width: 100%;
    height: 180px;
  }

  .doc-talent-copy {
    padding: 34px 20px 28px;
  }

  .doc-talent-copy h3 {
    font-size: 22px;
  }
}

.module-topbar {
  background: #ededed;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #e7e7e7;
}

.module-wrap {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
}

.module-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  font-size: 12px;
  color: #666;
}

.module-lang::before {
  content: "◔";
  margin-right: 8px;
  font-size: 13px;
}

.module-top-links {
  display: flex;
  gap: 12px;
}

.module-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.7);
}

.module-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.module-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-brand-mark {
  color: #ea5521;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.module-brand-name {
  color: #34383f;
  font-size: 30px;
  font-weight: 700;
}

.module-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  color: #666;
}

.module-nav a {
  position: relative;
  padding: 6px 0;
}

.module-nav a.active,
.module-nav a:hover,
.module-nav a:focus-visible {
  color: #42a8ef;
}

.module-main {
  background: #fff;
}

.module-panel + .module-panel {
  border-top: 1px solid #f2f2f2;
}

.module-banner img {
  width: 100%;
  height: auto;
}

.module-icons {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.module-icons-grid {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 122px;
}

.module-icons-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.module-icons-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.module-icons-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
}

.module-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}

.module-icon-link img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.module-icon-link span {
  color: #7f7f7f;
  font-size: 12px;
}

.module-copy-section {
  padding: 36px 0 66px;
}

.module-copy h2 {
  margin: 0 0 82px;
  color: #44a9f3;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
}

.module-copy p {
  max-width: 1180px;
  margin: 0 auto;
  color: #252525;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}

.module-news-section {
  padding-top: 34px;
  padding-bottom: 52px;
}

.module-news-section .module-copy h2 {
  margin-bottom: 76px;
}

.module-news-item {
  display: grid;
  grid-template-columns: 150px 180px 1fr;
  gap: 34px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

.module-news-date {
  padding-top: 18px;
  text-align: center;
  color: #69717c;
}

.module-news-date strong {
  display: block;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.module-news-date span {
  font-size: 18px;
}

.module-news-thumb img {
  width: 180px;
  height: 136px;
  object-fit: cover;
}

.module-news-more {
  padding-top: 58px;
}

.module-news-more a {
  color: #48aef3;
  font-size: 13px;
}

.module-talent-section {
  padding-top: 38px;
  padding-bottom: 0;
}

.module-talent-section .module-copy h2 {
  margin-bottom: 64px;
}

.module-talent-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
  background: linear-gradient(90deg, #f2f6fb 0%, #edf4fb 100%);
  overflow: hidden;
}

.module-talent-text {
  padding: 126px 40px 50px;
}

.module-talent-text h3 {
  margin: 0 0 28px;
  color: #45a8f1;
  font-size: 26px;
  font-weight: 400;
}

.module-talent-text p {
  max-width: none;
  margin: 0;
  color: #5e6772;
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
}

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

.module-footer {
  border-top: 1px solid #ececec;
  background: #fafafa;
}

.module-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  min-height: 450px;
  font-size: 13px;
}

.module-footer-inner a {
  color: #6d6d6d;
}

.module-footer-inner a:hover,
.module-footer-inner a:focus-visible {
  color: #42a8ef;
}

@media (max-width: 1080px) {
  .module-icons-grid-four,
  .module-icons-grid-three,
  .module-icons-grid-two,
  .module-news-item,
  .module-talent-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .module-header-inner {
    min-height: 68px;
  }

  .module-brand-mark {
    font-size: 28px;
  }

  .module-brand-name {
    font-size: 24px;
  }

  .module-nav {
    position: absolute;
    top: 96px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

@media (max-width: 680px) {
  .module-topbar-inner {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 4px 0;
  }

  .module-footer-inner {
    flex-direction: column;
    gap: 8px;
    padding: 72px 0;
    min-height: 450px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    padding: 72px 0;
    min-height: 450px;
  }

  .module-copy-section {
    padding: 28px 0 38px;
  }

  .module-copy h2 {
    margin-bottom: 34px;
    font-size: 24px;
  }

  .module-copy p {
    font-size: 15px;
    font-weight: 500;
  }

  .module-news-thumb img {
    width: 100%;
    height: auto;
  }

  .module-news-date,
  .module-news-more {
    padding-top: 0;
    text-align: left;
  }

  .module-talent-text {
    padding: 34px 20px 28px;
  }

  .module-talent-text h3 {
    margin-bottom: 18px;
    font-size: 22px;
  }
}
