/* ========================================
   TPPL Newsletter Hub - Hero Section
   ======================================== */

   .newsletter-hub-page {
    background: #1a0a2e;
    min-height: 100vh;
  }
  
  /* ========================================
     HERO - Medium Height (Matches Mockup)
     ======================================== */
  
  .newsletter-hero {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3d1f6e 0%, #1a0a2e 100%);
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(183, 148, 244, 0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(244, 114, 182, 0.35) 0%, transparent 60%);
  }
  
  /* Flowing Purple Wave */
  .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, 
      rgba(183, 148, 244, 0.3) 0%, 
      rgba(244, 114, 182, 0.25) 50%, 
      transparent 100%);
    clip-path: ellipse(80% 100% at 100% 50%);
    opacity: 0.8;
  }
  
  .geometric-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .shape {
    position: absolute;
    opacity: 0.25;
    filter: drop-shadow(0 0 20px currentColor);
  }
  
  .shape-1 {
    width: 80px;
    height: 80px;
    background: #B794F4;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    top: 15%;
    left: 10%;
  }
  
  .shape-2 {
    width: 60px;
    height: 60px;
    background: #22D3EE;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    top: 65%;
    right: 15%;
    transform: rotate(180deg);
  }
  
  .shape-3 {
    width: 90px;
    height: 90px;
    background: #F472B6;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    bottom: 20%;
    left: 25%;
    transform: rotate(60deg);
  }
  
  .shape-4 {
    width: 50px;
    height: 50px;
    background: #B794F4;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    top: 30%;
    right: 30%;
  }
  
  .shape-5 {
    width: 70px;
    height: 70px;
    background: #22D3EE;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    bottom: 30%;
    right: 10%;
    transform: rotate(-30deg);
  }
  
  .shape-6 {
    width: 55px;
    height: 55px;
    background: #F472B6;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    top: 50%;
    left: 40%;
    transform: rotate(120deg);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-left {
    text-align: left;
  }
  
  .badge-text {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: #F472B6;
    text-transform: uppercase;
    display: block;
  }
  
  .hero-right {
    text-align: right;
  }
  
  .issue-title {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .issue-date {
    font-size: 0.95rem;
    color: rgba(233, 213, 255, 0.85);
    margin: 0;
  }
  
  /* ========================================
     RESPONSIVE - Hero Only
     ======================================== */
  
  @media (max-width: 1024px) {
    .newsletter-hero {
      padding: 3rem 2rem;
    }
    
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }
    
    .hero-left,
    .hero-right {
      text-align: center;
    }
    
    .badge-text {
      font-size: 3rem;
    }
    
    .issue-title {
      font-size: 1.65rem;
    }
  }
  
  @media (max-width: 600px) {
    .newsletter-hero {
      padding: 2rem 1.5rem;
    }
    
    .badge-text {
      font-size: 2.25rem;
    }
    
    .issue-title {
      font-size: 1.4rem;
    }
  }