:root {
  --bg: #f7f1e2;
  --paper: #fffaf0;
  --paper-soft: #f4ead6;
  --line: #ddcdae;
  --ink: #221d18;
  --muted: #6d6256;
  --soft: #918270;
  --brand: #9d2630;
  --brand-dark: #3a1718;
  --accent: #536f61;
  --gold: #a67442;
  --card-warm: #fff6e6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  background:
    radial-gradient(circle at 7% 38%, rgba(69, 99, 84, 0.08), transparent 20%),
    radial-gradient(circle at 93% 42%, rgba(69, 99, 84, 0.08), transparent 20%),
    linear-gradient(90deg, rgba(166, 129, 88, 0.055), transparent 18%, transparent 82%, rgba(166, 129, 88, 0.055)),
    var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

main {
  flex: 1 0 auto;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 7vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(28, 32, 28, 0.62);
  color: #fff;
  backdrop-filter: blur(14px);
}

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

.nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.nav a:hover {
  color: #fff;
}

.solid-header {
  border-bottom-color: rgba(174, 153, 116, 0.42);
  background: rgba(255, 249, 235, 0.96);
  color: var(--ink);
}

.solid-header .nav {
  color: rgba(31, 42, 36, 0.74);
}

.solid-header .nav a:hover {
  color: var(--brand);
}

.hero {
  position: relative;
  height: clamp(320px, 24vw, 520px);
  min-height: 0;
  display: flex;
  align-items: end;
  overflow: hidden;
  margin-top: 68px;
  padding: 0 7vw 48px;
  color: #fff;
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 24, 20, 0.86), rgba(15, 24, 20, 0.52) 48%, rgba(15, 24, 20, 0.16)),
    linear-gradient(0deg, rgba(15, 24, 20, 0.34), rgba(15, 24, 20, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.hero-content h1 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-text,
.statement-text {
  margin: 0;
  font-size: 19px;
  line-height: 1.85;
}

.hero-text {
  width: min(680px, 100%);
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 46px;
  border-radius: 4px;
  font-weight: 650;
}

.primary-link {
  background: var(--brand);
  color: #fff;
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-dots {
  position: absolute;
  right: 7vw;
  bottom: 42px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.section {
  padding: 56px 7vw;
  background: var(--paper);
}

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

.section-scroll {
  background:
    radial-gradient(circle at 0 26%, rgba(45, 86, 74, 0.055), transparent 20%),
    radial-gradient(circle at 100% 34%, rgba(45, 86, 74, 0.055), transparent 20%),
    var(--paper-soft);
}

.intro-section {
  padding-top: 50px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  width: min(900px, 100%);
}

.contact-grid div {
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.contact-grid span {
  display: block;
  color: var(--soft);
  font-size: 13px;
}

.contact-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 18px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2,
.content-toolbar h2 {
  margin: 8px 0 0;
  font-size: 32px;
  line-height: 1.3;
}

.row-heading,
.content-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.content-toolbar {
  margin-bottom: 26px;
}

.search-input {
  width: min(340px, 100%);
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  outline: none;
}

.search-input:focus {
  border-color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
}

.text-link:hover {
  color: var(--accent);
}

.business-tabs {
  display: grid;
  width: min(720px, 100%);
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin: 28px auto 0;
  border: 1px solid rgba(194, 170, 132, 0.84);
  border-radius: 3px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 8px 18px rgba(85, 60, 30, 0.045);
}

.business-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-right: 1px solid rgba(194, 170, 132, 0.58);
  color: #6e5739;
  font-size: 17px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.business-tabs a:last-child {
  border-right: 0;
}

.business-tabs a:hover {
  color: #8c552c;
}

.business-tabs a.is-active {
  background: #ad7544;
  color: #fffaf0;
}

.business-tabs a.is-active:hover {
  color: #fffaf0;
}

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

.video-catalog {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

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

.video-card {
  overflow: hidden;
  border: 1px solid #d7c39e;
  border-radius: 5px;
  background: var(--card-warm);
  box-shadow: 0 10px 22px rgba(80, 55, 28, 0.065);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.video-card:hover,
.article-card:hover {
  box-shadow: 0 16px 34px rgba(80, 55, 28, 0.1);
  transform: translateY(-2px);
}

.video-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e7ebe4;
}

.video-detail-target {
  cursor: pointer;
}

.video-media img,
.video-media video,
.video-cover-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-detail-link {
  display: block;
  color: inherit;
}

.video-preview-indicator {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(157, 38, 48, 0.88);
  box-shadow: 0 10px 28px rgba(20, 24, 20, 0.24);
  transform: translate(-50%, -50%);
  transition: background 160ms ease, transform 160ms ease;
}

.video-preview-indicator span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.video-detail-link:hover .video-preview-indicator {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-cover-placeholder {
  background:
    linear-gradient(135deg, rgba(38, 116, 95, 0.16), rgba(197, 155, 85, 0.18)),
    #edf0e8;
}

.video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(157, 38, 48, 0.88);
  box-shadow: 0 10px 28px rgba(20, 24, 20, 0.24);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.video-play-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.video-play-button:hover {
  background: var(--accent);
}

.video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  min-width: 44px;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(16, 22, 18, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.video-card .card-body {
  position: relative;
  min-height: 112px;
  padding: 16px 18px 22px;
  background: var(--card-warm);
}

.video-card:hover .card-title {
  color: var(--brand);
}

.card-title {
  margin: 0;
  color: #1d241d;
  font-size: 19px;
  line-height: 1.4;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 0;
  color: #7b6f5f;
  font-size: 15px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-more {
  position: absolute;
  right: 16px;
  bottom: 11px;
  color: #9b8665;
  font-weight: 700;
  letter-spacing: 2px;
}

.article-feature-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.featured-article {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.featured-article:hover h3,
.news-row:hover h3,
.article-list-row:hover h2 {
  color: var(--brand);
}

.featured-article img,
.featured-article .article-cover-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dfe6df;
}

.article-cover-placeholder {
  background:
    linear-gradient(135deg, rgba(93, 111, 83, 0.18), rgba(183, 151, 92, 0.16)),
    #f3f1e9;
}

.article-card {
  display: block;
  overflow: hidden;
  border: 1px solid #d7c39e;
  border-radius: 5px;
  background: var(--card-warm);
  box-shadow: 0 10px 22px rgba(80, 55, 28, 0.065);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.article-card:hover h3 {
  color: var(--brand);
}

.article-card-cover {
  overflow: hidden;
  background: #e9dfcc;
}

.article-card-cover img,
.article-card-cover .article-cover-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card-body {
  position: relative;
  min-height: 146px;
  padding: 16px 18px 24px;
}

.article-card-body time {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.article-card-body h3 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.4;
}

.article-card-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #7b6f5f;
  font-size: 15px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-body {
  padding: 24px;
}

.featured-body time {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.featured-body h3 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.35;
}

.featured-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.article-news-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.notice-home-list,
.notice-page-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.notice-home-list {
  background: #fff;
}

.news-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.notice-row,
.notice-list-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.notice-list-row {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 1px solid #d7d3c8;
  background: #fbfaf6;
}

.news-date strong {
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
}

.news-date span {
  margin-top: 8px;
  color: var(--soft);
  font-size: 12px;
}

.news-copy h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.notice-copy h2,
.notice-copy h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.notice-copy h2 {
  font-size: 22px;
}

.notice-copy h3 {
  font-size: 19px;
}

.news-copy p,
.notice-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.empty {
  display: none;
  padding: 34px 0;
  color: var(--soft);
  text-align: center;
}

.site-footer {
  margin-top: auto;
  padding: 36px 7vw 34px;
  background: #a78666;
  color: rgba(255, 255, 255, 0.93);
  text-align: center;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 22px;
  color: #fff;
  font-family: "KaiTi", "STKaiti", "Microsoft YaHei", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.footer-lines {
  display: grid;
  gap: 8px;
}

.footer-lines p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.footer-lines span[hidden],
.footer-lines p[hidden] {
  display: none;
}

.page-banner {
  padding: 126px 7vw 42px;
  background:
    radial-gradient(circle at 20% 100%, rgba(68, 99, 84, 0.09), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(177, 130, 72, 0.1), transparent 26%),
    var(--paper-soft);
  color: var(--ink);
}

.page-banner-centered {
  text-align: center;
}

.page-banner-centered p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.page-banner h1 {
  margin: 10px 0 10px;
  font-size: 46px;
  line-height: 1.2;
}

.page-banner p:not(.eyebrow) {
  width: min(660px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.article-list-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.article-list-row img,
.article-list-row .article-cover-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  background: #dfe6df;
}

.article-list-row time {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.article-list-row h2 {
  margin: 8px 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.article-list-row p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.recommend-panel {
  overflow: hidden;
  border: 1px solid #d8c49d;
  border-radius: 5px;
  background: #fff4dc;
  box-shadow: 0 10px 22px rgba(80, 55, 28, 0.065);
}

.recommend-panel h3 {
  margin: 0;
  padding: 19px 22px;
  background: linear-gradient(90deg, #d9a463, #f0c98e);
  color: #2c2116;
  font-size: 24px;
  line-height: 1.25;
}

.recommend-list {
  display: grid;
  padding: 18px 22px 22px;
}

.recommend-list a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid rgba(161, 129, 84, 0.28);
  color: #3b2e20;
}

.recommend-list a:last-child {
  border-bottom: 0;
}

.recommend-list span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b89a68;
  border-radius: 50%;
}

.recommend-list span::before {
  width: 6px;
  height: 6px;
  border-top: 1px solid #8e734c;
  border-right: 1px solid #8e734c;
  content: '';
  transform: rotate(45deg);
}

.recommend-list strong {
  overflow: hidden;
  font-size: 18px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-shell {
  min-height: 72vh;
  padding: 118px 7vw 64px;
  background: var(--paper-soft);
}

.article-detail {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.notice-detail {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 40px 46px 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.video-detail {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.video-detail header {
  margin-bottom: 24px;
}

.video-detail header h1 {
  margin: 10px 0 14px;
  font-size: 38px;
  line-height: 1.28;
}

.video-detail header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.detail-video-media {
  border-radius: 4px;
}

.video-detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.video-nav-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfaf6;
  transition: border-color 160ms ease, background 160ms ease;
}

.video-nav-card.next {
  grid-template-columns: minmax(0, 1fr) 118px;
  text-align: right;
}

.video-nav-card.next .video-nav-cover {
  order: 2;
}

.video-nav-card:hover {
  border-color: rgba(157, 38, 48, 0.42);
  background: #fff;
}

.video-nav-card.is-disabled {
  color: var(--soft);
  cursor: default;
  opacity: 0.72;
}

.video-nav-card.is-disabled:hover {
  border-color: var(--line);
  background: #fbfaf6;
}

.video-nav-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: #e7ebe4;
}

.video-nav-cover img,
.video-nav-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-nav-placeholder {
  background:
    linear-gradient(135deg, rgba(38, 116, 95, 0.16), rgba(197, 155, 85, 0.18)),
    #edf0e8;
}

.video-nav-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.video-nav-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brand);
  font-weight: 700;
}

.article-detail header time {
  display: block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.article-detail h1 {
  margin: 10px 0 14px;
  font-size: 38px;
  line-height: 1.28;
}

.notice-detail h1 {
  margin: 12px 0 14px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.3;
  text-align: center;
}

.notice-detail header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.notice-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  color: var(--soft);
  font-size: 14px;
}

.article-detail header p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.article-detail > img,
.article-detail > .article-cover-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  object-fit: cover;
  border-radius: 4px;
  background: #dfe6df;
}

.detail-content {
  margin-top: 28px;
  color: var(--ink);
  font-size: 18px;
  line-height: 2;
}

.detail-content p {
  margin: 0 0 18px;
}

.empty-detail {
  padding: 80px 0;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .video-grid,
  .video-catalog,
  .video-catalog-grid,
  .article-page-list,
  .article-feature-layout {
    grid-template-columns: 1fr;
  }

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

  .article-news-list {
    background: transparent;
  }

  .notice-list-row {
    grid-template-columns: 74px minmax(0, 1fr);
    padding: 18px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 60px;
    padding: 0 18px;
  }

  .brand {
    font-size: 18px;
  }

  .nav {
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    height: clamp(260px, 54vw, 420px);
    margin-top: 60px;
    padding: 0 20px 34px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(15, 24, 20, 0.34), rgba(15, 24, 20, 0.92));
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-text,
  .statement-text {
    font-size: 16px;
  }

  .hero-dots {
    right: auto;
    left: 20px;
    bottom: 24px;
  }

  .section {
    padding: 38px 20px;
  }

  .business-tabs {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
  }

  .business-tabs a {
    border-bottom: 1px solid rgba(217, 201, 171, 0.72);
    font-size: 15px;
  }

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

  .row-heading {
    align-items: stretch;
    flex-direction: column;
  }

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

  .page-banner {
    padding: 104px 20px 42px;
  }

  .page-banner h1 {
    font-size: 34px;
  }

  .detail-shell {
    padding: 90px 20px 42px;
  }

  .article-detail {
    padding: 22px;
  }

  .notice-detail {
    padding: 24px 20px 30px;
  }

  .video-detail {
    padding: 22px;
  }

  .video-detail-nav {
    grid-template-columns: 1fr;
  }

  .video-nav-card,
  .video-nav-card.next {
    grid-template-columns: 108px minmax(0, 1fr);
    text-align: left;
  }

  .video-nav-card.next .video-nav-cover {
    order: 0;
  }

  .article-detail h1 {
    font-size: 28px;
  }

  .notice-detail h1 {
    font-size: 28px;
  }

  .video-detail header h1 {
    font-size: 28px;
  }

  .featured-body {
    padding: 20px;
  }

  .featured-body h3 {
    font-size: 22px;
  }

  .news-row {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .news-date {
    width: 66px;
    height: 66px;
  }

  .news-date strong {
    font-size: 24px;
  }

  .news-copy h3 {
    font-size: 17px;
  }

  .site-footer {
    padding: 30px 20px 32px;
  }

  .footer-brand {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .footer-lines p {
    gap: 4px 10px;
    font-size: 13px;
  }
}

/* 2026 refresh: calm temple editorial layout */
:root {
  --bg: #f4f5f1;
  --paper: #ffffff;
  --paper-soft: #eef1eb;
  --line: #d7ddd3;
  --ink: #1c2a25;
  --muted: #65736a;
  --soft: #8b958e;
  --brand: #a33d31;
  --brand-dark: #742d26;
  --accent: #315d4e;
  --gold: #a36a31;
  --card-warm: #ffffff;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
}

.site-header {
  min-height: 76px;
  padding: 0 max(5vw, 32px);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: rgba(18, 38, 31, 0.6);
  box-shadow: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header::after {
  position: absolute;
  right: max(5vw, 32px);
  bottom: 0;
  left: max(5vw, 32px);
  height: 1px;
  background: rgba(231, 220, 191, 0.32);
  content: '';
}

.site-header.is-scrolled,
.site-header.solid-header {
  border-bottom-color: transparent;
  background: rgba(250, 252, 248, 0.96);
  box-shadow: 0 4px 22px rgba(20, 42, 33, 0.08);
  color: var(--ink);
}

.site-header.is-scrolled::after,
.site-header.solid-header::after {
  background: #d8ded7;
}

.brand {
  position: relative;
  z-index: 1;
  padding: 3px 0 1px 18px;
  font-family: "STKaiti", "KaiTi", "Noto Serif SC", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand::before {
  position: absolute;
  top: 1px;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--brand);
  content: '';
}

.nav {
  position: relative;
  z-index: 1;
  gap: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 15px;
}

.solid-header .nav,
.site-header.is-scrolled .nav {
  color: #43534a;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 76px;
  transition: color 160ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--brand);
  content: '';
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav a:hover,
body:not([data-page]) .nav a[href="./index.html"],
body[data-page="about"] .nav a[href="./about.html"],
body[data-page="notices"] .nav a[href="./notices.html"],
body[data-page="notice-detail"] .nav a[href="./notices.html"],
body[data-page="videos"] .nav a[href="./videos.html"],
body[data-page="video-detail"] .nav a[href="./videos.html"],
body[data-page="articles"] .nav a[href="./articles.html"],
body[data-page="article-detail"] .nav a[href="./articles.html"] {
  color: var(--brand);
}

.nav a:hover::after,
body:not([data-page]) .nav a[href="./index.html"]::after,
body[data-page="about"] .nav a[href="./about.html"]::after,
body[data-page="notices"] .nav a[href="./notices.html"]::after,
body[data-page="notice-detail"] .nav a[href="./notices.html"]::after,
body[data-page="videos"] .nav a[href="./videos.html"]::after,
body[data-page="video-detail"] .nav a[href="./videos.html"]::after,
body[data-page="articles"] .nav a[href="./articles.html"]::after,
body[data-page="article-detail"] .nav a[href="./articles.html"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  height: 560px;
  margin-top: 0;
  padding: 0 max(7vw, 40px) 82px;
  align-items: end;
}

.hero::before {
  content: none;
}

.hero-overlay {
  background: rgba(13, 31, 24, 0.16);
}

.hero-content {
  display: none;
  width: min(760px, 100%);
  padding-left: 28px;
  border-left: 3px solid var(--brand);
}

.hero-content .eyebrow {
  color: #e7c78d;
}

.hero-content h1 {
  margin: 13px 0 16px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 17px;
  line-height: 1.9;
}

.hero-discover {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 160ms ease, color 160ms ease;
}

.hero-discover span {
  color: #e6c88f;
  font-size: 20px;
  line-height: 0.8;
}

.hero-discover:hover {
  border-color: #e6c88f;
  color: #e6c88f;
}

.hero-counter {
  position: absolute;
  z-index: 2;
  top: 128px;
  right: max(7vw, 40px);
  color: rgba(255, 255, 255, 0.82);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  min-width: 128px;
  height: 44px;
  border-radius: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.primary-link {
  background: var(--brand);
}

.primary-link:hover {
  background: var(--brand-dark);
}

.secondary-link {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(17, 38, 30, 0.3);
}

.secondary-link:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-dots {
  right: max(7vw, 40px);
  bottom: 40px;
  gap: 8px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.56));
}

.hero-dot {
  width: 28px;
  height: 3px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.48);
}

.hero-dot.is-active {
  width: 52px;
  background: #fff;
}

.business-tabs {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 64px));
  margin: -30px auto 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 12px 28px rgba(26, 48, 39, 0.12);
}

.business-tabs a {
  height: 60px;
  border-right-color: #e2e5e0;
  color: #3c5147;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.business-tabs a.is-active {
  background: var(--accent);
  color: #fff;
}

.business-tabs a:hover:not(.is-active) {
  background: #f0f3ee;
  color: var(--brand);
}

.section {
  padding: 86px max(7vw, 40px);
  background: var(--paper);
}

.section-muted,
.section-scroll {
  background: var(--paper-soft);
}

.intro-section {
  padding-top: 104px;
  padding-bottom: 94px;
}

.section-inner {
  width: min(1200px, 100%);
}

.intro-grid {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: 0 0 0 38px;
  border-left: 1px solid #bbc8bb;
}

.eyebrow {
  color: var(--brand);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.section-heading::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background: var(--brand);
  content: '';
}

.section-heading h2,
.content-toolbar h2 {
  margin-top: 9px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
}

.statement-text {
  max-width: 880px;
  color: #405348;
  font-size: 21px;
  line-height: 2.05;
}

.intro-more-link {
  margin-top: 24px;
}

.home-overview-section {
  padding-right: max(5vw, 32px);
  padding-left: max(5vw, 32px);
  padding-top: 94px;
  padding-bottom: 94px;
  background: #fff;
}

.home-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.home-temple-panel {
  padding: 8px 42px 16px 28px;
  border-left: 4px solid var(--brand);
}

.home-temple-panel h2 {
  margin: 12px 0 22px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.home-temple-panel .statement-text {
  font-size: 18px;
  line-height: 2;
}

.home-news-panel {
  padding-left: 46px;
  border-left: 1px solid #d5ded4;
}

.home-news-panel .section-heading {
  margin-bottom: 16px;
  padding-left: 0;
}

.home-news-panel .section-heading::before {
  display: none;
}

.home-news-panel .section-heading h2 {
  font-size: 28px;
}

.home-news-panel .notice-row {
  grid-template-columns: 74px minmax(0, 1fr) 22px;
  gap: 18px;
  padding: 15px 0;
}

.home-news-panel .news-date {
  width: 62px;
  height: 60px;
}

.home-news-panel .news-date strong {
  font-size: 25px;
}

.home-news-panel .news-date span {
  font-size: 10px;
}

.home-news-panel .notice-copy h3 {
  font-size: 17px;
}

.home-news-panel .notice-copy p {
  -webkit-line-clamp: 1;
}

.home-media-section {
  padding-right: max(5vw, 32px);
  padding-left: max(5vw, 32px);
  background: #eef1eb;
}

.home-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
}

.home-media-layout .video-card--lead .video-media {
  aspect-ratio: 16 / 9;
}

.home-media-layout .video-card--lead .card-title {
  font-size: 27px;
}

.home-media-layout .video-card--lead .card-body {
  padding-bottom: 10px;
}

.home-media-layout .video-card:not(.video-card--lead) .video-media {
  aspect-ratio: 16 / 8;
}

.home-media-layout .video-card:not(.video-card--lead) .card-body {
  min-height: 0;
  padding-bottom: 10px;
}

.home-dharma-section {
  padding-right: max(5vw, 32px);
  padding-left: max(5vw, 32px);
  background: #fff;
}

.home-dharma-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 68px;
  align-items: start;
}

.home-dharma-layout.is-solo {
  grid-template-columns: minmax(0, 1fr);
}

.home-dharma-layout.is-solo .dharma-feature {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  max-width: 1120px;
}

.home-overview-grid.has-compact-news {
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
}

.home-overview-grid.has-compact-news .home-temple-panel {
  max-width: 820px;
}

.home-overview-grid.has-compact-news .home-news-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 25px 0 0;
  border-top: 1px solid #d5ded4;
  border-left: 0;
}

.home-overview-grid.has-compact-news .home-news-panel .section-heading {
  margin: 0;
}

.home-overview-grid.has-compact-news .home-news-panel .notice-home-list {
  border-top: 0;
}

.home-overview-grid.has-compact-news .home-news-panel .notice-row {
  padding: 10px 0;
  border-bottom: 0;
}

.dharma-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  color: var(--ink);
}

.dharma-feature-cover {
  overflow: hidden;
  background: #d9e1d8;
}

.dharma-feature-cover img,
.dharma-feature-cover .article-cover-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.dharma-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0 12px;
}

.dharma-feature-copy time,
.dharma-list time {
  color: var(--brand);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.dharma-feature-copy h3 {
  margin: 14px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
}

.dharma-feature-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #66766c;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.dharma-feature-copy .text-link {
  margin-top: auto;
}

.dharma-list {
  border-top: 1px solid #ced8cf;
}

.dharma-list a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 18px;
  gap: 18px;
  align-items: center;
  min-height: 106px;
  border-bottom: 1px solid #d9e1d9;
  color: var(--ink);
}

.dharma-list h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
}

.dharma-list p {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 0;
  color: #718077;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.dharma-list > a > span {
  color: var(--brand);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dharma-list a:hover > span {
  opacity: 1;
  transform: translateX(0);
}

.text-link {
  min-height: auto;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.text-link::after {
  margin-left: 8px;
  content: '→';
}

.text-link:hover {
  color: var(--brand);
}

.notice-home-list,
.notice-page-list {
  border-top-color: #cdd6cc;
  background: transparent;
}

.notice-row,
.notice-list-row {
  grid-template-columns: 116px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom-color: #d7ded6;
  transition: background 160ms ease, padding 160ms ease;
}

.notice-row::after,
.notice-list-row::after {
  color: var(--brand);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  content: '→';
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.notice-row:hover,
.notice-list-row:hover {
  padding-right: 10px;
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.notice-row:hover::after,
.notice-list-row:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

.notice-list-row {
  padding: 26px 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
}

.news-date {
  width: 96px;
  height: 86px;
  border: 0;
  border-left: 2px solid var(--brand);
  background: transparent;
}

.news-date strong {
  color: var(--brand);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 34px;
  font-weight: 400;
}

.news-date span {
  margin-top: 7px;
  color: var(--soft);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
}

.notice-copy h2,
.notice-copy h3 {
  font-size: 21px;
  font-weight: 700;
}

.notice-copy p {
  color: #758178;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 14px;
}

.video-grid,
.video-catalog-grid {
  gap: 24px;
}

.video-card,
.article-card {
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.video-card:hover,
.article-card:hover {
  box-shadow: none;
  transform: none;
}

.video-media {
  background: #d7ded6;
}

.video-media img,
.article-card-cover img,
.article-card-cover .article-cover-placeholder {
  transition: transform 520ms ease;
}

.video-card:hover .video-media img,
.article-card:hover .article-card-cover img {
  transform: scale(1.045);
}

.video-preview-indicator,
.video-play-button {
  width: 56px;
  height: 56px;
  border-radius: 0;
  border: 0;
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(24, 33, 28, 0.24);
}

.video-preview-indicator:hover,
.video-play-button:hover,
.video-detail-link:hover .video-preview-indicator {
  background: var(--accent);
}

.video-duration {
  right: 0;
  bottom: 0;
  min-width: 50px;
  padding: 6px 9px;
  border-radius: 0;
  background: rgba(16, 35, 27, 0.86);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.video-card .card-body {
  min-height: 118px;
  padding: 19px 0 24px;
  background: transparent;
}

.card-title {
  font-size: 21px;
  font-weight: 700;
}

.card-desc {
  color: #6f7e74;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 14px;
}

.card-more {
  right: 0;
  bottom: 4px;
  color: var(--brand);
}

.article-feature-layout,
.article-page-list {
  gap: 24px;
}

.article-feature-layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.article-feature-layout .article-card {
  grid-column: span 3;
}

.article-feature-layout .article-card--lead {
  position: relative;
  grid-column: span 6;
  grid-row: span 2;
  min-height: 510px;
  overflow: hidden;
  background: #17342b;
}

.article-feature-layout .article-card--wide {
  grid-column: span 6;
}

.article-card--lead .article-card-cover,
.article-card--lead .article-card-cover img,
.article-card--lead .article-card-cover .article-cover-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.article-card--lead .article-card-cover::after {
  position: absolute;
  inset: 0;
  background: rgba(15, 38, 29, 0.42);
  content: '';
}

.article-card--lead .article-card-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 0;
  padding: 30px;
  background: rgba(15, 38, 29, 0.88);
}

.article-card--lead .article-card-body time,
.article-card--lead .article-card-body h3,
.article-card--lead .article-card-body p,
.article-card--lead .card-more {
  color: #fff;
}

.article-card--lead .article-card-body time {
  color: #e6c88f;
}

.article-card--lead .card-more {
  right: 30px;
  bottom: 16px;
}

.article-card-cover {
  background: #d9e1d8;
}

.article-card-body {
  min-height: 156px;
  padding: 17px 0 26px;
}

.article-card-body time {
  color: var(--brand);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.article-card-body h3 {
  font-size: 21px;
  font-weight: 700;
}

.article-card-body p {
  color: #6f7e74;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 14px;
}

.page-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 158px max(7vw, 40px) 72px;
  background: #1b382f url('./assets/hero/temple-courtyard.jpg') center / cover no-repeat;
  color: #fff;
}

.page-banner::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(15, 37, 29, 0.74);
  content: '';
}

.page-banner .eyebrow {
  color: #e6c88f;
}

.page-banner h1 {
  margin: 12px 0;
  font-size: 48px;
  font-weight: 700;
}

.page-banner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 16px;
}

.page-banner .business-tabs {
  margin-top: 38px;
  box-shadow: none;
}

.about-banner {
  min-height: 370px;
  display: flex;
  align-items: end;
}

.about-banner #aboutLead {
  width: min(880px, 100%);
}

.about-section {
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: 68px;
  align-items: start;
  padding: 18px 0 4px;
}

.about-heading {
  padding: 6px 0 28px 24px;
  border-left: 4px solid var(--brand);
}

.about-heading h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.about-copy {
  padding-top: 2px;
  border-top: 1px solid #cfd8cf;
}

.about-copy > p {
  margin: 28px 0 0;
  color: #34483d;
  font-size: 19px;
  line-height: 2.1;
  white-space: pre-line;
}

.content-toolbar {
  margin-bottom: 38px;
}

.content-toolbar > div {
  padding-left: 20px;
  border-left: 4px solid var(--brand);
}

.search-input {
  width: 290px;
  height: 42px;
  border: 0;
  border-bottom: 1px solid #9eaaa0;
  border-radius: 0;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 14px;
}

.search-input:focus {
  border-color: var(--brand);
}

.video-catalog {
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 56px;
}

.recommend-panel {
  border: 0;
  border-top: 3px solid var(--brand);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.recommend-panel h3 {
  padding: 20px 0 16px;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
}

.recommend-list {
  padding: 0;
}

.recommend-list a {
  grid-template-columns: 16px minmax(0, 1fr);
  min-height: 58px;
  border-bottom-color: #dfe5dd;
  color: #42564b;
}

.recommend-list span {
  width: 10px;
  height: 10px;
  border: 1px solid var(--brand);
  border-radius: 0;
}

.recommend-list span::before {
  display: none;
}

.recommend-list strong {
  font-size: 16px;
  font-weight: 600;
}

.detail-shell {
  padding: 140px max(7vw, 40px) 96px;
  background: #f5f7f3;
}

.article-detail,
.notice-detail,
.video-detail {
  width: min(940px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.back-link {
  margin-bottom: 30px;
  color: var(--accent);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.back-link::before {
  margin-right: 8px;
  content: '←';
}

.article-detail header,
.video-detail header {
  padding-bottom: 30px;
  border-bottom: 1px solid #cfd8cf;
}

.article-detail h1,
.video-detail header h1,
.notice-detail h1 {
  font-size: 42px;
  font-weight: 700;
}

.article-detail header time,
.video-detail header p:not(.eyebrow) {
  color: var(--brand);
}

.article-detail header p,
.video-detail header p:not(.eyebrow) {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.article-detail > img,
.article-detail > .article-cover-placeholder {
  margin-top: 34px;
  border-radius: 0;
}

.notice-detail {
  width: min(860px, 100%);
  margin: 0 auto;
}

.notice-detail header {
  padding-bottom: 30px;
  border-bottom-color: #cfd8cf;
}

.notice-meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

.detail-content {
  max-width: 800px;
  margin: 42px auto 0;
  color: #2f4037;
  font-size: 19px;
  line-height: 2.05;
}

.detail-video-media {
  margin-top: 34px;
  border-radius: 0;
}

.video-detail-nav {
  gap: 20px;
  margin-top: 36px;
}

.video-nav-card {
  border: 1px solid #d2dbd1;
  border-radius: 0;
  background: #fff;
}

.video-nav-card:hover {
  border-color: var(--brand);
  background: #fff;
}

.video-nav-cover {
  border-radius: 0;
}

.site-footer {
  position: relative;
  padding: 58px max(7vw, 40px) 44px;
  background: #17342b;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: max(7vw, 40px);
  left: max(7vw, 40px);
  height: 3px;
  background: var(--brand);
  content: '';
}

.footer-brand {
  margin-bottom: 22px;
  font-size: 44px;
}

.footer-lines p {
  color: rgba(255, 255, 255, 0.72);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 13px;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 62px;
    padding: 0 20px;
  }

  .site-header::after,
  .site-footer::before {
    right: 20px;
    left: 20px;
  }

  .brand {
    padding-left: 13px;
    font-size: 23px;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .nav a {
    height: 62px;
  }

  .hero {
    height: 438px;
    padding: 0 20px 52px;
  }

  .hero::before {
    top: 62px;
    right: 20px;
    width: 42vw;
  }

  .hero-content {
    padding-left: 18px;
  }

  .hero-content h1 {
    margin: 10px 0 12px;
    font-size: 40px;
  }

  .hero-text {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-discover {
    margin-top: 18px;
  }

  .hero-counter {
    top: 84px;
    right: 20px;
  }

  .primary-link,
  .secondary-link {
    min-width: 112px;
    height: 40px;
    font-size: 14px;
  }

  .hero-dots {
    right: 20px;
    bottom: 22px;
    left: auto;
  }

  .hero-dot {
    width: 18px;
  }

  .hero-dot.is-active {
    width: 36px;
  }

  .business-tabs {
    width: calc(100% - 40px);
    margin-top: -20px;
  }

  .business-tabs a {
    height: 50px;
    font-size: 14px;
  }

  .section {
    padding: 58px 20px;
  }

  .intro-section {
    padding-top: 50px;
  }

  .home-overview-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home-overview-grid,
  .home-media-layout,
  .home-dharma-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-temple-panel,
  .home-news-panel {
    padding-right: 0;
    padding-left: 20px;
  }

  .home-news-panel {
    border-left-width: 4px;
    border-left-color: #d5ded4;
  }

  .home-overview-grid.has-compact-news .home-news-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 26px;
    border-top: 1px solid #d5ded4;
    border-left: 0;
  }

  .home-overview-grid.has-compact-news .home-news-panel .notice-row {
    grid-template-columns: 74px minmax(0, 1fr);
    padding: 8px 0;
  }

  .home-dharma-layout.is-solo .dharma-feature {
    grid-template-columns: 1fr;
  }

  .home-media-layout .video-card--lead .card-title {
    font-size: 22px;
  }

  .dharma-feature {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dharma-feature-cover img,
  .dharma-feature-cover .article-cover-placeholder {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .dharma-feature-copy h3 {
    font-size: 24px;
  }

  .intro-grid {
    padding-left: 20px;
  }

  .section-heading {
    margin-bottom: 28px;
    padding-left: 15px;
  }

  .section-heading h2,
  .content-toolbar h2 {
    font-size: 28px;
  }

  .statement-text {
    font-size: 17px;
    line-height: 1.95;
  }

  .notice-row,
  .notice-list-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 15px;
    padding: 18px 0;
  }

  .notice-row::after,
  .notice-list-row::after {
    display: none;
  }

  .news-date {
    width: 70px;
    height: 70px;
  }

  .news-date strong {
    font-size: 26px;
  }

  .notice-copy h2,
  .notice-copy h3,
  .card-title,
  .article-card-body h3 {
    font-size: 18px;
  }

  .video-grid,
  .video-catalog-grid,
  .article-feature-layout,
  .article-page-list {
    gap: 30px;
  }

  .article-feature-layout {
    grid-template-columns: 1fr;
  }

  .article-feature-layout .article-card,
  .article-feature-layout .article-card--lead,
  .article-feature-layout .article-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .article-feature-layout .article-card--lead {
    min-height: 390px;
  }

  .video-card .card-body,
  .article-card-body {
    min-height: auto;
  }

  .page-banner {
    padding: 116px 20px 48px;
  }

  .page-banner h1 {
    font-size: 36px;
  }

  .page-banner .business-tabs {
    margin-top: 28px;
  }

  .about-banner {
    min-height: 300px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-heading h2 {
    font-size: 32px;
  }

  .about-copy > p {
    margin-top: 22px;
    font-size: 17px;
  }

  .content-toolbar > div {
    padding-left: 15px;
  }

  .search-input {
    width: 100%;
  }

  .video-catalog {
    gap: 38px;
  }

  .detail-shell {
    padding: 106px 20px 60px;
  }

  .article-detail h1,
  .video-detail header h1,
  .notice-detail h1 {
    font-size: 30px;
  }

  .detail-content {
    margin-top: 28px;
    font-size: 17px;
  }

  .site-footer {
    padding: 44px 20px 34px;
  }

  .footer-brand {
    font-size: 36px;
  }
}
