/* ================================
   Der言der语 · Glass Card Style
   （仅用于特定文章，不影响全站）
   ================================ */

.post-content blockquote {
  position: relative;

  /* 🌫️ 更稳的玻璃层 */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.82),
    rgba(245, 247, 250, 0.72)
  );

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 16px;
  padding: 22px 26px;
  margin: 28px 0;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 5px solid #A31F34;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 0 10px rgba(163, 31, 52, 0.12);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  overflow: hidden;

  /* 🧠 防止和拖影/波纹冲突闪烁 */
  will-change: transform;
}

/* 顶部渐变光效 */
.post-content blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #A31F34, #ff7a9c, #A31F34);
  opacity: 0.85;
}

/* 装饰引号（弱化一点避免抢视觉） */
.post-content blockquote::after {
  content: "“";
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 64px;
  color: rgba(163, 31, 52, 0.06);
  font-family: Georgia, serif;
  pointer-events: none;
}

/* hover（更克制一点，避免和鼠标拖影冲突） */
.post-content blockquote:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.12),
    0 0 14px rgba(163, 31, 52, 0.18);
}

/* 强调文字 */
.post-content blockquote strong {
  color: #A31F34;
  font-weight: 600;
}

/* 段落 */
.post-content blockquote p {
  margin: 10px 0;
  line-height: 1.8;
}

/* 列表 */
.post-content blockquote ul {
  padding-left: 20px;
  margin: 8px 0;
}

.post-content blockquote li {
  margin: 6px 0;
}

/* 分割线 */
.post-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(163, 31, 52, 0.35),
    transparent
  );
  margin: 40px 0;
}

/* ================================
   🌙 深色模式（更稳定版本）
   ================================ */

[data-theme="dark"] .post-content blockquote {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.82),
    rgba(15, 23, 42, 0.82)
  );

  border-left: 5px solid #ff4d6d;
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.55),
    0 0 12px rgba(255, 77, 109, 0.15);
}

[data-theme="dark"] .post-content blockquote strong {
  color: #ff8fa3;
}

[data-theme="dark"] .post-content blockquote::before {
  background: linear-gradient(90deg, #ff4d6d, #ff8fa3, #ff4d6d);
}

[data-theme="dark"] .post-content blockquote::after {
  color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .post-content hr {
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 77, 109, 0.35),
    transparent
  );
}