/* Newsletter Banner Styles */
.newsletter-banner {
  max-width: 100%;
  
  padding: 57px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg,
    rgba(var(--brand-emerald-rgb), 0.08) 0%,
    rgba(var(--brand-blue-rgb), 0.06) 100%
  );
  border: 1px solid var(--glass-border-medium);
  box-shadow: 0 4px 20px rgba(var(--brand-emerald-rgb), 0.08);
  display: grid;
  grid-template-columns: 1fr 340px auto;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.newsletter-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, var(--accent-alpha-05) 100%);
  pointer-events: none;
}

.newsletter-copy {
  margin: 0;
  font-size: 60px;
  font-weight: 500;
  color: var(--fg-dim);
  line-height: 1.4;
  white-space: nowrap;
  padding-left: 50px;
}

.highlight {
  color: var(--brand-emerald);
  font-weight: 600;    
  background: linear-gradient(219deg, var(--brand-emerald), var(--brand-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-input {
  width: 320px;
  position: relative;
}

.newsletter-email {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  border: 2px solid rgba(var(--brand-emerald-rgb), 0.2);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--blur-md);
  color: #1f2937;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(var(--brand-emerald-rgb), 0.1);
}

.newsletter-email:focus {
  border-color: var(--brand-emerald);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(var(--brand-emerald-rgb), 0.1), 0 4px 12px rgba(var(--brand-emerald-rgb), 0.15);
  transform: translateY(-1px);
}

.newsletter-email::placeholder { 
  color: #9ca3af;
  font-weight: 400;
}

.newsletter-actions { 
  display: flex;
  align-items: center;
  margin-right: 55px;
}

.newsletter-btn {
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient-brand);
  border: 1px solid var(--brand-emerald-hover);
  border-radius: var(--radius);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(var(--brand-emerald-rgb), 0.18);
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--brand-emerald-rgb), 0.28);
  background: linear-gradient(135deg, var(--brand-emerald-hover), var(--brand-blue));
}

@media (max-width: 768px) {
  .newsletter-banner { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 16px;
    padding: 20px 16px;
    min-height: auto;
  }
  .newsletter-actions { 
    justify-content: center; 
  }
  .newsletter-input { 
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .newsletter-copy {
    white-space: normal;
    text-align: center;
    font-size: 38px !important;
    padding-left: 0;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .newsletter-copy {
    font-size: 28px !important;
    line-height: 1.1;
  }
}