/* ============================================================
   赵公明故里文化促进会 — 新中式文化门户风格
   ============================================================ */

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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans SC', sans-serif;
  color: #2C1810;
  background: #FDF8F0;
  line-height: 1.8;
  overflow-x: hidden;
}

.font-serif { font-family: 'Noto Serif SC', serif; }
.font-calligraphy { font-family: 'Ma Shan Zheng', cursive; }

:root {
  --crimson: #8B1A1A;
  --crimson-dark: #6B1212;
  --crimson-light: #A52A2A;
  --gold: #D4A843;
  --gold-light: #F0D68A;
  --gold-pale: #FDF0C8;
  --cream: #FDF8F0;
  --cream-dark: #F5EBD8;
  --brown-dark: #2C1810;
  --brown-mid: #4A2C1A;
  --text-primary: #2C1810;
  --text-secondary: #6B5744;
  --text-light: #9B8B7A;
  --white: #FFFFFF;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson), var(--crimson-dark));
  color: var(--gold-light);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 500;
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--brown-dark);
}
.logo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 28px;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.logo-text h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.3;
}
.logo-text span {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--crimson);
  background: rgba(139, 26, 26, 0.06);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brown-dark);
  cursor: pointer;
  padding: 8px;
}
.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
  padding: 10px 16px;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.2s;
}
.mobile-nav a:hover {
  color: var(--crimson);
  background: rgba(139, 26, 26, 0.06);
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
}

/* Banner */
.banner {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-hero {
  background: #6B1212;
  min-height: 25vh;
}
.banner-about {
  background: #5C3A1E;
  min-height: 50vh;
}
.banner-hometown {
  background: #1B4332;
  min-height: 50vh;
}
.banner-heritage {
  background: #8B6914;
  min-height: 50vh;
}
.banner-culture {
  background: #1A1A3E;
  min-height: 50vh;
}
.banner-news {
  background: #6B1212;
  min-height: 50vh;
}
.banner-wenchuang {
  background: #8B6914;
  min-height: 50vh;
}
.banner-zuci {
  background: #6B1212;
  min-height: 50vh;
}
.banner-zuci::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 24px 20px;
}
.banner-badge {
  display: inline-block;
  padding: 8px 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 5px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.08);
}
.banner-inner .banner-badge {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}
.banner h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 6vw, 64px);
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 8px;
}
.banner-inner h2 {
  color: var(--white);
}
.banner .subtitle {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(13px, 2vw, 18px);
  margin-bottom: 8px;
  letter-spacing: 3px;
  color: var(--gold-light);
}
.banner .desc {
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.banner-inner .subtitle { color: var(--gold-light); }
.banner-inner .desc { color: rgba(255,255,255,0.8); }
.banner-warm h2 { color: var(--brown-dark); text-shadow: none; }
.banner-warm .subtitle { color: var(--text-secondary); }
.banner-warm .desc { color: var(--text-secondary); }

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--crimson);
  border: 2px solid var(--gold);
}
.banner .btn-secondary {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-secondary:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--crimson);
}
.btn-light:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold-light);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Section */
.section { padding: 80px 24px; }
.section-alt { background: var(--white); }
.section-warm { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--crimson);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--brown-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-title .highlight { color: var(--crimson); }
.section-desc {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.section-alt .card { background: var(--cream); }
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.1);
  border-color: var(--gold);
}
.card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--brown-dark);
}
.card:hover h3 { color: var(--crimson); }
.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Image Card */
.img-card {
  background: var(--white);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.1);
  border-color: var(--gold);
}
.img-card-visual {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  position: relative;
}
.img-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44,24,16,0.5) 100%);
}
.img-card-visual span {
  position: relative;
  z-index: 1;
}
.img-card-visual.red-gold {
  background-image: linear-gradient(135deg, var(--crimson-dark), var(--crimson), var(--gold));
}
.img-card-visual.gold-cream {
  background-image: linear-gradient(135deg, var(--gold-pale), var(--gold-light), var(--cream));
}
.img-card-visual.cream-brown {
  background-image: linear-gradient(135deg, var(--cream), var(--cream-dark), var(--brown-mid));
}
.img-card-visual.dark-red {
  background-image: linear-gradient(135deg, var(--brown-dark), var(--crimson-dark), var(--crimson));
}
.img-card-body { padding: 20px; }
.img-card-body h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--brown-dark);
}
.img-card:hover .img-card-body h3 { color: var(--crimson); }
.img-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.img-card-body .tag {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

/* News Card */
.news-card {
  background: var(--white);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.1);
}
.news-card-img {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.news-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44,24,16,0.6) 100%);
}
.news-card-img span {
  position: relative;
  z-index: 1;
}
.news-card-body { padding: 20px; }
.news-card-date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.news-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--brown-dark);
  line-height: 1.5;
}
.news-card:hover h4 { color: var(--crimson); }
.news-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Feature Row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.feature-visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
  border: 2px solid rgba(212, 168, 67, 0.2);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  overflow: hidden;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Content image */
.content-img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(212, 168, 67, 0.2);
  margin: 24px 0;
}
.content-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.content-img-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(212, 168, 67, 0.2);
}
.feature-visual.gold-bg {
  background: linear-gradient(135deg, var(--cream-dark), var(--gold-pale));
}
.feature-text h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--brown-dark);
}
.feature-text p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 67, 0.15);
}
.stat-number {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 36px;
  color: var(--crimson);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
  color: var(--white);
  text-align: center;
  padding: 80px 24px 60px;
}
.page-header h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
  letter-spacing: 4px;
}
.page-header p {
  font-size: 16px;
  opacity: 0.8;
  letter-spacing: 2px;
}
.page-header .breadcrumb {
  margin-bottom: 20px;
  font-size: 13px;
  opacity: 0.6;
}
.page-header .breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}

/* Page Content */
.page-content { padding: 60px 24px; }
.page-content .container { max-width: 900px; }
.page-content h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  color: var(--crimson);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.3);
}
.page-content p {
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
  font-size: 15px;
}
.page-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.page-content ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.8;
}
.page-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 10px;
}

/* News List */
/* News Item List */
.news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  text-decoration: none !important;
  color: inherit;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: rgba(212,168,67,0.04); border-radius: 8px; padding: 20px 12px; margin: 0 -12px; }
.news-item-img {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #f0ebe3;
}
.news-item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.news-date { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.news-item-body h4 { font-family: 'Noto Serif SC', serif; font-size: 18px; margin: 0 0 8px; color: var(--brown-dark) !important; transition: color 0.2s; line-height: 1.4; text-decoration: none !important; }
.news-item:hover h4 { color: var(--crimson) !important; }
.news-item-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; text-decoration: none !important; }
@media (max-width: 640px) {
  .news-item { flex-direction: column; gap: 12px; }
  .news-item-img { width: 100%; height: 200px; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.08);
}
.contact-card .icon { font-size: 36px; margin-bottom: 12px; }
.contact-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--brown-dark);
}
.contact-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--brown-dark), #1A0F0A);
  color: rgba(253, 248, 240, 0.6);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: 3px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-links h5 {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: rgba(253, 248, 240, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(253, 248, 240, 0.3);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* Floating Button */
.float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.35);
  transition: all 0.3s ease;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(139, 26, 26, 0.45);
}

/* Info Box */
.info-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.info-box p { margin-bottom: 0; color: var(--brown-dark); }

/* Divider */
.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 48px 0;
}

/* Copy Button */
.copy-btn {
  background: var(--crimson);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.copy-btn:hover {
  background: var(--crimson-dark);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.3);
}

/* Wenchuang Grid */
.wenchuang-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.wenchuang-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.1);
}
.wenchuang-card-img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  position: relative;
}
.wenchuang-card-body .tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--crimson);
  border: 1px solid var(--gold);
  border-radius: 4px;
  margin: 12px 16px 0;
}
.wenchuang-item h5 {
  font-size: 17px;
  font-weight: 600;
  padding: 10px 18px 6px;
  color: var(--crimson);
}
.wenchuang-item p {
  font-size: 13px;
  color: var(--text-light);
  padding: 0 18px 16px;
}

/* Wenchuang Detail */
.wenchuang-detail {
  max-width: 720px;
  margin: 0 auto;
}
.wenchuang-detail img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.wenchuang-detail h3 {
  font-size: 22px;
  color: var(--crimson);
  margin-bottom: 16px;
}
.wenchuang-detail .meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.wenchuang-detail p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.wenchuang-detail ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.wenchuang-detail ul li {
  line-height: 1.9;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.wenchuang-back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--crimson);
  text-decoration: none;
  font-size: 14px;
}
.wenchuang-back:hover { text-decoration: underline; }

/* Culture Story Card (财神故事卡片) */
.culture-story-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  margin: 24px 0;
}
.culture-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.12);
  border-color: var(--gold);
}
.story-card-img {
  aspect-ratio: 16/8;
  background-size: cover;
  background-position: center;
  position: relative;
}
.story-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44,24,16,0.6) 100%);
}
.story-card-body { padding: 24px; }
.story-card-body .story-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.story-card-body h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--brown-dark);
  line-height: 1.5;
}
.culture-story-card:hover .story-card-body h4 { color: var(--crimson); }
.story-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.story-link {
  font-size: 14px;
  color: var(--crimson);
  font-weight: 500;
}
.culture-story-card:hover .story-link { text-decoration: underline; }

/* 3-Column Grid for Culture Story Cards */
.culture-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0;
}
@media (max-width: 960px) {
  .culture-story-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .culture-story-grid { grid-template-columns: 1fr; }
}
.culture-story-grid .culture-story-card {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.culture-story-grid .story-card-img {
  aspect-ratio: 16/9;
}
.culture-story-grid .story-card-body {
  flex: 1;
  padding: 16px;
}
.culture-story-grid .story-card-body h4 {
  font-size: 16px;
}
.culture-story-grid .story-card-body p {
  font-size: 13px;
  margin-bottom: 8px;
}

/* Inline single card (景区介绍 etc.) */
.culture-story-card-inline {
  display: block;
  background: var(--white);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  margin: 24px 0;
}
.culture-story-card-inline:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.12);
  border-color: var(--gold);
}
.culture-story-card-inline:hover .story-card-body h4 { color: var(--crimson); }
.culture-story-card-inline:hover .story-link { text-decoration: underline; }

/* Article Detail Page */
.article-detail { padding: 60px 24px; }
.article-detail .container { max-width: 800px; }
.article-hero-img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(212, 168, 67, 0.2);
  margin-bottom: 32px;
}
.article-img-inline {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(212, 168, 67, 0.15);
  margin: 32px 0 8px;
}
.article-img-disclaimer,
.img-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin: 0 0 32px;
  font-style: italic;
}
.article-meta {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}
.article-detail p {
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
  font-size: 15px;
  text-align: justify;
}
.article-detail h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  color: var(--crimson);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.3);
}

/* Culture Table */
.culture-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.culture-table thead th {
  background: var(--crimson);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 500;
}
.culture-table thead th:first-child { border-radius: 8px 0 0 0; }
.culture-table thead th:last-child { border-radius: 0 8px 0 0; }
.culture-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  color: var(--text-secondary);
}
.culture-table tbody tr:hover {
  background: var(--gold-pale);
}
.culture-table tbody tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.culture-table tbody tr:last-child td:last-child { border-radius: 0 0 8px 0; }

/* Framed Image */
.framed-img {
  position: relative;
  max-width: 700px;
  margin: 40px auto;
  padding: 12px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
}
.framed-img img {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.framed-img .frame-border {
  position: absolute;
  inset: 4px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  pointer-events: none;
}

/* Framed Logo */
.framed-logo {
  display: inline-block;
  padding: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  border: 3px solid var(--gold);
}
.framed-logo img {
  max-width: 240px;
  height: auto;
  display: block;
}

/* Float Image Right */
.float-img-right {
  float: right;
  margin: 0 0 20px 28px;
  max-width: 260px;
  padding: 12px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
  border: 2px solid var(--gold);
}
@media (max-width: 768px) {
  .float-img-right {
    float: none;
    display: block;
    margin: 24px auto;
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .framed-img {
    margin: 28px 16px;
  }
}
