/* ========================================
   ARTICLE LAYOUT – PICKS CURATED - UPDATED
   Big title + Better styling
======================================== */

/* Container */
.article-single .container {
    max-width: 1200px;
}

/* ===========================
   1. BREADCRUMBS & HEADER
=========================== */

.article-breadcrumbs {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}

.article-breadcrumbs nav {
    font-size: 0.8rem;
    color: #6b7280;
}

.article-breadcrumbs a {
    color: #4b5563;
    text-decoration: none;
}

.article-breadcrumbs a:hover {
    color: #111827;
}

/* Header */
.article-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 2rem 0;
}

/* ==================================
   TITLE - Normal Professional Size
   Ultra-specific to avoid affecting site header
   ================================== */

/* ONLY target article title inside article.article-single */
article.article-single header.article-header h1.article-title {
    font-size: 1.75rem;  /* 28px mobile - normal */
    font-weight: 700;    /* Bold */
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: #111827;
    margin-bottom: 1rem;
    max-width: 900px;
}

@media (min-width: 768px) {
    article.article-single header.article-header h1.article-title {
        font-size: 2rem;  /* 32px tablet - normal */
    }
}

@media (min-width: 1024px) {
    article.article-single header.article-header h1.article-title {
        font-size: 2.25rem;  /* 36px desktop - normal */
        line-height: 1.25;
    }
}



/* Widen main content on large screens */
@media (min-width: 1024px) {
  .article-single .lg\:col-span-8 .article-body {
    max-width: 780px;
  }
}

.article-subtitle {
    font-size: 1.25rem;  /* Slightly bigger */
    line-height: 1.6;
    color: #4b5563;
    max-width: 42rem;
    margin-bottom: 1.5rem;
}

/* Meta */
.article-meta {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  margin-top: 1.5rem;
}

.article-meta .meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.article-meta .meta-value {
  font-size: 0.9rem;  /* Slightly bigger */
  color: #4b5563;
  font-weight: 600;  /* More emphasis */
}

/* ===========================
   2. FEATURED IMAGE
=========================== */

.article-featured-image {
    padding: 1.5rem 0 0;
    margin-bottom: 2.5rem;  /* More space */
}

.featured-image-figure {
    border-radius: 1rem;  /* Slightly more rounded */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);  /* Add subtle shadow */
}

.article-featured-image img,
.featured-image {
    width: 100%;
    max-width: 800px;  /* Slightly wider */
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 12px;
    display: block;
}

@media (min-width: 1024px) {
    .featured-image {
        height: 420px;  /* Slightly taller */
    }
}

/* ===========================
   3. CONTENT AREA
=========================== */

.article-content-wrapper {
  background: #ffffff;
  padding: 2.25rem 0 4rem;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.0625rem;  /* Slightly bigger */
    line-height: 1.8;
    color: #111827;
}

/* First paragraph – slightly larger intro */
.article-body > p:first-of-type {
  font-size: 1.25rem;  /* Bigger intro */
  line-height: 1.75;
  color: #111827;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 2.25rem;
}

/* Paragraph spacing */
.article-body p {
    margin-bottom: 1.6rem;
}

/* ===========================
   4. HEADINGS - IMPROVED
=========================== */

.article-body h2 {
    font-size: 2rem;  /* Bigger */
    font-weight: 800;  /* Bolder */
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.5rem;  /* Bigger */
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #111827;
    line-height: 1.4;
}

.article-body h4 {
    font-size: 1.25rem;  /* Bigger */
    font-weight: 600;
    margin-top: 2.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* ===========================
   5. TABLES
=========================== */

.article-body table {
    width: 100%;
    margin: 2.5rem 0;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    border-radius: 8px;  /* Rounded corners */
    overflow: hidden;
}

.article-body thead {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.article-body thead th {
    padding: 1rem 0.875rem;  /* More padding */
    text-align: left;
    font-weight: 700;  /* Bolder */
    color: #374151;
}

.article-body tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.15s ease;  /* Smooth hover */
}

.article-body tbody tr:hover {
    background: #f9fafb;
}

.article-body tbody td {
    padding: 1rem 0.875rem;  /* More padding */
    color: #374151;
}

.article-body tbody td:first-child {
    font-weight: 600;  /* Bolder */
    color: #111827;
}

/* ===========================
   6. IMAGES & FIGCAPTION
=========================== */

.article-body img {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    object-fit: cover;
    border-radius: 8px;  /* Rounded */
}

.article-body figure {
    margin: 2.5rem 0;
}

.article-body figcaption {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.75rem;  /* More space */
    font-style: italic;
}

/* ===========================
   7. LINKS & LISTS
=========================== */

.article-body a {
    color: #2563eb;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.15s ease;
}

.article-body a:hover {
    color: #1d4ed8;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.75rem;  /* More space */
    line-height: 1.7;
}

/* ===========================
   8. BLOCKQUOTES - IMPROVED
=========================== */

.article-body blockquote {
    border-left: 4px solid #667eea;  /* Purple accent */
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ===========================
   9. SIDEBAR (TOC + SHARE)
=========================== */

.article-sidebar-inner {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-bottom: 0.5rem;
}

.toc-widget,
.share-widget {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem 1.25rem 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);  /* Subtle shadow */
}

.toc-title,
.share-title {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.toc-widget .toc-list {
  max-height: 320px;  /* Taller */
  overflow-y: auto;
  padding-right: 0.25rem;
}

.toc-list a {
  display: block;
  font-size: 0.875rem;
  color: #374151;
  padding: 0.45rem 0.45rem 0.45rem 0.75rem;  /* More padding */
  border-radius: 0.5rem;  /* More rounded */
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.toc-list a:hover {
  border-left-color: #667eea;  /* Purple */
  color: #111827;
  background: #f9fafb;
}

.toc-list a.active {
  border-left-color: #667eea;
  background: #eff6ff;
  color: #667eea;
  font-weight: 600;
}

/* Share buttons */
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.875rem;  /* More padding */
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;  /* Bolder */
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);  /* Shadow */
}

.share-btn span {
    position: relative;
    top: 1px;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn-twitter {
    background: #1d9bf0;
}

.share-btn-facebook {
    background: #1877f2;
}

.share-btn-linkedin {
    background: #0a66c2;
}

/* ===========================
   10. FEATURED PRODUCTS
=========================== */

.article-featured-products {
  margin: 3rem 0;  /* More space */
  padding: 2rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
}

.featured-products-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

/* ===========================
   11. RESPONSIVE
=========================== */

@media (max-width: 768px) {
    .article-header {
        padding: 1.5rem 0;
    }
    
    .article-title {
        font-size: 2.25rem !important;  /* 36px mobile */
    }
    
    .article-subtitle {
        font-size: 1.125rem;
    }
    
    .article-content-wrapper {
        padding: 2.5rem 0 3rem;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body > p:first-of-type {
        font-size: 1.125rem;
    }

    .article-sidebar-inner {
        max-height: none;
        overflow: visible;
        margin-bottom: 2rem;
    }
}

/* ===========================
   12. PRINT
=========================== */

@media print {
    .toc-widget,
    .share-widget {
        display: none !important;
    }

    .article-content-wrapper {
        padding: 0;
    }

    .article-body {
        max-width: 100%;
        font-size: 0.9rem;
    }
    
    .article-title {
        font-size: 2rem !important;
    }
}

/* ==================================
   13. PRICE TRACKER IN ARTICLES
   ================================== */

.article-single .price-tracker-widget {
  border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  padding: 1.25rem 1.25rem 1.1rem;
}

.article-single .price-tracker-widget .widget-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.article-single .price-amount {
  font-size: 1.8rem;
}

.article-single #pcCurrentProductName {
  font-size: 0.8rem;
  line-height: 1.4;
  max-height: 2.8em;
  overflow: hidden;
}

.article-single .price-product-row {
  font-size: 0.8rem;
  padding: 0.3rem 0.4rem;
}

.article-single .editor-badge {
  font-size: 0.68rem;
  padding: 1px 6px;
}

/* ============================
   14. TOP PICKS AT A GLANCE
   ============================ */

.article-top-picks {
    margin: 2.5rem 0 2rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;  /* More rounded */
    padding: 1.75rem 2rem;  /* More padding */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-top-picks__inner {
    max-width: 960px;
    margin: 0 auto;
}

.article-top-picks__header {
    margin-bottom: 1.5rem;  /* More space */
}

.article-top-picks__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #667eea;  /* Purple accent */
    margin-bottom: 0.5rem;
}

.article-top-picks__title {
    font-size: 1.5rem;  /* Bigger */
    font-weight: 800;  /* Bolder */
    margin: 0 0 0.5rem;
    color: #111827;
}

.article-top-picks__subtitle {
    margin: 0;
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
}

.article-top-picks__list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.article-top-picks__item {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 1rem 0;  /* More padding */
    border-top: 1px solid #e5e7eb;
    transition: background 0.15s ease;
}

.article-top-picks__item:first-child {
    border-top: none;
}

.article-top-picks__item:hover {
    background: rgba(102, 126, 234, 0.02);  /* Subtle hover */
}

.article-top-picks__rank {
    font-size: 0.875rem;
    font-weight: 800;  /* Bolder */
    color: #667eea;  /* Purple */
    min-width: 2rem;
}

.article-top-picks__media {
    width: 80px;  /* Slightly bigger */
    height: 80px;
    border-radius: 0.5rem;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.article-top-picks__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.article-top-picks__image--placeholder {
    font-size: 0.7rem;
    color: #6b7280;
}

.article-top-picks__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;  /* More space */
}

.article-top-picks__name {
    font-size: 1rem;  /* Bigger */
    font-weight: 600;
    margin: 0;
    color: #111827;
    line-height: 1.4;
}

.article-top-picks__name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.article-top-picks__name a:hover {
    color: #667eea;  /* Purple */
}

.article-top-picks__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.875rem;  /* More space */
    align-items: center;
    font-size: 0.8125rem;
    color: #6b7280;
}

.article-top-picks__source {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: #eff6ff;  /* Light blue */
    color: #667eea;  /* Purple */
    font-weight: 600;
    font-size: 0.75rem;
}

.article-top-picks__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.article-top-picks__rating-value {
    font-weight: 700;  /* Bolder */
    color: #111827;
}

.article-top-picks__rating-stars {
    letter-spacing: 0.04em;
    font-size: 0.75rem;
    color: #fbbf24;
}

.article-top-picks__note {
    opacity: 0.9;
}

.article-top-picks__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;  /* More space */
    gap: 0.875rem;
}

.article-top-picks__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.article-top-picks__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.article-top-picks__price {
    font-size: 1.125rem;  /* Bigger */
    font-weight: 800;  /* Bolder */
    color: #111827;
}

.article-top-picks__price--na {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #667eea;  /* Purple */
}

.article-top-picks__price-original {
    font-size: 0.8125rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.article-top-picks__badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #047857;
    background: #d1fae5;  /* Lighter green */
    border-radius: 999px;
    padding: 0.15rem 0.625rem;
    display: inline-flex;
    align-items: center;
}

.article-top-picks__cta-wrap {
    flex-shrink: 0;
}

.article-top-picks__buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.125rem;  /* More padding */
    border-radius: 999px;
    background: #f97316;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;  /* Bolder */
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.3);
    transition: all 0.2s ease;
}

.article-top-picks__buy-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.4);
}

.article-top-picks__buy-arrow {
    font-size: 1rem;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .article-top-picks {
        padding: 1.5rem 1.25rem;
        margin: 2rem 0 1.5rem;
    }

    .article-top-picks__item {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-rows: auto auto;
        padding: 0.875rem 0;
    }

    .article-top-picks__media {
        grid-row: span 2;
        width: 70px;
        height: 70px;
    }

    .article-top-picks__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-top-picks__buy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PICKS CURATED - HUGE ARTICLE TITLE FIX
   Custom CSS for PicksCurated.com
   Copy this ENTIRE block to Additional CSS
   ======================================== */


/* ==================================
   2. STYLE THE ARTICLE HEADER AREA
   ================================== */

/* Add gradient background to header area */
.single-article .article-header,
.single-post .entry-header,
body.single .entry-header {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%) !important;
    padding: 2rem 1.5rem !important;
    margin-bottom: 2rem !important;
    border-radius: 0 !important;
}

@media (min-width: 768px) {
    .single-article .article-header,
    .single-post .entry-header,
    body.single .entry-header {
        padding: 3rem 2rem !important;
    }
}

/* ==================================
   3. IMPROVE META INFORMATION
   ================================== */

/* Make author/date info more prominent */
.single-article .entry-meta,
.single-post .entry-meta,
body.single .entry-meta,
.article-meta {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    font-size: 1rem !important;
    color: #6b7280 !important;
    padding: 1rem 0 !important;
    border-top: 1px solid #e5e7eb !important;
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
}

/* Author avatar */
.entry-meta img,
.article-meta img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 2px solid #e5e7eb !important;
}

/* ==================================
   4. BREADCRUMBS IMPROVEMENT
   ================================== */

/* Make breadcrumbs more visible */
.breadcrumbs,
.breadcrumb,
nav.breadcrumb {
    font-size: 0.875rem !important;
    color: #6b7280 !important;
    margin-bottom: 1.5rem !important;
    padding: 0.75rem 0 !important;
}

.breadcrumbs a,
.breadcrumb a {
    color: #667eea !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.breadcrumbs a:hover,
.breadcrumb a:hover {
    text-decoration: underline !important;
}

/* ==================================
   5. ADD READING TIME BADGE
   ================================== */

/* Style the "21 min read" badge */
.entry-meta .reading-time,
.article-meta .reading-time,
[class*="reading-time"],
[class*="read-time"] {
    background: #eff6ff !important;
    color: #667eea !important;
    padding: 0.375rem 0.75rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
}

/* ==================================
   6. CATEGORY/TAG STYLING
   ================================== */

/* If you have category badges */
.entry-meta .category,
.article-meta .category,
.post-categories a {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    padding: 0.375rem 0.875rem !important;
    border-radius: 20px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

/* ==================================
   7. REMOVE ANY CONFLICTING STYLES
   ================================== */

/* Remove any boxes, borders, backgrounds from title */
article.article-single h1.article-title {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    background: none !important;
    background-color: transparent !important;
}

/* ==================================
   8. ADD SUBTITLE STYLING
   ================================== */

/* If you have subtitles/excerpts */
.article-subtitle,
.entry-subtitle,
.post-excerpt {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 400 !important;
}

@media (min-width: 768px) {
    .article-subtitle,
    .entry-subtitle,
    .post-excerpt {
        font-size: 1.375rem !important;
    }
}

/* ==================================
   9. IMPROVE CONTENT TYPOGRAPHY
   ================================== */

/* Make first paragraph bigger */
.single-article .entry-content > p:first-of-type,
.single-post .entry-content > p:first-of-type,
.article-body > p:first-of-type {
    font-size: 1.25rem !important;
    line-height: 1.75 !important;
    color: #111827 !important;
    margin-bottom: 2rem !important;
}

/* Better heading sizes in content */
.single-article h2,
.single-post h2,
.entry-content h2 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    margin-top: 3rem !important;
    margin-bottom: 1.5rem !important;
    color: #111827 !important;
}

.single-article h3,
.single-post h3,
.entry-content h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1.25rem !important;
    color: #111827 !important;
}

/* ==================================
   10. FEATURED IMAGE STYLING
   ================================== */

/* Make featured image more impactful */
.post-thumbnail,
.featured-image,
.wp-post-image {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    margin: 2rem 0 3rem !important;
}

/* ==================================
   11. MOBILE OPTIMIZATIONS
   ================================== */

@media (max-width: 767px) {
    /* Ensure title is still impressive on mobile */
    article.article-single h1.article-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    /* Reduce header padding on mobile */
    .single-article .article-header,
    .single-post .entry-header {
        padding: 1.5rem 1rem !important;
    }
    
    /* Stack meta items on mobile */
    .entry-meta,
    .article-meta {
        flex-wrap: wrap !important;
    }
}

/* ==================================
   12. PRINT STYLES
   ================================== */

@media print {
    article.article-single h1.article-title {
        font-size: 2rem !important;
        color: #000 !important;
    }
}