/* ===================================
   Advertorial Shared Stylesheet
   Used by: advertorial-2026.html, advertorial-retirement.html
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 18px;
}

/* Header */
.site-header {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 20px;
}

.site-header-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.header-trending {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}

.header-trending .flag {
    font-size: 14px;
}

.header-trending .pulse-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Main Content */
.article-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 120px;
}

/* Badge */
.trending-badge {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* Headline */
.article-headline {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .article-headline {
        font-size: 38px;
    }
}

/* Subtitle */
.article-subtitle {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 19px;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    font-size: 14px;
    color: #718096;
    margin-bottom: 16px;
}

.meta-shares {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-shares svg {
    width: 16px;
    height: 16px;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #718096;
    padding-bottom: 12px;
    margin-bottom: 0;
}

.author-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    color: #1a1a1a;
    font-weight: 600;
}

/* ===================================
   Credibility Elements
   =================================== */

/* Fact-Checked Badge */
.fact-checked-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0fdf4;
    color: #166534;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid #bbf7d0;
    margin-left: 8px;
}

.fact-checked-badge::before {
    content: '\2713';
    font-weight: 700;
    font-size: 10px;
}

/* Series Tag */
.series-tag {
    font-size: 13px;
    font-style: italic;
    color: #718096;
    margin-bottom: 24px;
    padding-left: 2px;
}

/* Expert Quote Section */
.expert-quote {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.expert-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
}

.expert-quote blockquote {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 17px;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 12px;
}

.expert-quote cite {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-style: normal;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 640px) {
    .expert-quote {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .expert-quote blockquote {
        font-size: 16px;
    }
}

/* Sources & Methodology Section */
.sources-section {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
    margin: 40px 0;
}

.sources-section h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.sources-section p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Related Articles Section */
.related-articles {
    margin: 40px 0;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.related-articles h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.2s;
}

.related-card:hover {
    opacity: 0.8;
}

.related-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.related-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.related-meta {
    font-size: 12px;
    color: #9ca3af;
}

@media (max-width: 640px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-card {
        flex-direction: row;
        gap: 12px;
    }

    .related-card img {
        width: 100px;
        height: 72px;
        flex-shrink: 0;
    }
}

/* ===================================
   End Credibility Elements
   =================================== */

/* Callout Box */
.callout-box {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 20px 24px;
    margin: 32px 0;
    font-size: 16px;
}

.callout-box p {
    margin: 0;
}

/* Body Text */
.article-body p {
    margin-bottom: 24px;
}

.article-body strong {
    color: #1a1a1a;
}

.article-body em {
    font-family: 'Merriweather', Georgia, serif;
    color: #2d5a4a;
}

/* Subheadings */
.article-body h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 48px 0 24px;
    line-height: 1.3;
}

/* Images */
.article-image {
    width: 100%;
    border-radius: 8px;
    margin: 32px 0;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    pointer-events: none;
    cursor: default;
}

/* Earnings Proof Box */
.earnings-proof {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    text-align: center;
}
.earnings-proof-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #059669;
    margin-bottom: 8px;
}
.earnings-proof-amount {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: #166534;
    line-height: 1.1;
}
.earnings-proof-detail {
    font-size: 16px;
    color: #047857;
    margin-top: 8px;
    font-weight: 500;
}
.earnings-proof-context {
    font-size: 14px;
    color: #6b7280;
    margin-top: 12px;
    font-style: italic;
}

.image-caption {
    font-size: 14px;
    color: #718096;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

/* Quote */
.pull-quote {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    color: #2d5a4a;
    border-left: 4px solid #2d5a4a;
    padding-left: 24px;
    margin: 40px 0;
    line-height: 1.5;
}

/* Inline CTA - subtle editorial style */
.inline-cta {
    background: #f8faf9;
    border-left: 3px solid #16a34a;
    padding: 16px 20px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.inline-cta p {
    margin: 0;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.inline-cta a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
}

.inline-cta a:hover {
    text-decoration: underline;
}

/* Bullet List */
.benefit-list {
    background: #f0fdf4;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
}

.benefit-list h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.benefit-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 32px;
    margin: 48px 0;
    text-align: center;
}

.cta-box h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cta-box p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.cta-button:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.cta-guarantee {
    margin-top: 16px;
    font-size: 14px;
    color: #718096;
}

/* Update Box */
.update-box {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.update-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.update-box p {
    margin: 0;
    font-size: 16px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.trust-badge {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

.secure-note {
    text-align: center;
    font-size: 13px;
    color: #718096;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-note svg {
    width: 14px;
    height: 14px;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-cta-text strong {
    font-size: 14px;
    color: #1a1a1a;
}

.sticky-cta-text span {
    font-size: 12px;
    color: #718096;
}

.sticky-cta-button {
    background: #16a34a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s;
}

.sticky-cta-button:hover {
    background: #15803d;
}

@media (max-width: 640px) {
    .sticky-cta {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }

    .sticky-cta-text {
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }

    .sticky-cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Footer */
.article-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 13px;
    color: #718096;
    text-decoration: none;
}

.footer-links a:hover {
    color: #4a5568;
}

.footer-disclaimer {
    font-size: 12px;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Comments Section */
.comments-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.comments-header h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.comments-count {
    font-size: 14px;
    color: #718096;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment:last-child {
    border-bottom: none;
}

.comment-main {
    display: flex;
    gap: 12px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.comment-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.comment-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.comment-time {
    font-size: 12px;
    color: #a0aec0;
}

.comment-text {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 8px;
}

.comment-actions {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #718096;
}

.comment-action {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: default;
    pointer-events: none;
}

.comment-action svg {
    width: 14px;
    height: 14px;
}

.comment-likes {
    color: #dc2626;
}

/* Hide Reply buttons — they're non-functional and generate dead clicks */
.comment-action:not(.comment-likes) {
    display: none;
}

/* Replies */
.comment-replies {
    margin-left: 52px;
    margin-top: 16px;
    padding-left: 16px;
    border-left: 2px solid #e5e7eb;
}

.reply {
    padding: 12px 0;
}

.reply:first-child {
    padding-top: 0;
}

.reply .comment-avatar {
    width: 32px;
    height: 32px;
}

.reply .comment-text {
    font-size: 14px;
}

.show-more-comments {
    display: block;
    width: 100%;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
    transition: all 0.2s;
}

.show-more-comments:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* Social Proof Card (Nextdoor-style) */
.social-proof-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 28px 0;
}

.social-proof-card .social-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.social-proof-card .social-icon {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.social-proof-card .social-post {
    font-size: 15px;
    line-height: 1.5;
    color: #374151;
    font-style: italic;
}

.social-proof-card .social-replies {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #dcfce7;
    font-size: 13px;
    color: #6b7280;
}

/* Cost Breakdown Inline */
.cost-breakdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 28px 0;
    text-align: center;
}

.cost-breakdown .cost-item {
    font-size: 14px;
    color: #92400e;
    font-weight: 500;
}

.cost-breakdown .cost-amount {
    font-size: 28px;
    font-weight: 700;
    color: #92400e;
    display: block;
    line-height: 1.2;
}

.cost-breakdown .cost-arrow {
    font-size: 24px;
    color: #d97706;
}

.cost-breakdown .cost-profit {
    color: #166534;
}

.cost-breakdown .cost-profit .cost-amount {
    color: #166534;
}

/* Earnings Timeline */
.earnings-timeline {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin: 28px 0;
}

.earnings-timeline h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.timeline-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-row:last-child {
    border-bottom: none;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 2px solid #1a1a1a;
}

.timeline-month {
    width: 110px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    flex-shrink: 0;
}

.timeline-bar-wrap {
    flex: 1;
    margin: 0 12px;
}

.timeline-bar {
    height: 24px;
    background: #22c55e;
    border-radius: 4px;
    min-width: 8px;
    transition: width 0.3s;
}

.timeline-row:last-child .timeline-bar {
    background: #1a1a1a;
}

.timeline-amount {
    width: 70px;
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    flex-shrink: 0;
}

.timeline-row:last-child .timeline-month,
.timeline-row:last-child .timeline-amount {
    font-weight: 700;
    color: #1a1a1a;
}

/* Email Screenshot Card */
.email-screenshot {
    background: #f8f9fa;
    border: 1px solid #c4c7cc;
    border-radius: 12px;
    margin: 40px -12px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
}

.email-verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    border-bottom: 1px solid #a7f3d0;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #047857;
    letter-spacing: 0.01em;
}

.email-verified-badge svg {
    flex-shrink: 0;
}

.email-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.email-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
}

.email-meta {
    flex: 1;
    min-width: 0;
}

.email-sender {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

.email-address {
    font-weight: 400;
    color: #6b7280;
    font-size: 12px;
}

.email-to {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 1px;
}

.email-date {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
}

.email-body {
    padding: 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #1f2937;
    background: #fff;
    max-height: 520px;
    overflow-y: auto;
}

.email-body p {
    margin: 0 0 16px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.email-body p:last-child {
    margin-bottom: 0;
}

.email-body strong {
    background: linear-gradient(to bottom, transparent 55%, #fef08a 55%);
    font-weight: 600;
    padding: 0 2px;
}

@media (max-width: 600px) {
    .email-screenshot {
        margin: 32px -8px;
        border-radius: 8px;
    }
    .email-header {
        padding: 12px 16px;
    }
    .email-body {
        padding: 16px;
        font-size: 14px;
        max-height: 420px;
    }
    .email-verified-badge {
        padding: 8px 16px;
        font-size: 11px;
    }
}

/* Facebook Post Card — scoped reset to override .article-body inheritance */
.fb-post-card {
    background: #fff;
    border: 1px solid #ccd0d5;
    border-radius: 8px;
    margin: 32px 0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.fb-post-card div {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.fb-post-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
}

.fb-post-avatar {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    max-width: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block !important;
    flex-shrink: 0;
}

.fb-post-meta {
    flex: 1;
}

.fb-post-name {
    font-size: 15px;
    font-weight: 600;
    color: #050505;
    line-height: 1.2;
}

.fb-post-info {
    font-size: 13px;
    color: #65676b;
    line-height: 1.3;
}

.fb-post-text {
    padding: 0 16px 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #050505;
}

.fb-post-card .fb-post-text strong {
    font-weight: 600;
    background: none;
    color: #050505;
}

.fb-post-engagement {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-top: 1px solid #e4e6ea;
    border-bottom: 1px solid #e4e6ea;
    font-size: 13px;
    color: #65676b;
}

.fb-post-reactions span {
    margin-left: 4px;
    color: #65676b;
}

.fb-post-comments {
    padding: 8px 16px 12px;
}

.fb-comment {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.fb-comment-avatar {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block !important;
    flex-shrink: 0;
    line-height: 32px;
    text-align: center;
}

.fb-comment-bubble {
    background: #f0f2f5;
    border-radius: 18px;
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #050505;
}

.fb-comment-name {
    font-weight: 600;
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
    color: #050505;
}

.fb-post-more-comments {
    font-size: 14px;
    font-weight: 600;
    color: #65676b;
    padding: 4px 0;
    cursor: default;
}

@media (max-width: 600px) {
    .fb-post-card {
        margin: 24px -8px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* Text Message Style */
.text-convo {
    max-width: 340px;
    margin: 28px auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.text-bubble {
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.4;
    max-width: 85%;
}

.text-bubble.incoming {
    background: #e5e7eb;
    color: #1a1a1a;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.text-bubble.outgoing {
    background: #3b82f6;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.text-label {
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 4px;
}

/* Early Social Proof (testimonial in first 15%) */
.early-social-proof {
    background: #fef9e7;
    border-left: 3px solid #f0c040;
    padding: 16px 20px;
    margin: 24px 0;
    font-style: italic;
    font-size: 1.05em;
}
.early-social-proof cite {
    display: block;
    font-style: normal;
    font-size: 0.85em;
    color: #666;
    margin-top: 8px;
}

/* Open Loop Teaser */
.open-loop {
    font-size: 17px;
    color: #6b7280;
    font-style: italic;
    margin: 20px 0;
    padding-left: 16px;
    border-left: 3px solid #d1d5db;
}

/* "As Featured In" Media Bar */
.featured-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 0 0;
    margin: 0 0 24px;
}

.featured-in-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
}

.featured-in-logo {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.01em;
    opacity: 0.7;
}

.featured-in-img {
    height: 32px;
    max-height: 32px;
    width: auto;
    opacity: 0.45;
    filter: grayscale(100%);
    object-fit: contain;
}

.featured-in-social {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.01em;
}

@media (max-width: 640px) {
    .featured-in {
        gap: 14px;
    }
    .featured-in-logo {
        font-size: 13px;
    }
}

/* Updated Badge */
.updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #059669;
    font-weight: 500;
}

.updated-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

/* Enrollment Counter */
.enrollment-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 10px 16px;
    margin: 16px 0;
    font-size: 14px;
    color: #92400e;
    font-weight: 500;
}

.enrollment-counter .counter-number {
    font-weight: 700;
    font-size: 15px;
}

/* Angle-Matched Openings */
.angle-content { display: none; }
.angle-default { display: block; }
[data-angle] .angle-default { display: none; }
[data-angle="mlm"] .angle-mlm { display: block; }
[data-angle="math"] .angle-math { display: block; }
[data-angle="husband"] .angle-husband { display: block; }
[data-angle="speed"] .angle-speed { display: block; }
[data-angle="retire"] .angle-retire { display: block; }

/* Listicle Number Sections */
.listicle-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0 20px;
}

.listicle-section h2 {
    margin: 0;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.listicle-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #16a34a;
    color: #fff;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 640px) {
    body {
        font-size: 17px;
    }

    /* Mobile Header */
    .site-header {
        padding: 14px 16px;
    }

    .site-header-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .site-name {
        font-size: 15px;
        font-weight: 700;
    }

    .header-trending {
        font-size: 13px;
        gap: 8px;
        background: rgba(255,255,255,0.1);
        padding: 6px 14px;
        border-radius: 20px;
    }

    .header-trending .pulse-dot {
        width: 7px;
        height: 7px;
    }

    .article-container {
        padding: 24px 16px 120px;
    }

    .article-headline {
        font-size: 26px;
    }

    .article-subtitle {
        font-size: 17px;
    }

    .article-body h2 {
        font-size: 21px;
    }

    .pull-quote {
        font-size: 19px;
    }

    .cta-box {
        padding: 24px 20px;
    }

    .cost-breakdown {
        flex-direction: row;
        gap: 10px;
        padding: 16px;
    }

    .cost-breakdown .cost-amount {
        font-size: 24px;
    }

    .timeline-month {
        width: 80px;
        font-size: 13px;
    }

    .timeline-amount {
        width: 60px;
        font-size: 14px;
    }

    .text-convo {
        max-width: 300px;
    }

    .text-bubble {
        font-size: 14px;
    }

    .earnings-timeline {
        padding: 18px 16px;
    }

    .listicle-section {
        gap: 12px;
        margin: 40px 0 16px;
    }

    .listicle-section h2 {
        font-size: 20px;
    }

    .listicle-number {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}
