/* Paywall overlay styles — shared across all insights articles */

.paywall-wrapper {
  position: relative;
  margin: 0;
}

.paywall-gradient {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0A0A0F);
  pointer-events: none;
  z-index: 1;
}

.paywall-card {
  position: relative;
  z-index: 2;
  background: #0E0E14;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.paywall-lock-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.paywall-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #E8E8E8;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.paywall-subline {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.paywall-form {
  margin-bottom: 28px;
}

.paywall-email-row {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}

.paywall-email-row input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: #161620;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  color: #E8E8E8;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.paywall-email-row input[type="email"]::placeholder {
  color: #555;
}

.paywall-email-row input[type="email"]:focus {
  border-color: #C9A84C;
}

.paywall-submit-btn {
  padding: 14px 24px;
  background: #C9A84C;
  color: #0A0A0F;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
}

.paywall-submit-btn:hover {
  background: #D4B85A;
}

.paywall-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.paywall-error {
  color: #E05252;
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
}

.paywall-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.paywall-divider::before,
.paywall-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #2A2A2A;
}

.paywall-divider span {
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.paywall-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.paywall-cta-text {
  font-size: 14px;
  color: #888;
}

.paywall-stripe-btn {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #C9A84C;
  border: 1.5px solid #C9A84C;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.paywall-stripe-btn:hover {
  background: #C9A84C;
  color: #0A0A0F;
}

.paywall-fine-print {
  font-size: 11px;
  color: #444;
  margin: 20px 0 0;
}

@media (max-width: 600px) {
  .paywall-card {
    padding: 32px 24px;
  }
  .paywall-email-row {
    flex-direction: column;
  }
  .paywall-submit-btn {
    width: 100%;
  }
}