/* ========================================
   TPPL Newsletter Hub - BODY CONTENT
   ======================================== */

/* ========================================
   TWO COLUMN CONTENT LAYOUT
   ======================================== */

   .content-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .column-left,
  .column-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .section-block {
    margin: 0;
  }
  
  .section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  
  /* ========================================
     FEATURED CARDS - 2x2 Grid
     THICK GLOWING GRADIENT BORDERS
     ======================================== */
  
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .featured-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #22D3EE, #B794F4, #F472B6);
    border-radius: 20px;
    padding: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 280px;
    box-shadow: 0 0 30px rgba(183, 148, 244, 0.3),
                0 0 60px rgba(34, 211, 238, 0.2);
  }
  
  .featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(183, 148, 244, 0.5),
                0 0 80px rgba(34, 211, 238, 0.3);
  }
  
  .card-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-body {
    background: rgba(26, 10, 46, 0.95);
    padding: 0.875rem;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .card-tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
  }
  
  .tag-evergreen-1,
  .tag-investigation,
  .tag-investigations {
    background: rgba(34, 211, 238, 0.2);
    color: #22D3EE;
  }
  
  .tag-commentary,
  .tag-side-top {
    background: rgba(244, 114, 182, 0.2);
    color: #F472B6;
  }
  
  .tag-data,
  .tag-data-analysis,
  .tag-analysis,
  .tag-side-bottom {
    background: rgba(183, 148, 244, 0.2);
    color: #B794F4;
  }
  
  .tag-resource {
    background: rgba(214, 188, 250, 0.2);
    color: #D6BCFA;
  }
  
  .featured-card .card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.35rem 0;
    line-height: 1.25;
  }
  
  .card-excerpt {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  
  /* ========================================
     LIST CARDS - Side Top & Side Bottom
     THICK GLOWING GRADIENT BORDERS
     ======================================== */
  
  .list-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .list-card {
    display: block;
    border-radius: 20px;
    padding: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .list-card.commentary,
  .list-card.side-top {
    background: linear-gradient(135deg, #F472B6, #B794F4);
    box-shadow: 0 0 25px rgba(244, 114, 182, 0.3);
  }
  
  .list-card.data,
  .list-card.side-bottom {
    background: linear-gradient(135deg, #22D3EE, #B794F4);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.3);
  }
  
  .list-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(183, 148, 244, 0.4);
  }
  
  .list-card-inner {
    background: rgba(26, 10, 46, 0.95);
    padding: 0.875rem;
    border-radius: 10px;
  }
  
  .list-card .card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
  }
  
  .list-card .card-excerpt {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
  }
  
  /* ========================================
     RESOURCES SECTION
     THICK GLOWING GRADIENT BORDERS
     ======================================== */
  
  .resources-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
  }
  
  .resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .resource-card {
    display: block;
    background: linear-gradient(135deg, #D6BCFA, #B794F4);
    border-radius: 18px;
    padding: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 20px rgba(214, 188, 250, 0.25);
  }
  
  .resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(183, 148, 244, 0.4);
  }
  
  .resource-card-inner {
    background: rgba(26, 10, 46, 0.9);
    padding: 0.75rem;
    border-radius: 10px;
  }
  
  .resource-card .card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
  }
  
  /* ========================================
     CTA FOOTER
     ======================================== */
  
  .cta-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }
  
  .cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #F472B6, #B794F4);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
  }
  
  .cta-link {
    color: #22D3EE;
    font-size: 0.8rem;
    text-decoration: none;
  }
  
  .cta-link:hover {
    text-decoration: underline;
  }
  
  /* ========================================
     BODY RESPONSIVE
     ======================================== */
  
  @media (max-width: 1024px) {
    .content-wrapper {
      grid-template-columns: 1fr;
    }
    
    .featured-grid {
      grid-template-columns: 1fr;
    }
    
    .resources-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .content-wrapper {
      padding: 1rem;
    }
    
    .resources-grid {
      grid-template-columns: 1fr;
    }
    
    .cta-footer {
      flex-direction: column;
      gap: 1rem;
    }
  }