/* ============================================
   HEALTHY HORMONES CLUB - BLOG STYLES
   Premium, Professional Blog Design
   ============================================ */

/* ---------- Blog Listing Page ---------- */
.blog-hero {
    padding: 140px 0 60px;
    background: var(--primary-gradient);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.blog-hero h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.blog-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
/* Blog Search Bar */
.blog-search-wrapper {
    max-width: 480px;
    margin: 24px auto 0;
}
.blog-search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}
.blog-search-form:focus-within {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}
.blog-search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    background: transparent;
    color: white;
    font-family: var(--font-primary);
}
.blog-search-form input::placeholder { color: rgba(255,255,255,0.7); }
.blog-search-form button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.blog-search-form button:hover { background: rgba(255,255,255,0.35); }
/* Blog No Results */
.blog-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--gray-500);
}
.blog-no-results i { font-size: 2.5rem; margin-bottom: 16px; opacity: 0.5; }
.blog-no-results p { font-size: 1.1rem; }
/* Blog Search Count */
.blog-search-count {
    max-width: var(--container-max);
    margin: 0 auto 20px;
    padding: 0 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}
.blog-section {
    padding: 60px 0 100px;
    background: var(--bg-secondary);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid var(--gray-200);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}
.blog-card-image {
    width: 100%;
    height: 220px;
    background: #f8fafb;
    padding: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}
.blog-card-content { padding: 24px; }
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: var(--gray-600);
    flex-wrap: wrap;
}
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card-category {
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}
.blog-card-content h2 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card-content p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 15px;
}
.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}
.read-more:hover { gap: 10px; }
.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.9;
    text-decoration: none;
    transition: var(--transition-fast);
}
.blog-back:hover { gap: 12px; opacity: 1; }

/* ---------- Blog Post Page ---------- */
.post-hero {
    padding: 140px 0 55px;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}
.post-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.post-hero .container { max-width: 860px; }
.post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.85;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.post-back:hover { gap: 12px; opacity: 1; }
.post-category {
    background: rgba(255,255,255,0.15);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}
.post-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 18px;
    max-width: 750px;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.88rem;
    opacity: 0.85;
    flex-wrap: wrap;
}
.post-meta span { display: flex; align-items: center; gap: 6px; }

/* ---- Article Content ---- */
.post-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}
.post-content > img:first-child {
    margin-top: 0;
}
.post-content .featured-thumbnail {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.post-content .product-hero-img {
    width: auto;
    max-width: 320px;
    max-height: 400px;
    display: block;
    margin: 0 auto 30px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.post-content h2 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--dark);
    margin: 45px 0 18px;
    padding-top: 25px;
    border-top: 2px solid var(--gray-200);
    position: relative;
}
.post-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 30px;
}
.post-content h3 {
    font-size: 1.2rem;
    color: var(--dark-secondary);
    margin: 28px 0 12px;
    padding-left: 14px;
    border-left: 3px solid var(--primary);
}
.post-content p {
    font-size: 1.02rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 20px;
}
.post-content ul, .post-content ol {
    margin: 12px 0 22px 22px;
}
.post-content li {
    font-size: 1.02rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 8px;
}
.post-content img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 25px 0;
    box-shadow: var(--shadow-lg);
}
.post-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(13, 148, 136, 0.3);
    transition: var(--transition-fast);
}
.post-content a:hover {
    border-bottom-color: var(--primary);
}
.post-content strong { color: var(--dark-secondary); }

/* Blockquote / Testimonial */
.post-content blockquote {
    border-left: 4px solid var(--primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, #e8faf8 100%);
    padding: 24px 28px;
    margin: 28px 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    position: relative;
}
.post-content blockquote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -5px;
    left: 15px;
    line-height: 1;
}
.post-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
    padding-left: 25px;
    font-size: 1rem;
    color: var(--gray-800);
}

/* Quick Info Box */
.quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    background: var(--bg-secondary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin: 25px 0;
}
.quick-info-item {
    text-align: center;
    padding: 12px 8px;
}
.quick-info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}
.quick-info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.quick-info-item span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

/* Product CTA Box */
.product-cta-box {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 40%, #14b8a6 100%);
    border: none;
    border-radius: var(--radius-xl);
    padding: 40px 35px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13, 148, 136, 0.3);
}
.product-cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}
.product-cta-box::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.product-cta-box h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: var(--font-display);
    border: none;
    padding: 0;
    position: relative;
    z-index: 1;
}
.product-cta-box p {
    font-size: 1rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.product-cta-box .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 16px 40px;
    background: #ffffff;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.product-cta-box .btn p,
.product-cta-box .btn i {
    color: var(--primary-dark);
    margin: 0;
}
.product-cta-box .btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: #0f172a;
    border-color: #0f172a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.product-cta-box .btn:hover p,
.product-cta-box .btn:hover i {
    color: #ffffff;
}
.product-cta-box .guarantee {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}
.product-cta-box .guarantee i { color: #fbbf24; }

/* Rating Box */
.rating-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 28px 0;
    box-shadow: var(--shadow-sm);
}
.rating-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.rating-box h3 i { color: var(--accent); }
.rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    color: var(--gray-700);
}
.rating-row:last-child {
    border-bottom: none;
    padding-top: 14px;
    font-size: 1.05rem;
}
.rating-stars { color: var(--accent); letter-spacing: 1px; }
.rating-bar {
    flex: 1;
    max-width: 180px;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    margin: 0 15px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
}

/* Pros/Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 28px 0;
}
.pros, .cons {
    padding: 24px;
    border-radius: var(--radius-lg);
}
.pros {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
}
.cons {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
}
.pros h3, .cons h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    border: none;
    padding: 0;
}
.pros h3 { color: #16a34a; }
.cons h3 { color: #dc2626; }
.pros ul, .cons ul { margin: 0; padding-left: 18px; }
.pros li, .cons li { margin-bottom: 6px; font-size: 0.95rem; }
.pros li::marker { color: #16a34a; }
.cons li::marker { color: #dc2626; }

/* Ingredient Card */
.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin: 22px 0;
}
.ingredient-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: var(--transition-fast);
}
.ingredient-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}
.ingredient-card strong {
    display: block;
    color: var(--primary-dark);
    font-size: 0.95rem;
    margin-bottom: 5px;
}
.ingredient-card span {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 22px 0;
    box-shadow: var(--shadow-sm);
}
.pricing-table th {
    background: var(--primary);
    color: white;
    padding: 14px 18px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-align: left;
}
.pricing-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    color: var(--gray-700);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--bg-primary); }
.pricing-best {
    background: #f0fdfa !important;
    font-weight: 600;
}
.pricing-best td { color: var(--primary-dark) !important; }
.pricing-badge {
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Table of Contents */
.toc {
    background: var(--bg-secondary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 25px 0 35px;
}
.toc h3 {
    font-size: 1rem;
    margin: 0 0 12px;
    padding: 0;
    border: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.toc h3 i { color: var(--primary); font-size: 0.9rem; }
.toc ol {
    margin: 0;
    padding-left: 20px;
    counter-reset: toc-counter;
}
.toc li {
    margin-bottom: 6px;
    font-size: 0.92rem;
    line-height: 1.6;
}
.toc a {
    color: var(--gray-700) !important;
    border-bottom: none !important;
    font-weight: 500 !important;
    transition: var(--transition-fast);
}
.toc a:hover {
    color: var(--primary) !important;
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-200);
}
.related-posts h2 {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    font-size: 1.4rem;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.related-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}
.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
}
.related-card-text {
    padding: 14px;
}
.related-card-text span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
}
.related-card-text h4 {
    font-size: 0.92rem;
    color: var(--dark);
    margin-top: 4px;
    line-height: 1.4;
}

/* Disclaimer bar */
.post-disclaimer {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin: 25px 0;
    font-size: 0.85rem;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}
.post-disclaimer i {
    color: #f59e0b;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ---------- Pagination ---------- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 50px 20px 0;
    max-width: var(--container-max);
    margin: 0 auto;
    flex-wrap: wrap;
}
.pagination button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-700);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}
.pagination button:hover:not(:disabled):not(.active) {
    background: var(--bg-primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.pagination button.active {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
    pointer-events: none;
}
.pagination button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}
.pagination .page-info {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-left: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .blog-hero h1 { font-size: 2rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .pagination { gap: 8px; padding-top: 40px; }
    .pagination button { min-width: 40px; height: 40px; font-size: 0.88rem; }
    .pagination .page-info { width: 100%; text-align: center; margin: 8px 0 0; }
    .post-hero h1 { font-size: 1.7rem; }
    .pros-cons { grid-template-columns: 1fr; }
    .quick-info { grid-template-columns: 1fr 1fr; }
    .ingredient-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .post-content { padding: 35px 16px 60px; }
    .pricing-table { font-size: 0.88rem; }
    .pricing-table th, .pricing-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
    .related-grid { grid-template-columns: 1fr; }
    .quick-info { grid-template-columns: 1fr; }
}

/* ============================================
   AEO / GEO BLOCKS � Quick Answer, Comparison, References
   ============================================ */

/* ── Quick Answer Box (above-fold AI-pickup block) ── */
.quick-answer {
    position: relative;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0f2fe 100%);
    border-left: 5px solid #0284c7;
    border-radius: 14px;
    padding: 28px 30px 24px;
    margin: 30px 0 20px;
    box-shadow: 0 6px 24px rgba(2, 132, 199, 0.12), 0 2px 6px rgba(2, 132, 199, 0.06);
    font-size: 1.05rem;
    line-height: 1.72;
    color: #0c4a6e;
    overflow: hidden;
}
.quick-answer::before {
    content: "\f0eb";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -14px;
    right: -8px;
    font-size: 6rem;
    color: rgba(2, 132, 199, 0.06);
    pointer-events: none;
    line-height: 1;
}
.quick-answer strong.qa-label {
    display: inline-block;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 12px;
    margin-bottom: 4px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}
.quick-answer p { margin: 0; color: inherit; }
.quick-answer a {
    color: #0369a1;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(3, 105, 161, 0.3);
    transition: border-color 0.2s ease, color 0.2s ease;
}
.quick-answer a:hover {
    color: #0c4a6e;
    border-bottom-color: #0c4a6e;
}

/* ── Reviewed-by / Last-updated micro-trust line ── */
.editorial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
    font-size: 0.88rem;
    color: #475569;
    background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin: 0 0 32px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.editorial-meta span {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.editorial-meta i {
    color: #0284c7;
    margin-right: 6px;
    font-size: 0.92em;
}
.editorial-meta a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed rgba(2, 132, 199, 0.4);
    transition: all 0.2s ease;
}
.editorial-meta a:hover {
    color: #0369a1;
    border-bottom-style: solid;
    border-bottom-color: #0369a1;
}

/* ── Comparison Table ── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    font-size: 0.95rem;
}
.comparison-table thead {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #fff;
}
.comparison-table th, .comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.comparison-table th { font-weight: 700; letter-spacing: 0.3px; }
.comparison-table tbody tr { transition: background 0.2s ease; }
.comparison-table tbody tr:nth-child(even) { background: #f8fafc; }
.comparison-table tbody tr:hover { background: #eff6ff; }
.comparison-table .winner { background: #ecfdf5 !important; font-weight: 600; color: #065f46; }
.comparison-table td:first-child { font-weight: 600; color: #1e293b; }

/* ── Scientific References Section ── */
.references {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-top: 3px solid #0284c7;
    border-radius: 14px;
    padding: 32px 36px 28px;
    margin: 44px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.references h2 {
    font-size: 1.4rem;
    margin: 0 0 6px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}
.references h2 i {
    color: #0284c7;
    font-size: 1.1em;
}
.references ol {
    margin: 0;
    padding-left: 22px;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #475569;
    counter-reset: ref-counter;
    list-style: none;
}
.references ol li {
    counter-increment: ref-counter;
    position: relative;
    padding: 10px 0 10px 8px;
    border-bottom: 1px dashed #e2e8f0;
}
.references ol li:last-child { border-bottom: none; }
.references ol li::before {
    content: counter(ref-counter);
    position: absolute;
    left: -28px;
    top: 12px;
    background: #0284c7;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}
.references a {
    display: inline-block;
    color: #fff;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    padding: 3px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    margin-left: 6px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.2);
}
.references a:hover {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
    box-shadow: 0 3px 10px rgba(2, 132, 199, 0.35);
    transform: translateY(-1px);
    text-decoration: none;
}

/* ── Mobile tweaks ── */
@media (max-width: 640px) {
    .quick-answer { padding: 20px 18px; font-size: 0.98rem; }
    .quick-answer::before { font-size: 4rem; top: -8px; right: -4px; }
    .editorial-meta { padding: 12px 14px; gap: 10px 16px; font-size: 0.82rem; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th, .comparison-table td { padding: 10px 8px; }
    .references { padding: 22px 18px 20px; }
    .references ol li::before { left: -24px; width: 20px; height: 20px; font-size: 0.68rem; }
}
