:root {
  --sun: #f4c430;
  --sun-deep: #e8a817;
  --leaf: #48a868;
  --leaf-soft: #e7f5df;
  --sky: #5ab7d8;
  --ink: #223126;
  --text: #3d493f;
  --muted: #697469;
  --line: #eadfbd;
  --paper: #fffdf6;
  --cream: #fff7da;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(83, 92, 52, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 196, 48, 0.18), transparent 28rem),
    linear-gradient(180deg, #fffdf6 0%, #fffaf0 42%, #f5fbef 100%);
}

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

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

img:not([src]) {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 168, 23, 0.22);
  background: rgba(255, 253, 246, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 15px;
}

.nav-links a:hover {
  background: var(--leaf-soft);
  color: #1d7d45;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #8a6500;
  font-size: 14px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--sun);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.18;
}

h1 {
  max-width: 680px;
  font-size: clamp(42px, 5vw, 60px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 20px;
}

.hero-actions,
.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary {
  color: #2f2708;
  background: var(--sun);
  box-shadow: 0 12px 26px rgba(232, 168, 23, 0.24);
}

.button.secondary {
  color: #21613c;
  background: var(--white);
  border-color: rgba(72, 168, 104, 0.26);
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
}

.hero-photo {
  width: min(500px, 100%);
  overflow: hidden;
  border: 1px solid rgba(232, 168, 23, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.hero-photo img,
.hero-photo video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

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

.section-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.post-card {
  border: 1px solid rgba(232, 168, 23, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(97, 109, 63, 0.08);
}

.card {
  padding: 24px;
}

.card .mark {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--leaf-soft);
  display: grid;
  place-items: center;
  color: #1f7c45;
  font-weight: 900;
}

.avatar {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #2d5b36;
  background: linear-gradient(135deg, #fff0a6, #e7f5df);
  font-size: 24px;
  font-weight: 900;
}

.member-card {
  min-height: 260px;
}

.card .tag {
  margin-bottom: 14px;
}

.card h3 {
  margin-top: 4px;
}

.card p,
.post-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.post-card {
  overflow: hidden;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--leaf-soft);
}

.post-card-body {
  padding: 20px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #806215;
  font-size: 13px;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 2px 10px;
  border-radius: 999px;
  color: #2f6d42;
  background: var(--leaf-soft);
  font-size: 13px;
  font-weight: 700;
}

.action-section {
  border-top: 1px solid rgba(232, 168, 23, 0.18);
  border-bottom: 1px solid rgba(72, 168, 104, 0.16);
  background: rgba(255, 253, 246, 0.58);
}

.action-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 64px;
}

.panel-intro {
  max-width: 520px;
  margin: 14px 0 28px;
  color: var(--muted);
}

.task-list,
.news-list {
  display: grid;
}

.halo-only {
  display: none;
}

.task-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(232, 168, 23, 0.24);
}

.task-number {
  color: #a27600;
  font-size: 14px;
  font-weight: 800;
}

.task-item h3,
.news-item h3 {
  font-size: 18px;
}

.task-item p,
.news-item p {
  margin: 5px 0 0;
  color: var(--muted);
}

.news-panel {
  padding-left: 64px;
  border-left: 1px solid rgba(72, 168, 104, 0.22);
}

.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.text-link {
  flex: 0 0 auto;
  color: #287344;
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: " →";
}

.news-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(72, 168, 104, 0.2);
}

.news-item time {
  color: #287344;
  font-size: 14px;
  font-weight: 800;
}

.news-item:hover h3,
.text-link:hover {
  color: #1d7d45;
}

.empty.compact {
  padding: 24px;
}

.archive-list {
  display: grid;
  gap: 14px;
}

.archive-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(232, 168, 23, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.archive-item time {
  color: #8a6500;
  font-weight: 800;
}

.page-title {
  padding-top: 52px;
  padding-bottom: 28px;
}

.page-title p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.article {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 76px;
}

.article-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 28px 0;
  box-shadow: var(--shadow);
}

.content {
  color: var(--text);
  font-size: 18px;
}

.content p,
.content ul,
.content ol,
.content blockquote {
  margin: 0 0 1.1em;
}

.content h2,
.content h3 {
  margin: 1.8em 0 0.7em;
}

.content a {
  color: #1d7d45;
  border-bottom: 1px solid rgba(29, 125, 69, 0.34);
}

.content blockquote {
  padding: 14px 18px;
  border-left: 4px solid var(--sun);
  background: var(--cream);
}

.content img {
  border-radius: var(--radius);
  margin: 22px auto;
}

.empty {
  padding: 26px;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  border: 1px dashed rgba(72, 168, 104, 0.36);
}

.site-footer {
  position: relative;
  padding: 56px 0 42px;
  color: #4f5d51;
  background:
    linear-gradient(180deg, rgba(245, 251, 239, 0) 0%, rgba(244, 248, 226, 0.92) 34%, #fff8d9 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 168, 23, 0.26), transparent);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav {
    height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .action-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .news-panel {
    padding: 42px 0 0;
    border-top: 1px solid rgba(72, 168, 104, 0.22);
    border-left: 0;
  }

  .section-head {
    display: block;
  }

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

@media (max-width: 560px) {
  .brand strong {
    font-size: 16px;
  }

  .nav-links a {
    padding: 7px 9px;
    font-size: 14px;
  }

  h1 {
    font-size: 42px;
  }

  .lead,
  .content {
    font-size: 16px;
  }

}
