/* ============================================================
   IntoOne.org V2 设计系统
   圣洁庄重风格 — 深藏青 + 金色 + 暖白
   ============================================================ */

/* ── CSS 变量 ── */
:root {
  --v2-navy:        #1B3A6B;
  --v2-navy-dark:   #122851;
  --v2-navy-light:  #2A5298;
  --v2-gold:        #D4A843;
  --v2-gold-light:  #E8C76A;
  --v2-gold-dark:   #B8922A;
  --v2-warm-white:  #FAF8F3;
  --v2-warm-bg:     #F4F0E8;
  --v2-text:        #1a1a1a;
  --v2-text-muted:  #6b7280;
  --v2-border:      #E8E4DC;
  --v2-shadow:      0 4px 24px rgba(27, 58, 107, 0.10);
  --v2-shadow-hover:0 12px 40px rgba(27, 58, 107, 0.18);
  --v2-radius:      10px;
  --v2-font-serif:  Georgia, "STSong", "SimSun", "Noto Serif SC", serif;
  --v2-font-sans:   -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --v2-transition:  0.28s ease;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--v2-font-sans);
  color: var(--v2-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ================================================================
   V2 NAVIGATION
   ================================================================ */
.v2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 2px solid var(--v2-gold);
  transition: box-shadow var(--v2-transition);
  padding: 0;
}

.v2-nav.scrolled {
  box-shadow: 0 2px 20px rgba(27, 58, 107, 0.12);
}

.v2-nav .container {
  display: flex;
  align-items: center;
  height: 64px;
  max-width: 1240px;
  padding: 0 20px;
}

/* Logo */
.v2-nav-logo {
  flex-shrink: 0;
  margin-right: 32px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.v2-nav-logo img {
  height: 34px;
  width: auto;
}

/* Nav menu */
.v2-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
  flex: 1;
}

.v2-nav-menu > li {
  position: relative;
}

.v2-nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--v2-navy);
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--v2-transition), color var(--v2-transition);
  white-space: nowrap;
  position: relative;
}

.v2-nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--v2-gold);
  transition: left var(--v2-transition), right var(--v2-transition);
}

.v2-nav-menu > li > a:hover,
.v2-nav-menu > li > a:focus {
  color: var(--v2-navy-dark);
  background: rgba(212, 168, 67, 0.08);
  text-decoration: none;
}

.v2-nav-menu > li > a:hover::after {
  left: 14px;
  right: 14px;
}

/* Dropdown caret */
.v2-nav-caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--v2-navy);
  transition: transform var(--v2-transition);
  margin-top: 2px;
}

.v2-nav-menu > li:hover .v2-nav-caret { transform: rotate(180deg); }

/* Dropdown menu */
.v2-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--v2-border);
  border-top: 2px solid var(--v2-gold);
  border-radius: 0 0 var(--v2-radius) var(--v2-radius);
  box-shadow: var(--v2-shadow);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--v2-transition), transform var(--v2-transition), visibility var(--v2-transition);
  z-index: 200;
}

.v2-nav-menu > li:hover .v2-dropdown,
.v2-nav-menu > li:focus-within .v2-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.v2-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.88rem;
  color: var(--v2-text);
  text-decoration: none;
  transition: background var(--v2-transition), color var(--v2-transition);
}

.v2-dropdown li a:hover {
  background: var(--v2-warm-bg);
  color: var(--v2-navy);
  text-decoration: none;
}

/* Third-level dropdown */
.v2-dropdown-sub {
  position: absolute;
  left: 100%;
  top: -6px;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--v2-border);
  border-top: 2px solid var(--v2-gold);
  border-radius: 0 var(--v2-radius) var(--v2-radius) var(--v2-radius);
  box-shadow: var(--v2-shadow);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity var(--v2-transition), transform var(--v2-transition), visibility var(--v2-transition);
  z-index: 300;
}

.v2-dropdown li:hover .v2-dropdown-sub,
.v2-dropdown li:focus-within .v2-dropdown-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.v2-dropdown li.has-sub > a::after {
  content: '›';
  float: right;
  font-size: 1rem;
  line-height: 1;
  color: var(--v2-text-muted);
}

/* Language / right-side nav */
.v2-nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.v2-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--v2-navy);
  background: transparent;
  border: 1.5px solid var(--v2-border);
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--v2-transition), background var(--v2-transition);
  white-space: nowrap;
}

.v2-lang-btn:hover {
  border-color: var(--v2-gold);
  background: rgba(212, 168, 67, 0.07);
  color: var(--v2-navy);
  text-decoration: none;
}

/* Mobile toggle */
.v2-nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  margin-left: 10px;
}

.v2-nav-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--v2-navy);
  border-radius: 2px;
  transition: transform var(--v2-transition), opacity var(--v2-transition);
}

.v2-nav-toggler.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-nav-toggler.open span:nth-child(2) { opacity: 0; }
.v2-nav-toggler.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
@media (max-width: 991px) {
  .v2-nav-menu { display: none; }
  .v2-nav-toggler { display: flex; }
  .v2-nav-right { margin-left: 0; }

  .v2-nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--v2-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 12px 0 20px;
    gap: 0;
    max-height: 80vh;
    overflow-y: auto;
  }

  .v2-nav-menu.mobile-open > li > a {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--v2-warm-bg);
  }

  .v2-nav-menu.mobile-open > li > a::after { display: none; }

  .v2-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    background: var(--v2-warm-bg);
    border-radius: 0;
    padding: 0;
    display: none;
  }

  .v2-dropdown li a { padding: 10px 36px; font-size: 0.9rem; }
  .v2-nav-menu.mobile-open > li.mobile-expanded .v2-dropdown { display: block; }

  .v2-dropdown-sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--v2-border);
    border-radius: 0;
    padding: 0;
    display: none;
  }

  .v2-dropdown li.mobile-expanded .v2-dropdown-sub { display: block; }
  .v2-dropdown-sub li a { padding-left: 52px; font-size: 0.85rem; }
}

/* ================================================================
   V2 HERO
   ================================================================ */
.v2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../img/index_walk.webp') center center / cover no-repeat;
  overflow: hidden;
}

.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18, 40, 81, 0.75) 0%,
    rgba(18, 40, 81, 0.50) 60%,
    rgba(18, 40, 81, 0.30) 100%
  );
}

/* Bottom fade into next section */
.v2-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #fff);
}

.v2-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 60px 20px 140px;
}

.v2-hero-title {
  font-family: var(--v2-font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.v2-hero-sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.v2-hero-gold-line {
  width: 60px;
  height: 3px;
  background: var(--v2-gold);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.v2-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.v2-hero-scroll::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(212,168,67,0.8), transparent);
  border-radius: 1px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   V2 ICON NAVIGATION STRIP (栏目快捷入口)
   ================================================================ */
.v2-nav-strip {
  background: #fff;
  border-bottom: 1px solid var(--v2-border);
  padding: 0;
  position: relative;
  z-index: 1;
}

.v2-nav-strip-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1240px;
  margin: 0 auto;
}

.v2-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 10px;
  text-decoration: none;
  color: var(--v2-navy);
  border-right: 1px solid var(--v2-border);
  transition: background var(--v2-transition), color var(--v2-transition);
  position: relative;
}

.v2-strip-item:last-child { border-right: none; }

.v2-strip-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--v2-gold);
  transform: scaleX(0);
  transition: transform var(--v2-transition);
}

.v2-strip-item:hover {
  background: var(--v2-warm-bg);
  color: var(--v2-navy-dark);
  text-decoration: none;
}

.v2-strip-item:hover::after { transform: scaleX(1); }

.v2-strip-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
  line-height: 1;
}

.v2-strip-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .v2-nav-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .v2-strip-item { padding: 16px 8px; border-right: 1px solid var(--v2-border); }
  .v2-strip-item:nth-child(3) { border-right: none; }
  .v2-strip-icon { font-size: 1.5rem; }
  .v2-strip-label { font-size: 0.72rem; }
}

/* ================================================================
   V2 SECTIONS (通用区块)
   ================================================================ */
.v2-section {
  padding: 80px 0;
}

.v2-section--warm { background: var(--v2-warm-bg); }
.v2-section--navy { background: var(--v2-navy); color: #fff; }

.v2-section-head {
  text-align: center;
  margin-bottom: 52px;
}

.v2-section-title {
  font-family: var(--v2-font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--v2-navy);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.v2-section--navy .v2-section-title { color: #fff; }

.v2-section-rule {
  width: 48px;
  height: 3px;
  background: var(--v2-gold);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.v2-section-sub {
  font-size: 1rem;
  color: var(--v2-text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.v2-section--navy .v2-section-sub { color: rgba(255,255,255,0.7); }

@media (max-width: 767px) {
  .v2-section { padding: 52px 0; }
  .v2-section-head { margin-bottom: 36px; }
}

/* ================================================================
   V2 CARDS (内容卡片)
   ================================================================ */
.v2-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.v2-cards-grid--2col { grid-template-columns: repeat(2, 1fr); }
.v2-cards-grid--4col { grid-template-columns: repeat(4, 1fr); }

.v2-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--v2-transition), box-shadow var(--v2-transition), border-left-color var(--v2-transition);
  border-left: 3px solid transparent;
}

.v2-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-hover);
  border-left-color: var(--v2-gold);
}

.v2-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--v2-warm-bg);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--v2-transition);
}

.v2-card-img-wrap.logo-style {
  height: 140px;
  padding: 20px;
}

.v2-card-img-wrap.logo-style img {
  width: auto;
  height: auto;
  max-width: 110px;
  max-height: 100px;
  object-fit: contain;
}

.v2-card:hover .v2-card-img-wrap img { transform: scale(1.04); }

.v2-card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.v2-card-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v2-gold-dark);
  background: rgba(212, 168, 67, 0.12);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.v2-card-title {
  font-family: var(--v2-font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.v2-card-text {
  font-size: 0.88rem;
  color: var(--v2-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--v2-navy);
  text-decoration: none;
  transition: gap var(--v2-transition), color var(--v2-transition);
  margin-top: auto;
}

.v2-card-link::after { content: '→'; }

.v2-card-link:hover {
  color: var(--v2-gold-dark);
  text-decoration: none;
  gap: 10px;
}

@media (max-width: 991px) {
  .v2-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-cards-grid--4col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .v2-cards-grid,
  .v2-cards-grid--2col,
  .v2-cards-grid--4col { grid-template-columns: 1fr; }
}

/* ================================================================
   V2 DEVOTION BANNER (每日灵修横幅)
   ================================================================ */
.v2-devotion-banner {
  background: var(--v2-navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.v2-devotion-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(212, 168, 67, 0.06);
  border-radius: 50%;
}

.v2-devotion-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  background: rgba(212, 168, 67, 0.04);
  border-radius: 50%;
}

.v2-devotion-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.v2-devotion-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 16px;
  display: block;
}

.v2-devotion-quote {
  font-family: var(--v2-font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.93);
  font-style: italic;
  margin-bottom: 10px;
}

.v2-devotion-quote::before { content: '\201C'; color: var(--v2-gold); font-size: 2em; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.v2-devotion-quote::after  { content: '\201D'; color: var(--v2-gold); font-size: 2em; line-height: 0; vertical-align: -0.4em; margin-left: 4px; }

.v2-devotion-source {
  font-size: 0.9rem;
  color: var(--v2-gold-light);
  margin-bottom: 32px;
  display: block;
}

.v2-devotion-date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  display: block;
}

.v2-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--v2-gold);
  color: var(--v2-navy-dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 40px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--v2-transition), transform var(--v2-transition), box-shadow var(--v2-transition);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.35);
}

.v2-btn-gold:hover {
  background: var(--v2-gold-light);
  color: var(--v2-navy-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.45);
}

.v2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 40px;
  text-decoration: none;
  transition: border-color var(--v2-transition), color var(--v2-transition), background var(--v2-transition);
  margin-left: 12px;
}

.v2-btn-outline:hover {
  border-color: var(--v2-gold);
  color: var(--v2-gold);
  background: rgba(212, 168, 67, 0.08);
  text-decoration: none;
}

/* 浅色背景上使用的次要按钮（navy 色系） */
.v2-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--v2-navy);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid var(--v2-navy);
  border-radius: 40px;
  text-decoration: none;
  transition: background var(--v2-transition), color var(--v2-transition), border-color var(--v2-transition);
  cursor: pointer;
}

.v2-btn-secondary:hover {
  background: var(--v2-navy);
  color: #fff;
  border-color: var(--v2-navy);
  text-decoration: none;
}

/* ================================================================
   V2 VIDEO GRID (云课堂)
   ================================================================ */
.v2-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.v2-video-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
  transition: transform var(--v2-transition), box-shadow var(--v2-transition);
  text-decoration: none;
  color: var(--v2-text);
  display: block;
}

.v2-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-hover);
  text-decoration: none;
  color: var(--v2-text);
}

.v2-video-thumb {
  display: block;
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--v2-navy-dark);
}

.v2-video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--v2-transition);
}

.v2-video-card:hover .v2-video-thumb img { transform: scale(1.05); }

.v2-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 40, 81, 0.35);
  transition: background var(--v2-transition);
}

.v2-video-card:hover .v2-video-play { background: rgba(18, 40, 81, 0.5); }

.v2-video-play-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--v2-transition);
}

.v2-video-card:hover .v2-video-play-icon { transform: scale(1.1); }

.v2-video-play-icon::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--v2-navy);
  margin-left: 3px;
}

.v2-video-category-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--v2-gold);
  color: var(--v2-navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.v2-video-info {
  padding: 16px 18px 18px;
}

.v2-video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--v2-navy);
  margin-bottom: 8px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-video-meta {
  font-size: 0.8rem;
  color: var(--v2-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1100px) { .v2-video-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px)  { .v2-video-grid { grid-template-columns: 1fr; gap: 16px; } .v2-video-thumb { height: 200px; } }

/* 云课堂分类区块 */
.v2-cc-cat-section { margin-bottom: 60px; }
.v2-cc-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--v2-navy);
  border-radius: var(--v2-radius);
  padding: 14px 24px;
  margin-bottom: 24px;
  border-left: 5px solid var(--v2-gold);
}
.v2-cc-cat-bar { display: none; }
.v2-cc-cat-title {
  font-family: var(--v2-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.03em;
}
.v2-cc-cat-count {
  font-size: 0.8rem;
  color: var(--v2-gold);
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.35);
  padding: 3px 12px;
  border-radius: 12px;
  white-space: nowrap;
  font-weight: 600;
}
.v2-cc-cat-line { display: none; }

/* ================================================================
   V2 MISSIONARY (宣教士)
   ================================================================ */
.v2-missionary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.v2-missionary-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-top: 4px solid var(--v2-navy);
  border-radius: var(--v2-radius);
  padding: 32px 24px 24px;
  text-align: center;
  transition: transform var(--v2-transition), box-shadow var(--v2-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* 卡片颜色变体（顶部色条 + 极淡背景） */
.v2-missionary-card.mc-male-protestant   { border-top-color: var(--v2-navy);      background: rgba(27,58,107,0.035); }
.v2-missionary-card.mc-male-catholic     { border-top-color: var(--v2-navy-dark);  background: rgba(18,40,81,0.055); }
.v2-missionary-card.mc-female-protestant { border-top-color: #7C5CBF;              background: rgba(124,92,191,0.04); }
.v2-missionary-card.mc-female-catholic   { border-top-color: #5B4B8A;              background: rgba(91,75,138,0.055); }

.v2-missionary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-hover);
}

.v2-missionary-name {
  font-family: var(--v2-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin-bottom: 6px;
}

.v2-missionary-period {
  font-size: 0.8rem;
  color: var(--v2-gold-dark);
  background: rgba(212, 168, 67, 0.1);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  display: inline-block;
  font-weight: 600;
}

.v2-missionary-desc {
  font-size: 0.86rem;
  color: var(--v2-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) { .v2-missionary-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

/* ================================================================
   V2 LOGO GRID (国际事工 / 公益)
   ================================================================ */
.v2-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.v2-logo-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--v2-text);
  transition: transform var(--v2-transition), box-shadow var(--v2-transition), border-color var(--v2-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v2-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--v2-shadow);
  border-color: var(--v2-gold);
  text-decoration: none;
  color: var(--v2-text);
}

.v2-logo-card-img {
  width: 90px; height: 90px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 14px;
}

.v2-logo-card-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--v2-navy);
  margin-bottom: 6px;
}

.v2-logo-card-desc {
  font-size: 0.8rem;
  color: var(--v2-text-muted);
  line-height: 1.5;
}

@media (max-width: 767px) { .v2-logo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .v2-logo-grid { grid-template-columns: 1fr; } }

/* ================================================================
   V2 PHASE 3 — 见证视频 / 书籍 / 分页 / 静态链接
   ================================================================ */

/* 2列视频网格（见证页面）*/
.v2-video-grid--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .v2-video-grid--2col { grid-template-columns: 1fr; } }

/* 书籍卡片 */
.v2-book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.v2-book-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--v2-transition), box-shadow var(--v2-transition);
}
.v2-book-card:hover { transform: translateY(-4px); box-shadow: var(--v2-shadow-hover); }
.v2-book-cover {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
}
.v2-book-info {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.v2-book-title {
  font-family: var(--v2-font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.v2-book-desc {
  font-size: 0.82rem;
  color: var(--v2-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-book-actions { display: flex; gap: 8px; margin-top: auto; }
@media (max-width: 768px) { .v2-book-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .v2-book-grid { grid-template-columns: 1fr; } }

/* 资源卡片地址栏（教堂页面）*/
.v2-church-address {
  font-size: 0.78rem;
  color: var(--v2-text-muted);
  line-height: 1.6;
  margin-top: 6px;
  text-align: left;
  width: 100%;
}

/* V2 分页 */
.v2-page-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 48px 0 0;
}
.v2-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--v2-border);
  border-radius: 6px;
  color: var(--v2-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--v2-transition);
  background: #fff;
}
.v2-page-link:hover { border-color: var(--v2-navy); color: var(--v2-navy); text-decoration: none; }
.v2-page-link.active { background: var(--v2-navy); border-color: var(--v2-navy); color: #fff; }

/* 静态公益链接网格 */
.v2-link-section-title {
  font-family: var(--v2-font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--v2-gold);
  display: inline-block;
}
.v2-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.v2-link-item {
  display: block;
  padding: 9px 14px;
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: 6px;
  color: var(--v2-navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--v2-transition);
}
.v2-link-item:hover {
  background: var(--v2-navy);
  color: #fff;
  border-color: var(--v2-navy);
  text-decoration: none;
}
@media (max-width: 768px) { .v2-link-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .v2-link-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   V2 FOOTER
   ================================================================ */
.v2-footer {
  background: var(--v2-navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
  position: relative;
}

.v2-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--v2-gold) 0%, var(--v2-gold-light) 50%, var(--v2-gold) 100%);
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.v2-footer-logo-img {
  height: 36px;
  width: auto;
  opacity: 0.88;
  margin-bottom: 14px;
  display: block;
  filter: brightness(1.1);
}

.v2-footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.v2-footer-social {
  display: flex;
  gap: 10px;
}

.v2-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background var(--v2-transition), color var(--v2-transition);
}

.v2-footer-social a:hover {
  background: var(--v2-gold);
  color: var(--v2-navy-dark);
  text-decoration: none;
}

.v2-footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 18px;
}

.v2-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2-footer-links li { margin-bottom: 10px; }

.v2-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color var(--v2-transition), padding-left var(--v2-transition);
  display: inline-block;
}

.v2-footer-links a:hover {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  padding-left: 4px;
}

.v2-footer-contact p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.v2-footer-contact a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--v2-transition);
}

.v2-footer-contact a:hover {
  color: var(--v2-gold);
  text-decoration: none;
}

.v2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding: 20px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.v2-footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.v2-footer-copyright a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.v2-footer-copyright a:hover {
  color: var(--v2-gold);
  text-decoration: none;
}

.v2-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.v2-footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--v2-transition);
}

.v2-footer-bottom-links a:hover {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

@media (max-width: 991px) {
  .v2-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 575px) {
  .v2-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .v2-footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================================
   V2 SCROLL REVEAL ANIMATION
   ================================================================ */
.v2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.v2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-reveal-delay-1 { transition-delay: 0.1s; }
.v2-reveal-delay-2 { transition-delay: 0.2s; }
.v2-reveal-delay-3 { transition-delay: 0.3s; }
.v2-reveal-delay-4 { transition-delay: 0.4s; }
.v2-reveal-delay-5 { transition-delay: 0.5s; }
.v2-reveal-delay-6 { transition-delay: 0.6s; }

/* ================================================================
   V2 UTILITIES
   ================================================================ */
.v2-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.v2-text-center { text-align: center; }

.v2-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--v2-navy);
  text-decoration: none;
  border-bottom: 1.5px solid var(--v2-gold);
  padding-bottom: 2px;
  transition: color var(--v2-transition);
}

.v2-view-all:hover {
  color: var(--v2-gold-dark);
  text-decoration: none;
}

/* Body padding for fixed nav */
body.v2-page { padding-top: 64px; }

/* Charity section */
.v2-charity-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
  transition: transform var(--v2-transition), box-shadow var(--v2-transition);
}

.v2-charity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-hover);
}

.v2-charity-card-header {
  background: var(--v2-navy);
  padding: 28px 24px 20px;
  color: #fff;
}

.v2-charity-card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.v2-charity-card-title {
  font-family: var(--v2-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.v2-charity-card-body {
  padding: 20px 24px 24px;
}

.v2-charity-card-text {
  font-size: 0.88rem;
  color: var(--v2-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.v2-charity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 767px) { .v2-charity-grid { grid-template-columns: 1fr; } }

/* ================================================================
   LANGUAGE SELECTOR MODAL
   ================================================================ */
.v2-lang-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9000;
  display: none;
}

.v2-lang-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  min-width: 280px;
  z-index: 9001;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: none;
}

.v2-lang-modal h4 {
  font-family: var(--v2-font-serif);
  color: var(--v2-navy);
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.v2-lang-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-lang-option {
  padding: 12px 20px;
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius);
  text-decoration: none;
  color: var(--v2-navy);
  text-align: center;
  font-weight: 500;
  transition: border-color var(--v2-transition), background var(--v2-transition);
}

.v2-lang-option:hover {
  border-color: var(--v2-gold);
  background: rgba(212,168,67,0.07);
  text-decoration: none;
  color: var(--v2-navy);
}

/* ================================================================
   V2 PAGE HERO（内页顶部横幅）
   ================================================================ */
.v2-page-hero {
  background: var(--v2-navy);
  padding: 110px 0 52px;
  text-align: center;
  position: relative;
}

.v2-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--v2-gold);
}

.v2-page-hero-eyebrow {
  color: var(--v2-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.v2-page-hero-title {
  font-family: var(--v2-font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin: 0 0 12px;
  font-weight: 700;
}

.v2-page-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .v2-page-hero { padding: 90px 20px 44px; }
}

/* ================================================================
   V2 FILTER BAR（搜索/筛选栏）
   ================================================================ */
.v2-filter-bar {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 28px 32px;
  margin-bottom: 40px;
  box-shadow: var(--v2-shadow);
}

.v2-filter-bar input[type="text"],
.v2-filter-bar select {
  border: 1.5px solid var(--v2-border);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.93rem;
  transition: border-color var(--v2-transition), box-shadow var(--v2-transition);
  background: #fff;
  color: var(--v2-text);
  width: 100%;
}

.v2-filter-bar input[type="text"]:focus,
.v2-filter-bar select:focus {
  border-color: var(--v2-navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}

.v2-filter-bar input[type="text"]::placeholder {
  color: var(--v2-text-muted);
}

.v2-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  align-items: center;
}

.v2-tag-btn {
  display: inline-block;
  padding: 5px 14px;
  border: 1.5px solid var(--v2-border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--v2-text-muted);
  cursor: pointer;
  transition: all var(--v2-transition);
  background: #fff;
  user-select: none;
}

.v2-tag-btn:hover,
.v2-tag-btn.active {
  background: var(--v2-navy);
  border-color: var(--v2-navy);
  color: #fff;
}

@media (max-width: 575px) {
  .v2-filter-bar { padding: 20px 16px; }
}

/* ================================================================
   V2 DEVOTION PAGE（每日灵修页详细样式）
   ================================================================ */
.v2-devotion-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.v2-devotion-header {
  background: var(--v2-navy);
  color: #fff;
  padding: 36px 40px;
  border-radius: var(--v2-radius) var(--v2-radius) 0 0;
}

.v2-devotion-date-badge {
  color: var(--v2-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.v2-devotion-main-title {
  font-family: var(--v2-font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.4;
}

.v2-devotion-author {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.v2-devotion-body {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-top: none;
  border-radius: 0 0 var(--v2-radius) var(--v2-radius);
  padding: 40px;
}

.v2-devotion-quote-block {
  border-left: 4px solid var(--v2-gold);
  padding: 20px 24px;
  background: var(--v2-warm-bg);
  margin-bottom: 28px;
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--v2-navy);
  position: relative;
}

.v2-devotion-quote-block::before {
  content: '\201C';
  color: var(--v2-gold);
  font-size: 3.5rem;
  font-family: var(--v2-font-serif);
  line-height: 0;
  vertical-align: -1.1rem;
  margin-right: 4px;
  opacity: 0.6;
}

.v2-devotion-scripture-block {
  background: rgba(27,58,107,0.06);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.v2-devotion-scripture-ref {
  font-weight: 700;
  color: var(--v2-navy);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.v2-devotion-scripture-text {
  font-style: italic;
  color: var(--v2-text);
  line-height: 1.8;
  margin: 0;
}

.v2-devotion-section-title {
  font-family: var(--v2-font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--v2-gold);
  display: inline-block;
}

.v2-devotion-reflection {
  margin-bottom: 28px;
}

.v2-devotion-prayer-block {
  background: var(--v2-warm-bg);
  border-radius: 8px;
  padding: 24px;
  margin-top: 28px;
}

.v2-devotion-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--v2-border);
  margin-top: 32px;
  gap: 12px;
}

.v2-devotion-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--v2-navy);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid var(--v2-border);
  border-radius: 6px;
  transition: all var(--v2-transition);
}

.v2-devotion-nav-link:hover {
  border-color: var(--v2-gold);
  background: rgba(212,168,67,0.08);
  color: var(--v2-navy);
  text-decoration: none;
}

.v2-devotion-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--v2-border);
}

/* 统计数据行 */
.v2-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.v2-stat-item {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--v2-shadow);
}

.v2-stat-number {
  font-family: var(--v2-font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--v2-navy);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.v2-stat-label {
  font-size: 0.82rem;
  color: var(--v2-text-muted);
  line-height: 1.4;
}

/* 订阅框 */
.v2-subscribe-box {
  background: var(--v2-navy);
  border-radius: var(--v2-radius);
  padding: 40px;
  color: #fff;
  margin: 40px 0;
  text-align: center;
}

.v2-subscribe-box h3 {
  font-family: var(--v2-font-serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.v2-subscribe-box p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 0;
}

.v2-subscribe-input-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 20px auto 0;
}

.v2-subscribe-input-row input {
  flex: 1;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.95rem;
}

.v2-subscribe-input-row input::placeholder {
  color: rgba(255,255,255,0.45);
}

.v2-subscribe-input-row input:focus {
  border-color: var(--v2-gold);
  outline: none;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 767px) {
  .v2-devotion-header { padding: 28px 24px; }
  .v2-devotion-body  { padding: 28px 20px; }
  .v2-stat-row { grid-template-columns: 1fr; gap: 12px; }
  .v2-subscribe-box { padding: 28px 20px; }
  .v2-subscribe-input-row { flex-direction: column; }
}

/* ================================================================
   V2 MISSIONARY CIRCLE（宣教士圆形头像色彩系统）
   ================================================================ */
.v2-missionary-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--v2-font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  /* 金色外圈：使用 box-shadow 产生金环，避免 border 压缩内部空间 */
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px var(--v2-gold), 0 6px 20px rgba(0,0,0,0.15);
  flex-shrink: 0;
  letter-spacing: 0.02em;
  transition: transform var(--v2-transition), box-shadow var(--v2-transition);
}

.v2-missionary-card:hover .v2-missionary-circle {
  transform: scale(1.06);
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px var(--v2-gold-light), 0 8px 28px rgba(0,0,0,0.18);
}

.circle-male-protestant   { background: var(--v2-navy); }
.circle-male-catholic     { background: var(--v2-navy-dark); }
.circle-female-protestant { background: #7C5CBF; }
.circle-female-catholic   { background: #5B4B8A; }

/* ================================================================
   V2 ABOUT PAGE 使命横幅（内联版）
   ================================================================ */
.v2-mission-banner {
  background: var(--v2-navy);
  border-radius: var(--v2-radius);
  padding: 40px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.v2-mission-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--v2-gold);
}

.v2-mission-banner-label {
  color: var(--v2-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.v2-mission-banner-slogan {
  font-family: var(--v2-font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: #fff;
  line-height: 1.5;
  margin-bottom: 14px;
  font-weight: 700;
}

.v2-mission-banner-verse {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

/* ================================================================
   V2 INFO CARD（关于我们 / 通用内容卡片）
   ================================================================ */
.v2-info-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--v2-shadow);
}

.v2-info-card-title {
  font-family: var(--v2-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin-bottom: 16px;
}

.v2-info-card-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--v2-text);
  margin: 0;
}

.v2-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.v2-service-item {
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  padding: 20px;
  background: var(--v2-warm-white);
  transition: border-color var(--v2-transition), box-shadow var(--v2-transition);
}

.v2-service-item:hover {
  border-color: var(--v2-gold);
  box-shadow: var(--v2-shadow);
}

.v2-service-item h4 {
  font-family: var(--v2-font-serif);
  color: var(--v2-navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.v2-service-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--v2-text-muted);
  line-height: 1.7;
}

.v2-contact-list {
  padding-top: 16px;
  border-top: 1px solid var(--v2-border);
  margin-top: 4px;
}

.v2-contact-list p {
  margin: 10px 0;
  font-size: 0.95rem;
  color: var(--v2-text);
}

.v2-contact-list a {
  color: var(--v2-navy);
  font-weight: 600;
  text-decoration: none;
}

.v2-contact-list a:hover {
  color: var(--v2-gold-dark);
  text-decoration: underline;
}

@media (max-width: 575px) {
  .v2-service-grid { grid-template-columns: 1fr; }
  .v2-info-card { padding: 24px 20px; }
}
