html {
  min-height: 100%;
}

body.themed-internal,
body.themed-internal *,
body.themed-internal *::before,
body.themed-internal *::after {
  box-sizing: border-box;
}

body.themed-internal {
  --ink: #102038;
  --muted: #5d6b7f;
  --line: rgba(16, 32, 56, 0.14);
  --panel: #ffffff;
  --page: #edf3f9;
  --brand: #1d4f91;
  --brand-strong: #163d71;
  --accent: #c38949;
  --accent-soft: rgba(195, 137, 73, 0.12);
  --shadow: 0 30px 80px rgba(10, 24, 45, 0.12);
  --shadow-soft: 0 18px 42px rgba(10, 24, 45, 0.1);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(187, 208, 232, 0.52), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(255, 220, 188, 0.44), transparent 14%),
    linear-gradient(180deg, #f9fbff 0%, #eef3f8 36%, #e7edf4 100%);
}

body.themed-internal img {
  display: block;
  max-width: 100%;
}

body.themed-internal a:focus-visible,
body.themed-internal button:focus-visible,
body.themed-internal .language-switch:focus-visible,
body.themed-internal input:focus-visible,
body.themed-internal select:focus-visible,
body.themed-internal textarea:focus-visible {
  outline: 2px solid rgba(29, 79, 145, 0.8);
  outline-offset: 4px;
}

.themed-internal .shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.themed-internal .shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 32%);
}

.themed-internal .site-header {
  position: relative;
  z-index: 30;
  overflow: visible;
  background: transparent;
  border-bottom: none;
  padding-top: 24px;
}

.themed-internal .header-inner {
  position: relative;
  z-index: 1;
  overflow: visible;
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 20px 28px 18px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 248, 252, 0.86) 100%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.themed-internal .header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.46), transparent 30%, transparent 72%, rgba(202, 219, 239, 0.2));
  pointer-events: none;
}

.themed-internal .brand {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  width: clamp(200px, 22vw, 276px);
  max-width: 100%;
  flex: 0 1 auto;
}

.themed-internal .brand-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(16, 32, 56, 0.12));
}

.themed-internal .nav-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.themed-internal .menu {
  display: flex;
  align-self: center;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 0;
}

.themed-internal .menu-item,
.themed-internal .language-switch {
  position: relative;
}

.themed-internal .menu-item {
  display: flex;
  align-items: center;
}

.themed-internal .menu-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 22px;
}

.themed-internal .menu-link {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
  padding: 8px 0;
}

.themed-internal .menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 79, 145, 0.18), rgba(29, 79, 145, 0.92), rgba(195, 137, 73, 0.42));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.themed-internal .menu-link:hover,
.themed-internal .menu-link:focus-visible,
.themed-internal .menu-item:hover > .menu-link,
.themed-internal .menu-item:focus-within > .menu-link,
.themed-internal .menu-item.is-open > .menu-link {
  color: var(--brand);
  opacity: 1;
  transform: translateY(-1px);
}

.themed-internal .menu-link:hover::after,
.themed-internal .menu-link:focus-visible::after,
.themed-internal .menu-item:hover > .menu-link::after,
.themed-internal .menu-item:focus-within > .menu-link::after,
.themed-internal .menu-item.is-open > .menu-link::after {
  transform: scaleX(1);
}

.themed-internal .submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 168px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  z-index: 40;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 252, 0.98) 100%);
  border: 1px solid rgba(170, 186, 208, 0.26);
  box-shadow: 0 20px 40px rgba(17, 35, 64, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.themed-internal .menu-item:hover .submenu,
.themed-internal .menu-item:focus-within .submenu,
.themed-internal .menu-item.is-open .submenu,
.themed-internal .language-switch:hover .submenu,
.themed-internal .language-switch:focus-within .submenu,
.themed-internal .language-switch.is-open .submenu,
.themed-internal .submenu:hover,
.themed-internal .submenu:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.themed-internal .submenu a {
  color: #223149;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  padding: 10px 14px;
  border-radius: 14px;
  text-align: center;
  white-space: nowrap;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(224, 232, 242, 0.78);
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.themed-internal .submenu a::after {
  content: none;
}

.themed-internal .menu-item .submenu a:not([aria-current="page"]):hover,
.themed-internal .menu-item .submenu a:not([aria-current="page"]):focus-visible {
  color: var(--brand);
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(29, 79, 145, 0.14), 0 14px 28px rgba(17, 35, 64, 0.08);
}

.themed-internal .menu-item .submenu a[aria-current="page"] {
  color: var(--brand);
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 250, 253, 1) 100%);
  box-shadow: inset 0 0 0 1px rgba(29, 79, 145, 0.16), 0 14px 28px rgba(17, 35, 64, 0.1);
  font-weight: 700;
  text-shadow: none;
}

.themed-internal .language-switch {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  padding: 6px 12px;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(16, 32, 56, 0.04);
  box-shadow: inset 0 0 0 1px rgba(16, 32, 56, 0.08);
  text-shadow: none;
  transform: none;
}

.themed-internal .language-switch::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 18px;
}

.themed-internal .language-switch .submenu {
  top: calc(100% + 12px);
  gap: 8px;
  min-width: 160px;
  padding: 14px;
  z-index: 30;
}

.themed-internal .language-switch .submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 14px;
}

.themed-internal .language-switch .submenu a {
  color: #223149;
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: left;
}

.themed-internal .language-switch .submenu a[aria-current="true"] {
  color: var(--brand);
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 250, 253, 1) 100%);
  box-shadow: inset 0 0 0 1px rgba(29, 79, 145, 0.16), 0 14px 28px rgba(17, 35, 64, 0.1);
  font-weight: 700;
}

.themed-internal .globe-badge {
  position: relative;
  width: 42px;
  flex: 0 0 auto;
  order: 2;
  margin: 0;
  transform: none;
}

.themed-internal .globe-badge img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
}

.themed-internal .globe-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(8px, 0.64vw, 10px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.themed-internal .language-copy {
  display: flex;
  align-items: center;
  color: #4b5a70;
  gap: 0;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  position: relative;
  order: 1;
  z-index: 1;
  transform: none;
  margin: 0;
}

.themed-internal .mobile-menu-toggle {
  appearance: none;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #4a79bf);
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(29, 79, 145, 0.2);
}

.themed-internal .mobile-menu-toggle-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.themed-internal .mobile-menu-toggle-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.themed-internal .nav-group.is-mobile-menu-open .mobile-menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.themed-internal .nav-group.is-mobile-menu-open .mobile-menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.themed-internal .nav-group.is-mobile-menu-open .mobile-menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.themed-internal .page-main {
  position: relative;
  flex: 1;
  padding-bottom: 56px;
}

.themed-internal .hero-banner {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 48px));
  margin: 28px auto 0;
  padding: clamp(10px, 1.2vw, 16px);
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(239, 245, 252, 0.92) 0%, rgba(228, 237, 248, 0.86) 100%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.themed-internal .hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 36%, transparent 72%, rgba(168, 189, 218, 0.18));
  pointer-events: none;
}

.themed-internal .hero-banner img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
}

.themed-internal .content-panel {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: clamp(-58px, -4vw, -42px) auto 0;
  padding: clamp(34px, 4vw, 52px) clamp(22px, 4vw, 48px) clamp(28px, 3vw, 40px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(228, 235, 244, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.themed-internal .content-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(26px, 4vw, 42px);
  width: clamp(112px, 12vw, 180px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 79, 145, 0.95), rgba(195, 137, 73, 0.78));
}

.themed-internal.page-news .content-panel {
  width: min(1240px, calc(100% - 48px));
}

.themed-internal.page-company .content-panel {
  width: min(1240px, calc(100% - 48px));
}

.themed-internal.page-contact .content-panel {
  width: min(1200px, calc(100% - 48px));
}

.themed-internal .page-footer {
  width: min(1140px, calc(100% - 48px));
  margin: 24px auto 0;
  text-align: center;
  color: #243146;
  padding: 20px 22px 28px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(15, 34, 60, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.themed-internal .page-footer .company {
  margin: 0 0 10px;
  color: #132747;
  font-family: "STSong", "Songti SC", "SimHei", "Microsoft YaHei", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.themed-internal .footer-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 13.6px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #4c596d;
}

.themed-internal .footer-details span {
  display: block;
}

.themed-internal :is(.mineral-copy, .agriculture-copy, .career-copy, .negotiation-copy, .news-copy) {
  width: min(100%, 980px);
  margin: 0 auto;
}

.themed-internal.page-business-logistics .mineral-copy {
  width: min(100%, 1020px);
  max-width: 1020px;
  transform: none;
}

.themed-internal.page-news .news-copy {
  width: min(100%, 1080px);
}

.themed-internal :is(.mineral-title, .agriculture-title, .career-title, .negotiation-title, .news-title) {
  margin: 0 0 22px;
  color: #11213c;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", "Songti SC", serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.24;
  text-align: center;
}

.themed-internal :is(.mineral-title, .agriculture-title, .career-title, .negotiation-title, .news-title)::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 79, 145, 0.2), rgba(29, 79, 145, 0.92), rgba(195, 137, 73, 0.4));
}

html:not([lang="zh-CN"]) body.themed-internal :is(.mineral-title, .agriculture-title, .career-title, .negotiation-title, .news-title) {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", Georgia, serif;
  letter-spacing: 0.03em;
}

html:not([lang="zh-CN"]) body.themed-internal :is(.mineral-intro, .mineral-item-copy, .agriculture-item-copy, .news-headline, .news-note, .form-heading, .field-label, .compound-label-main, .compound-mini-label, .footer-details) {
  letter-spacing: 0.01em;
}

.themed-internal .mineral-intro {
  max-width: 860px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
  text-align: center;
}

.themed-internal :is(.mineral-list, .agriculture-list) {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.themed-internal :is(.mineral-item, .agriculture-item) {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 56, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 254, 0.94) 100%);
  box-shadow: 0 18px 42px rgba(10, 24, 45, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.themed-internal :is(.mineral-item, .agriculture-item)::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 79, 145, 0.9), rgba(195, 137, 73, 0.4));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.themed-internal :is(.mineral-item, .agriculture-item):hover,
.themed-internal :is(.mineral-item, .agriculture-item):focus-within {
  transform: translateY(-3px);
  border-color: rgba(29, 79, 145, 0.16);
  box-shadow: 0 22px 46px rgba(10, 24, 45, 0.11);
}

.themed-internal :is(.mineral-item, .agriculture-item):hover::before,
.themed-internal :is(.mineral-item, .agriculture-item):focus-within::before {
  opacity: 1;
}

.themed-internal :is(.mineral-item-icon, .agriculture-item-icon) {
  width: 48px;
  height: 48px;
  margin-top: 0;
  padding: 11px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(29, 79, 145, 0.12) 0%, rgba(195, 137, 73, 0.14) 100%);
  box-shadow: inset 0 0 0 1px rgba(29, 79, 145, 0.08);
  object-fit: contain;
  transform: none;
  align-self: center;
}

.themed-internal :is(.mineral-item-copy, .agriculture-item-copy) {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.95;
}

.themed-internal :is(.mineral-item-copy, .agriculture-item-copy) strong {
  color: var(--brand-strong);
  font-weight: 700;
}

.themed-internal .news-page {
  display: none;
}

.themed-internal .news-page.is-active {
  display: block;
}

.themed-internal .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.themed-internal .news-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 56, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 254, 0.94) 100%);
  box-shadow: 0 18px 42px rgba(10, 24, 45, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.themed-internal .news-item:hover,
.themed-internal .news-item:focus-within {
  transform: translateY(-3px);
  border-color: rgba(29, 79, 145, 0.16);
  box-shadow: 0 22px 46px rgba(10, 24, 45, 0.11);
}

.themed-internal .news-index {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  color: var(--accent);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 2vw, 34px);
  font-weight: 700;
  line-height: 1;
}

.themed-internal .news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.themed-internal .news-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #a56a29;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.themed-internal .news-headline {
  margin: 0 0 12px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", "Songti SC", serif;
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1.65;
  font-weight: 700;
}

.themed-internal .news-headline a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.themed-internal .news-headline a:hover,
.themed-internal .news-headline a:focus-visible {
  color: var(--brand);
  border-color: currentColor;
}

.themed-internal .news-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.themed-internal .news-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.themed-internal .page-button {
  appearance: none;
  border: 1px solid rgba(16, 32, 56, 0.1);
  min-width: 118px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(10, 24, 45, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.themed-internal .page-button:hover,
.themed-internal .page-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(10, 24, 45, 0.11);
}

.themed-internal .page-button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), #4a79bf);
  color: #ffffff;
}

.themed-internal .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.themed-internal :is(.career-copy, .negotiation-copy) {
  width: min(100%, 1040px);
  display: grid;
  gap: 26px;
}

.themed-internal .career-title,
.themed-internal .negotiation-title {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.themed-internal .form-heading {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
}

.themed-internal :is(.career-form-card, .negotiation-form-card) {
  position: relative;
  width: min(100%, 960px);
  max-width: none;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(18, 41, 71, 0.08);
  background: linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(247, 250, 254, 0.94));
  box-shadow: 0 24px 56px rgba(10, 24, 45, 0.1);
}

.themed-internal :is(.career-form-card, .negotiation-form-card)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 42%, rgba(181, 200, 224, 0.12));
  pointer-events: none;
}

.themed-internal :is(.career-form, .negotiation-form) {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  display: grid;
  gap: 18px;
}

.themed-internal .form-section {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(16, 32, 56, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 253, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.themed-internal .form-section legend {
  padding: 0 10px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.themed-internal .form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.themed-internal .career-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.themed-internal .career-form > .full,
.themed-internal .career-form > .button-row,
.themed-internal .career-form > .form-status {
  grid-column: 1 / -1;
}

.themed-internal :is(.field, .compound-field) {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.themed-internal .field.full,
.themed-internal .submit-row,
.themed-internal .form-status {
  grid-column: 1 / -1;
}

.themed-internal .field-label,
.themed-internal .compound-label-main,
.themed-internal .compound-mini-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.themed-internal .required {
  color: #c06246;
}

.themed-internal .control,
.themed-internal .date-select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 32, 56, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.themed-internal .control::placeholder {
  color: #7d8898;
}

.themed-internal .control:hover,
.themed-internal .date-select:hover {
  border-color: rgba(29, 79, 145, 0.22);
}

.themed-internal .control:focus,
.themed-internal .date-select:focus {
  outline: none;
  border-color: rgba(29, 79, 145, 0.55);
  box-shadow: 0 0 0 4px rgba(29, 79, 145, 0.12);
}

.themed-internal textarea.control {
  min-height: 150px;
  resize: vertical;
}

.themed-internal .control:disabled {
  cursor: not-allowed;
  opacity: 0.74;
}

.themed-internal select.control,
.themed-internal .date-trigger,
.themed-internal .date-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #607087 50%),
    linear-gradient(135deg, #607087 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 7px 7px;
  background-repeat: no-repeat;
  padding-right: 48px;
}

.themed-internal .select-wrap::after,
.themed-internal .date-wrap::after {
  content: none;
}

.themed-internal .date-wrap {
  position: relative;
}

.themed-internal .date-trigger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  text-align: left;
}

.themed-internal .date-trigger.has-value {
  color: var(--ink);
}

.themed-internal .date-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: min(420px, calc(100vw - 64px));
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(16, 32, 56, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 50px rgba(10, 24, 45, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 20;
}

.themed-internal .date-wrap.open .date-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.themed-internal .date-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.themed-internal .date-selects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.themed-internal .date-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.themed-internal .date-btn,
.themed-internal .action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand), #4a79bf);
  box-shadow: 0 16px 30px rgba(29, 79, 145, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.themed-internal .date-btn:not(.primary) {
  background: rgba(235, 241, 248, 0.95);
  color: var(--ink);
  box-shadow: none;
  border: 1px solid rgba(16, 32, 56, 0.1);
}

.themed-internal .date-btn:hover,
.themed-internal .date-btn:focus-visible,
.themed-internal .action:hover,
.themed-internal .action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(29, 79, 145, 0.28);
  filter: saturate(1.02);
}

.themed-internal .button-row,
.themed-internal .submit-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.themed-internal .upload-button {
  display: flex;
  flex: 1 1 320px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px dashed rgba(29, 79, 145, 0.22);
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.92) 0%, rgba(236, 243, 250, 0.9) 100%);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.themed-internal .upload-button:hover,
.themed-internal .upload-button:focus-within {
  transform: translateY(-2px);
  border-color: rgba(29, 79, 145, 0.34);
  box-shadow: 0 18px 34px rgba(10, 24, 45, 0.08);
}

.themed-internal .upload-button .action {
  flex: 0 0 auto;
}

.themed-internal .file-name {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.themed-internal .form-status {
  min-height: 24px;
  padding: 4px 4px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.themed-internal .career-form > .button-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.themed-internal .career-form > .button-row .upload-button {
  flex: none;
  width: 100%;
  max-width: none;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 16px;
}

.themed-internal .career-form > .button-row .file-name {
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.themed-internal .career-form > .button-row .upload-button .action {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(29, 79, 145, 0.2);
}

.themed-internal .career-form > .button-row > .action {
  flex: none;
  width: 100%;
  min-width: 0;
  min-height: 54px;
}

.themed-internal .form-status.is-success {
  color: #1b7a52;
}

.themed-internal .form-status.is-error {
  color: #b34731;
}

.themed-internal .compound-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.themed-internal .compound-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 32, 56, 0.12);
  background: rgba(244, 248, 252, 0.95);
  color: var(--ink);
  font-weight: 700;
}

.themed-internal .compound-part {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.themed-internal .submit-row {
  margin-top: 6px;
}

.themed-internal .submit-row .action {
  min-width: 160px;
}

.themed-internal .placeholder {
  color: #8a95a4;
}

@media (max-width: 960px) {
  .themed-internal.has-mobile-menu-open {
    overflow: hidden;
  }

  .themed-internal .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .themed-internal .nav-group {
    position: relative;
    margin-left: auto;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .themed-internal .mobile-menu-toggle {
    display: inline-flex;
  }

  .themed-internal .menu {
    position: absolute;
    top: calc(100% + 12px);
    left: auto;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(328px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    max-height: min(70vh, 560px);
    padding: 16px;
    overflow: auto;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 247, 253, 0.98) 100%);
    box-shadow: 0 26px 60px rgba(10, 24, 45, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .themed-internal .nav-group.is-mobile-menu-open .menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .themed-internal .menu-item {
    display: block;
  }

  .themed-internal .menu-item::after {
    content: none;
  }

  .themed-internal .menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 0 1px rgba(29, 79, 145, 0.1);
    font-size: 15px;
  }

  .themed-internal .menu-link::after {
    content: "+";
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--brand);
    font-size: 20px;
    line-height: 1;
    transform: none;
  }

  .themed-internal .menu-link:hover::after,
  .themed-internal .menu-link:focus-visible::after,
  .themed-internal .menu-item:hover > .menu-link::after,
  .themed-internal .menu-item:focus-within > .menu-link::after,
  .themed-internal .menu-item.is-open > .menu-link::after {
    transform: none;
  }

  .themed-internal .menu-item.is-open > .menu-link::after {
    content: "-";
  }

  .themed-internal .menu .submenu,
  .themed-internal .menu-item.is-open .submenu,
  .themed-internal .menu-item:hover .submenu,
  .themed-internal .menu-item:focus-within .submenu,
  .themed-internal .menu-item .submenu:hover,
  .themed-internal .menu-item .submenu:focus-within {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    min-width: 0;
    height: 0;
    margin: 0;
    padding: 0 8px;
    gap: 6px;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .themed-internal .menu .submenu::before {
    content: none;
  }

  .themed-internal .menu-item.is-open .submenu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    transform: translateY(0);
    padding: 8px 8px 4px;
    opacity: 1;
    pointer-events: auto;
  }

  .themed-internal .menu .submenu a {
    text-align: left;
    white-space: normal;
    background: rgba(255, 255, 255, 0.72);
  }

  .themed-internal .language-switch {
    min-height: 46px;
    align-self: center;
  }

  .themed-internal .language-switch .submenu {
    left: auto;
    right: 0;
    transform: translateY(8px);
  }

  .themed-internal .language-switch:hover .submenu,
  .themed-internal .language-switch:focus-within .submenu,
  .themed-internal .language-switch.is-open .submenu,
  .themed-internal .language-switch .submenu:hover,
  .themed-internal .language-switch .submenu:focus-within {
    transform: translateY(0);
  }

  .themed-internal .hero-banner,
  .themed-internal .content-panel {
    width: calc(100% - 36px);
  }

  .themed-internal .content-panel {
    margin-top: -34px;
  }

  .themed-internal .news-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .themed-internal .career-form,
  .themed-internal .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .themed-internal .site-header {
    padding-top: 12px;
  }

  .themed-internal .header-inner {
    gap: 10px;
    width: calc(100% - 24px);
    justify-content: space-between;
    padding: 14px;
    border-radius: 24px;
  }

  .themed-internal .brand {
    width: clamp(150px, 42vw, 188px);
  }

  .themed-internal .brand-image {
    width: 100%;
  }

  .themed-internal .nav-group {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .themed-internal .menu {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .themed-internal .menu-link {
    font-size: 14px;
  }

  .themed-internal .submenu {
    min-width: 150px;
    padding: 12px;
  }

  .themed-internal .submenu a {
    font-size: 13px;
  }

  .themed-internal .language-switch {
    min-height: 42px;
    align-self: center;
    padding: 5px 8px;
  }

  .themed-internal .mobile-menu-toggle {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .themed-internal .mobile-menu-toggle-icon {
    width: 16px;
  }

  .themed-internal .globe-badge {
    width: 34px;
  }

  .themed-internal .language-copy {
    display: none;
  }

  .themed-internal .hero-banner,
  .themed-internal .content-panel,
  .themed-internal .page-footer {
    width: calc(100% - 24px);
  }

  .themed-internal .hero-banner {
    margin-top: 20px;
    padding: 8px;
    border-radius: 26px;
  }

  .themed-internal .hero-banner img {
    border-radius: 20px;
  }

  .themed-internal .content-panel {
    margin-top: -22px;
    padding: 28px 16px 24px;
    border-radius: 24px;
  }

  .themed-internal .content-panel::before {
    left: 16px;
    width: 96px;
  }

  .themed-internal :is(.mineral-title, .agriculture-title, .career-title, .negotiation-title, .news-title) {
    font-size: clamp(26px, 8vw, 34px);
    letter-spacing: 0.06em;
  }

  .themed-internal :is(.mineral-title, .agriculture-title, .career-title, .negotiation-title, .news-title)::after {
    margin-top: 14px;
  }

  .themed-internal :is(.mineral-item, .agriculture-item) {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
  }

  .themed-internal :is(.mineral-item-icon, .agriculture-item-icon) {
    width: 42px;
    height: 42px;
  }

  .themed-internal .news-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px;
  }

  .themed-internal .news-index {
    justify-content: flex-start;
    font-size: 24px;
  }

  .themed-internal .news-headline {
    font-size: 18px;
  }

  .themed-internal .page-button {
    min-width: 104px;
    padding: 11px 16px;
    font-size: 13px;
  }

  .themed-internal :is(.career-form-card, .negotiation-form-card) {
    padding: 18px;
    border-radius: 22px;
  }

  .themed-internal .form-section {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .themed-internal .date-panel {
    width: calc(100vw - 48px);
    left: 50%;
    transform: translate(-50%, 8px);
  }

  .themed-internal .date-wrap.open .date-panel {
    transform: translate(-50%, 0);
  }

  .themed-internal .date-selects,
  .themed-internal .compound-row {
    grid-template-columns: 1fr;
  }

  .themed-internal .compound-prefix {
    justify-content: flex-start;
  }

  .themed-internal .button-row,
  .themed-internal .submit-row {
    flex-direction: column;
  }

  .themed-internal .upload-button {
    flex-direction: column;
    align-items: stretch;
  }

  .themed-internal .career-form > .button-row {
    grid-template-columns: 1fr;
  }

  .themed-internal .career-form > .button-row .upload-button {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }

  .themed-internal .action,
  .themed-internal .date-btn {
    width: 100%;
  }

  .themed-internal .page-footer {
    padding: 18px 16px 22px;
  }

  .themed-internal .footer-details {
    gap: 4px;
    font-size: 10.8px;
  }
}

@media (max-width: 420px) {
  .themed-internal .header-inner {
    width: calc(100% - 16px);
    padding: 12px 10px;
    gap: 6px;
  }

  .themed-internal .brand {
    width: clamp(132px, 40vw, 164px);
  }

  .themed-internal .nav-group {
    width: auto;
    min-width: auto;
    gap: 6px;
    margin-right: 6px;
  }

  .themed-internal .language-switch {
    min-height: 40px;
    position: static;
    padding: 4px 6px;
  }

  .themed-internal .globe-badge {
    width: 30px;
  }

  .themed-internal .mobile-menu-toggle {
    min-height: 40px;
    min-width: 40px;
    position: static;
    padding: 0 10px;
    gap: 0;
    box-shadow: 0 10px 20px rgba(29, 79, 145, 0.16);
  }

  .themed-internal .menu {
    top: calc(100% + 10px);
    width: min(300px, calc(100vw - 16px));
    max-width: calc(100vw - 16px);
  }

  .themed-internal .mobile-menu-toggle-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .themed-internal *,
  .themed-internal *::before,
  .themed-internal *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
