@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&family=Noto+Serif+TC:wght@600;700&display=swap');

:root {
  --green: #1f6b3b;
  --dark-green: #15502c;
  --red: #c81f2e;
  --gray-900: #2c2c2c;
  --gray-800: #3a3a3a;
  --gray-700: #555;
  --gray-500: #8b8b8b;
  --gray-200: #ececec;
  --gray-100: #f7f7f7;
  --line: #d9d9d9;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans TC", "PingFang TC", "Heiti TC", sans-serif;
  color: #1e1e1e;
  background: #fff;
  line-height: 1.7;
}

.navbar {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

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

.brand-title {
  font-size: 16px;
  font-weight: 700;
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 0.4px;
  color: #666;
}

.nav-link.active,
.nav-link:hover {
  color: var(--red) !important;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 280px;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3), transparent 45%),
              linear-gradient(120deg, rgba(8,34,70,0.85), rgba(11,100,140,0.7)),
              linear-gradient(20deg, #0c2a4e, #0a1f32);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/hero-bg.jpg') center/cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  padding: 48px 0 56px;
}

.hero-title {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 26px;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-sub {
  color: var(--red);
  font-size: 20px;
  margin: 18px 0 10px;
  font-weight: 700;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.list-bullets {
  list-style: none;
  padding-left: 0;
}

.list-bullets li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 8px;
}

.list-bullets li::before {
  content: "\25B6";
  color: var(--red);
  font-size: 12px;
  margin-top: 4px;
}

.card-clean {
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  padding: 18px;
  height: 100%;
}

.card-clean .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.card-title-red {
  color: var(--red);
  font-weight: 700;
}

.job-card {
  border: 1px solid var(--line);
  background: #f6f6f6;
  padding: 16px;
  text-align: center;
}

.job-card span {
  display: inline-block;
  margin-top: 12px;
  background: var(--green);
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
}

.news-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #cfd8e3, #f0f4f8);
  border: 1px solid var(--line);
}

.footer {
  background: #4a4a4a;
  color: #eaeaea;
  padding: 28px 0 20px;
  border-top: 6px solid var(--red);
}

.footer small {
  color: #cfcfcf;
}

.footer-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c81f2e;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
}

.text-green {
  color: var(--green) !important;
}

.text-red {
  color: var(--red) !important;
}

.border-green {
  border-color: #d7e2d4 !important;
}
