/* ===== Therapist Card Template (Luxury Blue) ===== */
.therapist-card{
  border-radius: 16px;
  padding: 18px;
  background: #0b1f3b;          /* 高贵蓝底 */
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  overflow: hidden;
}

.therapist-card .wp-block-image img{
  width: 100%;
  aspect-ratio: 4 / 5;          /* 统一照片比例 */
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.therapist-card h3{
  margin: 14px 0 6px;
  font-size: 20px;
  line-height: 1.2;
}

.therapist-card p{
  margin: 0 0 12px;
  opacity: .88;
  font-size: 14px;
}

.therapist-card ul{
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 14px;
  opacity: .95;
}

.therapist-card .wp-block-buttons{
  gap: 10px;                    /* 按钮间距 */
}

.therapist-card .wp-block-button__link{
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
  line-height: 1;
}

/* 让按钮在卡片内更“高级”：半透明 + 描边 */
.therapist-card .wp-block-button__link{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
}

/* hover */
.therapist-card .wp-block-button__link:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}
/* 三按钮容器 */
.cta-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  width:100%;
  margin:22px auto;
  flex-wrap:wrap;
}

/* 统一 WhatsApp 绿按钮 */
.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  min-width:120px;
  padding:12px 16px;

  font-size:15px;
  font-weight:700;
  letter-spacing:.2px;

  color:#fff !important;
  text-decoration:none !important;

  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);

  /* WhatsApp 官方绿系渐变（非常克制） */
  background: linear-gradient(
    135deg,
    #25D366 0%,
    #1EBE5A 100%
  );

  box-shadow:
    0 10px 24px rgba(37,211,102,.35),
    inset 0 1px 0 rgba(255,255,255,.22);

  transition: transform .18s ease,
              box-shadow .18s ease,
              filter .18s ease;
  -webkit-tap-highlight-color: transparent;
}

/* 悬停：轻微抬起 */
.cta-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 14px 30px rgba(37,211,102,.45),
    inset 0 1px 0 rgba(255,255,255,.26);
}

/* 点击：按压感 */
.cta-btn:active{
  transform: translateY(0);
  filter: brightness(0.97);
}

/* 键盘聚焦（可访问性） */
.cta-btn:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 3px rgba(37,211,102,.35),
    0 12px 28px rgba(37,211,102,.4);
}

/* 手机端微调 */
@media (max-width: 480px){
  .cta-btn{
    min-width:140px;
    padding:12px 14px;
    border-radius:16px;
  }
}

/* 强制放大：覆盖大多数主题对图片说明文字的样式 */
.wp-element-caption,
figcaption,
.wp-block-image figcaption,
.wp-block-image .wp-element-caption,
.wp-caption-text {
  font-size: 15px !important;
  line-height: 1 !important;
}

/* 可选：让说明文字更清晰、更像“正式说明” */
.wp-block-image figcaption,
.wp-element-caption,
.wp-caption-text {
  color: #fff !important;
  margin-top: 8px !important;
  text-align: center !important;
}
/* 隐藏“向作者赠送套餐” */
#wp-admin-bar-send-gift,
#wp-admin-bar-gift,
#wp-admin-bar-author-gift {
  display: none !important;
}
