
  .article-page { padding-bottom: 4rem; }

  /* Header */
  .article-header {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid #f3e8ec;
  }
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* Breadcrumb */
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 1.25rem;
  }
  .breadcrumb a { color: #6b7280; }
  .breadcrumb a:hover { color: #374151; }
  .separator { opacity: 0.5; }

  /* Meta Top */
  .article-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .category-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
  }
  .read-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: #6b7280;
  }

  /* Title */
  .article-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
    max-width: 900px;
    position: relative;
  }
  .article-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-primary), var(--green-primary));
    border-radius: 2px;
    margin-top: 0.75rem;
  }
  .article-description {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
  }

  /* Byline */
  .article-byline {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e879a9, #f472b6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
  }
  .byline-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .author-name {
    font-size: 0.95rem;
    color: #374151;
  }
  .author-name strong { font-weight: 600; }
  .reviewer {
    font-size: 0.85rem;
    color: #16a34a;
  }
  .byline-dates {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-left: auto;
  }
  .updated { color: #16a34a; }

  /* AI Disclosure */
  .ai-disclosure {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #166534;
  }

  /* Featured Image */
  .featured-image-container {
    padding: 2rem 0;
    background: #fff;
  }
  .featured-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
  }

  /* Content Layout */
  .article-content-wrapper { padding: 2rem 0; }
  .article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
  }
  @media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { display: none; }
  }

  /* Article Body */
  .article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
  }
  .article-body h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
    padding-top: 0.5rem;
  }
  .article-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 0.75rem;
  }
  .article-body p { margin-bottom: 1.5rem; }
  .article-body ul, .article-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
  }
  .article-body li { margin-bottom: 0.75rem; }
  .article-body a { color: #d65c8a; font-weight: 500; }
  .article-body a:hover { text-decoration: underline; }
  .article-body strong { font-weight: 600; color: #1f2937; }
  .article-body blockquote {
    border-left: 4px solid var(--pink-primary);
    padding: 1.25rem 1.5rem;
    background: var(--cream);
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--text-secondary);
  }
  .article-body img {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 1.5rem 0;
  }

  /* Tags */
  .article-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f3e8ec;
  }
  .tags-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
  }
  .tags-list { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .tag {
    background: #fdf2f8;
    color: #d65c8a;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
  }
  .tag:hover {
    background: #fce7ef;
    transform: translateY(-1px);
  }

  /* Actions */
  .article-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  .share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
  }
  .share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
  }
  .share-btn:hover { background: #e5e7eb; }

  /* Sidebar */
  .sidebar-sticky {
    position: sticky;
    top: var(--header-height, 5rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .sidebar-card {
    background: #fff;
    border: 1px solid #f3e8ec;
    border-radius: 12px;
    padding: 1.5rem;
  }
  .sidebar-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 1rem;
  }
  .sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .sidebar-links a {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s;
  }
  .sidebar-links a:hover { color: #d65c8a; }
  .sidebar-links a:last-child { border-bottom: none; }

  /* Sidebar Related Articles */
  .sidebar-related { padding: 1.25rem; }
  .sidebar-related-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .sidebar-related-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s;
  }
  .sidebar-related-item:last-child { border-bottom: none; }
  .sidebar-related-item:hover .sidebar-related-title { color: #d65c8a; }
  .sidebar-related-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .sidebar-related-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.3;
    transition: color 0.2s;
  }

  /* Medical Disclaimer */
  .medical-disclaimer {
    background: #fef9c3;
    border: 1px solid #fde047;
    border-radius: 8px;
    padding: 1rem;
    margin: 2rem 0;
    font-size: 0.85rem;
    color: #92400e;
  }

  /* Related Articles Section */
  .related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f3e8ec;
  }
  .you-may-also-like {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed #f3e8ec;
  }
  .related-excerpt {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .related-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
  }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  .related-card {
    background: #fff;
    border: 1px solid #f3e8ec;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
  }
  .related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #e879a9;
  }
  .related-image {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
  }
  .related-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
  }
  .related-article-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Newsletter Widget */
  .newsletter-widget {
    background: var(--cream-dark);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--pink-primary);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .newsletter-icon {
    width: 48px;
    height: 48px;
    background: var(--text-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    flex-shrink: 0;
  }
  .newsletter-content {
    flex: 1;
    min-width: 200px;
  }
  .newsletter-content h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
  }
  .newsletter-content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
  }
  .newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .newsletter-form input {
    padding: 0.6rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    min-width: 200px;
    flex: 1;
  }
  .newsletter-form input:focus {
    outline: none;
    border-color: #d65c8a;
    box-shadow: 0 0 0 2px rgba(214, 92, 138, 0.1);
  }
  .newsletter-form button {
    padding: 0.6rem 1.25rem;
    background: var(--text-primary);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }
  .newsletter-form button:hover {
    background: var(--pink-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(214, 92, 138, 0.3);
  }
  .newsletter-form button:disabled {
    background: #9ca3af;
    cursor: default;
    transform: none;
    box-shadow: none;
  }
  @media (max-width: 600px) {
    .newsletter-widget {
      flex-direction: column;
      text-align: center;
    }
    .newsletter-form {
      width: 100%;
      justify-content: center;
    }
    .newsletter-form input {
      width: 100%;
    }
  }

  /* Citations */
  .article-citations {
    margin: 2.5rem 0 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
  }
  .citations-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
  }
  .citations-list {
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
  }
  .citations-list li { margin-bottom: 0.75rem; }
  .citations-list a { color: #d65c8a; word-break: break-word; }
  .citation-source { color: #6b7280; font-style: italic; }
  .citation-date { color: #9ca3af; font-size: 0.8rem; }

  /* Table of Contents */
  .toc-card { padding: 1.25rem; }
  .toc-card h4 { margin-bottom: 0.75rem; }
  .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
  }
  .toc-list li { margin-bottom: 0.4rem; }
  .toc-list a {
    color: #4b5563;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s;
  }
  .toc-list a:hover { color: #d65c8a; }
  .toc-h3 { padding-left: 0.85rem; font-size: 0.82rem; }
  .toc-empty { color: #9ca3af; font-size: 0.85rem; margin: 0; }

  /* Mobile Responsive Fixes */
  @media (max-width: 768px) {
    /* Article body text minimum 16px */
    .article-body {
      font-size: 1rem;
      line-height: 1.75;
    }
    .article-body h2 {
      font-size: 1.35rem;
    }
    .article-body h3 {
      font-size: 1.15rem;
    }
    .article-body p {
      margin-bottom: 1.25rem;
    }
    .article-body img {
      max-width: 100%;
      width: 100%;
      height: auto;
    }

    /* Touch targets - minimum 44px */
    .share-btn {
      min-height: 44px;
      min-width: 44px;
      padding: 0.75rem 1rem;
      font-size: 1rem;
    }
    .tag {
      min-height: 44px;
      display: flex;
      align-items: center;
      font-size: 1rem;
      padding: 0.5rem 1rem;
    }
    .article-tags {
      gap: 0.75rem;
    }
    .tags-label {
      font-size: 1rem;
    }

    /* Featured image - no overflow */
    .featured-image {
      max-width: 100%;
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    /* Related cards - touch targets */
    .related-card {
      min-height: 44px;
    }

    /* Newsletter widget touch targets */
    .newsletter-form button {
      min-height: 44px;
      min-width: 44px;
    }
  }

  /* Extra small screens */
  @media (max-width: 480px) {
    .article-title {
      font-size: 1.5rem;
    }
    .article-description {
      font-size: 1rem;
    }
    .related-grid {
      grid-template-columns: 1fr;
    }
  }
  

