.p-section-title {
  font-size: 2.1rem;
}

.p-section-title__en {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent-bright);
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}

.p-section-title__en::after {
  content: '_';
  color: var(--color-brand-green);
  animation: p-blink-caret 1.1s steps(1) infinite;
}

@keyframes p-blink-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.p-section-title__en::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-brand-green));
}

.p-section-lead {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 640px;
}

@media (max-width: 768px) {
  .p-section-title {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-section-title__en::after {
    animation: none;
  }
}
