/* ========== Hero & Intro ========== */
.vk-hero-sub { font-size: 15px; color: rgba(255,255,255,0.85); max-width: 600px; line-height: 1.7; margin-bottom: 20px; }
.vk-trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.vk-trust-pill {
  font-size: 12px; padding: 5px 14px; background: rgba(255,255,255,0.15);
  color: #fff; border-radius: 20px; display: flex; align-items: center; gap: 5px;
}
.vk-section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(to right, white, #ffd700);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vk-section-label::before {
  content: ''; display: block; width: 4px; height: 18px;
  background: linear-gradient(to bottom, #fff, #ffd700); border-radius: 2px; flex-shrink: 0;
}
.vk-section-label i { font-size: 14px; -webkit-text-fill-color: #ffd700; }
.vk-desc-area {
  max-width: 1000px; margin: 0 auto; padding: 28px 32px;
  background: rgba(255,255,255,0.06); border-radius: 12px;
  margin-bottom: 10px;
}
.vk-desc-area p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.85; margin: 0; }

/* ========== Product Cards ========== */
.vk-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.vk-product-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vk-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vk-card-badge {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}
.vk-badge-hot { background: #fef3c7; color: #92400e; }
.vk-badge-community { background: #ede9fe; color: #5b21b6; }
.vk-badge-safe { background: #dcfce7; color: #166534; }
.vk-badge-fast { background: #e0f2fe; color: #0369a1; }
.vk-badge-campaign { background: #fce7f3; color: #9d174d; }
.vk-badge-value { background: #fff7ed; color: #9a3412; }
.vk-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.vk-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}
.vk-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.vk-tag {
  font-size: 11px;
  padding: 2px 8px;
  background: #f5f5f5;
  color: #555;
  border-radius: 4px;
}
.vk-card-desc {
  font-size: 12px !important;
  color: #666;
  line-height: 1.65;
  flex: 1;
}
.vk-card-desc strong {
  color: #e8698a;
  font-weight: 600;
}
.vk-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vk-card-features li {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 7px;
}
.vk-card-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e8698a;
  flex-shrink: 0;
}
.vk-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}
.vk-card-price {
  font-size: 18px;
  font-weight: 800;
  color: #e8698a;
}
.vk-card-price small {
  font-size: 11px;
  font-weight: 400;
  color: #999;
}
.vk-card-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  background: #e8698a !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s;
}
.vk-card-btn:hover {
  background: #d45c7e !important;
  color: #fff !important;
  text-decoration: none !important;
}
.vk-card-btn:focus,
.vk-card-btn:active,
.vk-card-btn:visited {
  color: #fff !important;
  text-decoration: none !important;
}
.vk-product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(232,105,138,0.15); }
.vk-card-icon { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.vk-product-card:hover .vk-card-icon { transform: scale(1.15) rotate(-5deg); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.vk-card-badge { transition: transform 0.3s ease; }
.vk-product-card:hover .vk-card-badge { transform: scale(1.08); }
.vk-product-card:hover .vk-card-btn { transform: scale(1.05); box-shadow: 0 4px 12px rgba(232,105,138,0.3); }
.vk-card-btn { transition: transform 0.3s ease, box-shadow 0.3s ease; }
@media (max-width: 768px) {
  .vk-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .vk-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== Bridge Section ========== */
.vk-bridge { background:#fff; padding:56px 0 52px; }
.vk-bridge__wrap { max-width:1100px; margin:0 auto; padding:0 20px; }
.vk-bridge__label { display:inline-flex; align-items:center; gap:8px; background:#fdf2f4; border-radius:20px; padding:6px 16px; margin-bottom:20px; }
.vk-bridge__label i { color:#e8698a; font-size:13px; }
.vk-bridge__label span { font-size:13px; font-weight:600; color:#e8698a; }
.vk-bridge__main { font-size:16px; color:#333; line-height:2.1; margin:0 0 32px; letter-spacing:0.3px; }
.vk-bridge__main strong { color:#c2365a; }
@media(max-width:768px){ .vk-bridge{padding:40px 0 36px;} }

/* ========== Decorations & Glow ========== */
.vk-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 48px;
  font-size: 16px; font-weight: 700; color: #fff;
  background: #e8698a;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(232,105,138,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}
.vk-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(232,105,138,0.45);
  background: #d45c7e;
}
.vk-cta-btn:active { transform: translateY(-1px) scale(1); }
@keyframes vk-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.vk-cta-btn { animation: vk-bounce 2s ease-in-out infinite; }
.vk-cta-btn:hover { animation: none; }
#block_content { position: relative; overflow: hidden; }
#block_content section, #block_content > div:not(.vk-deco) { position: relative; z-index: 1; }
.vk-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: vk-float 8s ease-in-out infinite;
}
.vk-deco--2, .vk-deco--4, .vk-deco--6 { animation-direction: reverse; animation-duration: 10s; }
.vk-deco--3, .vk-deco--7 { animation-duration: 12s; }
@keyframes vk-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(30px, -20px) scale(1.08); opacity: 0.7; }
}
.vk-deco--1 { top: 80px; right: -120px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,105,138,0.35) 0%, transparent 70%); }
.vk-deco--2 { top: 1000px; left: -180px; width: 550px; height: 550px; background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%); }
.vk-deco--3 { top: 1400px; right: -80px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(16,185,129,0.25) 0%, transparent 70%); }
.vk-deco--4 { top: 2633px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,105,138,0.30) 0%, transparent 70%); }
.vk-deco--5 { top: 3300px; right: -120px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%); }
.vk-deco--6 { top: 4000px; left: -150px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(232,105,138,0.30) 0%, transparent 70%); }
.vk-deco--7 { top: 4700px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(16,185,129,0.25) 0%, transparent 70%); }
.vk-deco--8 { top: 500px; left: -60px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(245,158,11,0.22) 0%, transparent 70%); }
.vk-deco--9 { top: 1800px; right: -150px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(2,132,199,0.22) 0%, transparent 70%); }
.vk-deco--10 { top: 2200px; left: 60%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%); }
.vk-deco--11 { top: 3600px; left: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(2,132,199,0.22) 0%, transparent 70%); }
.vk-deco--12 { top: 4900px; left: 15%; width: 450px; height: 450px; background: radial-gradient(circle, rgba(232,105,138,0.25) 0%, transparent 70%); }
.vk-deco--8, .vk-deco--10, .vk-deco--12 { animation-duration: 9s; }
.vk-deco--9, .vk-deco--11 { animation-direction: reverse; animation-duration: 11s; }
@media (max-width: 768px) {
  .vk-deco { width: 250px !important; height: 250px !important; opacity: 0.6; }
}

/* ========== Services Grid ========== */
.vk-svc-section { background: transparent; padding: 60px 0; }
.vk-svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto 30px; }
.vk-svc-card {
  background: #fff; border-radius: 14px; padding: 24px 24px 22px;
  border: 1px solid #f0f0f0;
  transition: all 0.25s ease;
  position: relative; z-index: 1;
}
.vk-svc-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.06); transform: translateY(-2px); border-color: rgba(234,122,138,0.2); }
.vk-svc-icon { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.vk-svc-card:hover .vk-svc-icon { animation: vk-icon-bounce 0.5s ease; transform: translateY(-4px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
@keyframes vk-icon-bounce { 0% { transform: translateY(0); } 30% { transform: translateY(-8px); } 60% { transform: translateY(-2px); } 100% { transform: translateY(-4px); } }
.vk-svc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.vk-svc-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.vk-svc-title { font-size: 16px; font-weight: 700; color: #1a1a2e; line-height: 1.4; }
.vk-svc-desc { font-size: 13.5px; color: #555; line-height: 1.75; }
.vk-svc-desc strong { color: #e8698a; font-weight: 600; }
.vk-svc-desc ul { list-style: none !important; padding: 0 !important; margin: 8px 0 0 !important; }
.vk-svc-desc li { position: relative !important; padding-left: 20px !important; margin-bottom: 5px !important; font-size: 13px; color: #555; list-style: none !important; }
.vk-svc-desc li::before {
  content: '✓' !important;
  position: absolute !important; left: 0 !important; top: 0 !important; font-size: 13px; color: #e8698a; font-weight: 700;
}
.vk-svc-footer { text-align: center; font-size: 14px; color: #777; max-width: 800px; margin: 0 auto; line-height: 1.7; }
@media (max-width: 768px) { .vk-svc-grid { grid-template-columns: 1fr; gap: 14px; } .vk-svc-card { padding: 20px 18px; } }

/* ========== Timeline ========== */
.vk-timeline { padding:30px; background:linear-gradient(135deg,rgba(234,122,138,0.05),rgba(178,130,254,0.05)); border-radius:16px; border:1px solid rgba(234,122,138,0.1); max-width:1100px; margin:0 auto; }
.vk-timeline-track { display:flex; align-items:flex-start; justify-content:center; }
.vk-timeline-node { display:flex; flex-direction:column; align-items:center; flex:1; }
.vk-timeline-step { font-size:13px; font-weight:700; color:#b282fe; margin-bottom:10px; text-align:center; letter-spacing:0.5px; }
.vk-timeline-dot { width:16px; height:16px; background:linear-gradient(135deg,#ea7a8a,#b282fe); border-radius:50%; position:relative; box-shadow:0 0 0 4px rgba(234,122,138,0.2); flex-shrink:0; animation:vk-dot-breath 2s ease-in-out infinite; }
@keyframes vk-dot-breath {
  0%,100% { box-shadow:0 0 0 4px rgba(234,122,138,0.2); transform:scale(1); }
  50% { box-shadow:0 0 0 8px rgba(234,122,138,0.1),0 0 20px rgba(234,122,138,0.3); transform:scale(1.1); }
}
.vk-timeline-title { font-size:14px; font-weight:600; color:#ea7a8a; text-align:center; margin-top:12px; margin-bottom:6px; }
.vk-timeline-desc { font-size:13px; color:#666; text-align:center; line-height:1.5; }
.vk-timeline-desc a { color:#ea7a8a; text-decoration:none; font-weight:600; }
.vk-timeline-line { flex:1; height:2px; background:linear-gradient(90deg,#ea7a8a,#b282fe); margin-top:23px; }
@media(max-width:768px) {
  .vk-timeline { padding:24px 20px; }
  .vk-timeline-track { flex-direction:column; align-items:flex-start; position:relative; padding-left:100px; }
  .vk-timeline-track::before { content:''; position:absolute; left:107px; top:8px; bottom:8px; width:2px; background:linear-gradient(180deg,#ea7a8a,#b282fe); }
  .vk-timeline-node { flex-direction:row; flex-wrap:wrap; width:100%; gap:0 20px; position:relative; padding:8px 0; }
  .vk-timeline-step { position:absolute; left:-100px; width:90px; text-align:right; margin-bottom:0; font-size:12px; }
  .vk-timeline-dot { z-index:1; flex-shrink:0; }
  .vk-timeline-title { text-align:left; margin-top:0; margin-bottom:4px; flex:1; }
  .vk-timeline-desc { text-align:left; margin-top:0; flex-basis:100%; padding-left:36px; }
  .vk-timeline-line { display:none; }
}

/* ========== Why Choose Us ========== */
.vk-why-item {
  padding: 22px 0;
  border-bottom: 1px solid #f0f0f0;
}
.vk-why-item:last-child { border-bottom: none; }
.vk-why-icon-sm { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.vk-why-item:hover .vk-why-icon-sm { animation: vk-icon-shake 0.5s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
@keyframes vk-icon-shake { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-10deg); } 75% { transform: rotate(10deg); } }
.vk-why-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.vk-why-icon-sm {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.vk-why-item:nth-child(1) .vk-why-icon-sm { background: #fce7f3; color: #ea7a8a; }
.vk-why-item:nth-child(2) .vk-why-icon-sm { background: #ede9fe; color: #8b5cf6; }
.vk-why-item:nth-child(3) .vk-why-icon-sm { background: #fef3c7; color: #f59e0b; }
.vk-why-item:nth-child(4) .vk-why-icon-sm { background: #e0f2fe; color: #0284c7; }
.vk-why-item:nth-child(5) .vk-why-icon-sm { background: #dcfce7; color: #10b981; }
.vk-why-item:nth-child(6) .vk-why-icon-sm { background: #fce7f3; color: #ec4899; }
.vk-why-title { font-size: 16px; font-weight: 700; color: #1a1a2e; }
.vk-why-desc { font-size: 14px; color: #555; line-height: 1.8; padding-left: 46px; }
.vk-why-desc ul { padding-left: 16px; margin: 6px 0 0; }
.vk-why-desc li { margin-bottom: 3px; color: #555; }

/* ========== Duration Cards ========== */
.vk-dur-section { background: transparent; padding: 60px 0; }
.vk-dur-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.vk-dur-card {
  padding: 24px 20px; background: #fafafa; border-radius: 12px;
  border: 1px solid #f0f0f0; transition: all 0.25s;
  position: relative; z-index: 1;
}
.vk-dur-card:hover { background: #fff; box-shadow: 0 6px 20px rgba(232,105,138,0.1); transform: translateY(-2px); border-color: rgba(232,105,138,0.2); }
.vk-dur-icon { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.vk-dur-card:hover .vk-dur-icon { animation: vk-icon-flip 0.6s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
@keyframes vk-icon-flip { 0% { transform: rotateY(0); } 100% { transform: rotateY(360deg); } }
.vk-dur-icon {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.vk-dur-card:nth-child(1) .vk-dur-icon { background: #fce7f3; color: #e8698a; }
.vk-dur-card:nth-child(2) .vk-dur-icon { background: #ede9fe; color: #7c3aed; }
.vk-dur-card:nth-child(3) .vk-dur-icon { background: #dcfce7; color: #10b981; }
.vk-dur-card:nth-child(4) .vk-dur-icon { background: #fef3c7; color: #f59e0b; }
.vk-dur-title { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; line-height: 1.45; padding-bottom: 10px; border-bottom: 1px dashed rgba(232,105,138,0.2); }
.vk-dur-desc { font-size: 12.5px; color: #666; line-height: 1.75; }
.vk-dur-desc ul { list-style: none !important; padding: 0 !important; margin: 8px 0 0 !important; }
.vk-dur-desc li { position: relative !important; padding-left: 16px !important; margin-bottom: 4px !important; font-size: 12px; color: #666; list-style: none !important; }
.vk-dur-desc li::before { content: '✓' !important; position: absolute !important; left: 0 !important; top: 0 !important; font-size: 11px; color: #e8698a; font-weight: 700; }
@media (max-width: 900px) { .vk-dur-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vk-dur-grid { grid-template-columns: 1fr; } }

/* ========== Related Articles ========== */
#related_articles .card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
#related_articles .card:hover { transform: translateY(-6px); box-shadow: 0 8px 28px rgba(0,0,0,0.15) !important; }

/* ========== Reviews ========== */
.vk-reviews { padding: 60px 0; }
.vk-reviews-desc { text-align: center; color: #666; margin-bottom: 40px; font-size: 14px; }
.vk-reviews-slider-wrapper { position: relative; padding: 0 50px; }
.vk-reviews-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(234,122,138,0.1); color: #ea7a8a; font-size: 18px; cursor: pointer; z-index: 10; transition: background 0.3s; }
.vk-reviews-nav:hover { background: rgba(234,122,138,0.2); }
.vk-reviews-prev { left: 0; }
.vk-reviews-next { right: 0; }
.vk-reviews-track-container { overflow: hidden; }
.vk-reviews-track { display: flex; transition: transform 0.3s ease; gap: 20px; }
.vk-review-slide { flex: 0 0 calc(33.333% - 14px); min-width: calc(33.333% - 14px); }
.vk-review-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border: 1px solid #eee; height: 100%; display: flex; flex-direction: column; }
.vk-review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; gap: 8px; }
.vk-review-user { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.vk-review-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,#ea7a8a,#b282fe); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 16px; flex-shrink: 0; }
.vk-review-user-info { min-width: 0; }
.vk-review-name { font-size: 16px; font-weight: bold; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #333; }
.vk-review-country { font-size: 13px; color: #999; margin: 0; }
.vk-review-platform { background: #ea7a8a; color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 12px; flex-shrink: 0; white-space: nowrap; }
.vk-review-rating { font-size: 16px; margin-bottom: 12px; color: #f5a623; }
.vk-review-text { font-size: 14px; color: #666; line-height: 1.6; flex: 1; }
.vk-review-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 12px; }
.vk-review-date { font-size: 12px; color: #999; margin: 0; }
@media (max-width: 768px) {
  .vk-review-slide { flex: 0 0 100% !important; min-width: 100% !important; }
  .vk-reviews-slider-wrapper { padding: 0; }
  .vk-reviews-track-container { padding: 0 15px; }
  .vk-reviews-nav { width: 36px; height: 36px; font-size: 16px; background: rgba(255,255,255,0.95); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
  .vk-reviews-prev { left: -5px; }
  .vk-reviews-next { right: -5px; }
  .vk-review-card { padding: 20px; }
  .vk-review-avatar { width: 42px; height: 42px; font-size: 14px; }
  .vk-review-name { font-size: 15px; }
  .vk-review-text { font-size: 13px; }
}

/* ========== FAQ ========== */
#faq_content .faq-block__header-title h4 { font-size: 16px; font-weight: 600; line-height: 1.5; margin: 0; }
#faq_content .faq-block__body-description p { font-size: 14px; line-height: 1.7; }
@media (max-width: 768px) {
  #faq_content .faq-block__header-title h4 { font-size: 14px; }
  #faq_content .faq-block__body-description p { font-size: 13px; }
}

/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
  /* 所有区块 h2 标题缩小 */
  #block_content h2 { font-size: 20px !important; }
  #block_content h2 + p { font-size: 13px !important; }

  /* 如何购买 - 间距调整已在 .vk-timeline 自身的 media query 中处理 */

  /* 为什么选择 - 缩小间距 */
  .vk-why-desc { padding-left: 0 !important; font-size: 13px; }
  .vk-why-title { font-size: 14px; }
  .vk-why-item { padding: 16px 0; }

  /* 效果持续 - 卡片文字 */
  .vk-dur-title { font-size: 14px; }
  .vk-dur-desc { font-size: 12px; }
  .vk-dur-section { padding: 40px 0; }

  /* 相关文章 */
  #related_articles { padding: 30px 0 !important; }
  #related_articles .card-body h5 { font-size: 14px !important; }
  #related_articles .card-body p { font-size: 13px !important; }

  /* 评论轮播 - 已在 .vk-reviews 自身样式中处理 */

  /* CTA 按钮 */
  .vk-cta-btn { padding: 12px 36px; font-size: 14px; }

  /* 各区块间距缩小 */
  .vk-svc-section { padding: 40px 0 !important; }
  #youtube-order-guide { padding: 40px 0 !important; }
  #youtube-why-fansgurus { padding: 30px 0 !important; }
}
