/* ARTICLE.CSS v2.6 - Blog/Cluster Articles
   Inter (headlines) + Lora (body text) - 18px optimal */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #334155;
    background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: -apple-system, Nunito, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    word-spacing: 1px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1e293b;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    color: #000;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 30px;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

h5 {
    font-weight: 800;
}

h6 {
    font-weight: 800;
}

p {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #334155;
}

ul,
ol {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #334155;
}

li {
    margin-bottom: 0.75rem;
}

strong,
b {
    font-weight: 600;
    color: #1e293b;
}

em,
i {
    font-style: italic;
}

blockquote {
    position: relative;
    padding: 1.5em 1em 1em 30px;
    font-weight: 500;
    color: #1e293b;
    margin: 2em;
    max-width: 33em;
    font-size: 18px;
    background-color: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

blockquote::before {
    content: "\201C";
    font-family: serif;
    position: absolute;
    right: 100%;
    font-size: 120px;
    line-height: 0px;
    top: 50px;
    left: -1px;
    color: #1da1f2;
}

blockquote::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    width: 80px;
    height: 5px;
    background: #e56d39;
    left: 1em;
}

#reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    width: 0%;
    z-index: 9999;
    transition: width 0.2s ease;
}

.breadcrumb-nav {
    background: #f8fafc;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
    border-radius: 5px;
    max-width: 760px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.breadcrumb-nav a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.article-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-section {
    margin: 1.8rem 0;
    background: white;
    padding: 0;
}

.article-section a,
.zigzag-card a,
.faq-answer-accordion a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid #3b82f6;
    transition: all 0.2s ease;
}

.article-section a:hover,
.zigzag-card a:hover,
.faq-answer-accordion a:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* OVERRIDE: Preserve button colors (don't apply article link styles to buttons) */
.article-section .btn-premium,
.zigzag-card .btn-premium,
.faq-answer-accordion .btn-premium {
    color: white !important;
    border-bottom: none !important;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.3;
}

/* MID Section Title - Large intro H2 from HERO bridge */
.mid-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 3rem 0 2rem 0;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}


.article-meta {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.meta-separator {
    color: #cbd5e1;
}

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

.read-time {
    color: #64748b;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1e293b;
    margin: 1rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
}


.trust-band {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 3px solid #066acd;
    border-radius: 8px 8px 0 0;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}


.lead-paragraph {
    font-size: 1.188rem;
    line-height: 1.7;
    color: #334155;
    margin: 0rem 0;
    font-family: 'Lora', Georgia, serif;
}

.lead-paragraph p {
    margin-bottom: 0.05rem;
    font-family: 'Lora', Georgia, serif;
}

.lead-paragraph .lead-opening {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.7;
}


.position-zero-answer {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.info-tip-box {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
    border-right: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
}

.info-tip-box p {
    margin: 0;
    line-height: 1.7;
    color: #92400e;
    font-size: 1.063rem;
    font-family: 'Lora', Georgia, serif;
}

.info-tip-box strong {
    color: #78350f;
}

.prompt-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.prompt-text {
    margin-top: 0.5rem;
}


.info-note {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid #0284c7;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
}

.info-note strong {
    color: #0c4a6e;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.info-note p {
    margin: 0;
    line-height: 1.7;
    color: #0c4a6e;
    font-size: 1rem;
    font-family: 'Lora', Georgia, serif;
}

.info-note br {
    display: block;
    content: "";
    margin-top: 0.5rem;
}


.spacer-small {
    height: 0.1rem;
}

.spacer-medium {
    height: 0.2rem;
}

.spacer-large {
    height: 1.75rem;
}

.introimage {
    width: 100%;
    background-color: #f7f7f7;
    padding: 20px 20px 0px 20px;
    margin-top: -3rem;
    margin-bottom: -1.5rem;
}

.introimage figure {
    margin: 0rem !important;
}

.open-loop {
    margin: 2.5rem 0;
}

.open-loop-question {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
}

.open-loop-subtext {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    color: #64748b;
    margin-top: 0.5rem;
}


.scroll-contract {
    margin: 2.5rem 0;
    padding-left: 2.5rem;
    padding-right: 5.5rem;
}

.scroll-contract-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.scroll-contract-list {
    margin-bottom: 2rem;
    line-height: 2.2;
    margin-left: 1rem;
}

.scroll-contract-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.scroll-contract-item:last-child {
    margin-bottom: 0;
}

.scroll-contract-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.scroll-contract-text {
    font-family: 'Lora', Georgia, serif;
    color: #334155;
    font-weight: 500;
    font-size: 1.07rem;
}


.warning-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-left: 4px solid #dc2626;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.warning-box p {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.8;
    color: #1e293b;
    margin-bottom: 0;
}

.warning-box .warning-box-closing {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}


.position-zero-box {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
    border-left: 6px solid #f59e0b;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.12);
}

.position-zero-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.position-zero-icon {
    font-size: 2rem;
}

.position-zero-box h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
    margin: 0;
}

.position-zero-box p {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #1e293b;
    margin: 1.2rem 0 1.2rem 0;
}

.position-zero-box p:last-child {
    margin-bottom: 0;
}

.position-zero-box ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.8;
    font-family: 'Lora', Georgia, serif;
    color: #1e293b;
}

.position-zero-box li {
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}

.position-zero-box li:last-child {
    margin-bottom: 0;
}

/* Style the paragraph that contains the label */
.position-zero-box p:has(.position-zero-label) {
    position: relative;
    padding: 1.2em;
    background-image: linear-gradient(330deg, #fef3c7 0%, #fef9e7 100%);
    border-right: 4px solid #fbbf24;
    border-radius: 8px;
    box-sizing: border-box;
}

/* The label itself just gets bold styling */
.position-zero-label {
    color: #92400e;
    font-weight: 700;
}

@media (max-width: 600px) {
    .position-zero-box p:has(.position-zero-label) {
        font-size: 0.95em;
        padding: 1em;
    }
}


.position-zero-insight {
    margin: 1.5rem 0;
    padding: 1rem;
    border-left: 3px solid #1da1f2;
    border-top: 3px solid #d3e0f5;
    border-radius: 8px;
    font-style: italic;
    color: #1e293b;
    background-color: initial;
    background-image: linear-gradient(360deg, #fffcf0 80% 0%, #fef4ca 100% 100%);

}

.expandable-insight {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expandable-insight:hover {
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

.insight-trigger {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #92400e;
    font-weight: 600;
}

.insight-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding-top: 0;
}

.expandable-insight.expanded .insight-content {
    max-height: 500px;
    padding-top: 1rem;
}

.insight-trigger::after {
    content: '+';
    margin-left: auto;
    font-size: 1.5rem;
    font-weight: 900;
    color: #f59e0b;
    line-height: 1;
    transition: transform 0.3s ease;
}

.expandable-insight.expanded .insight-trigger::after {
    transform: rotate(45deg);
}


.visual-comparison-diagram {
    margin: 3rem 0;
}


.visual-comparison-diagram h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}


.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}


.comparison-card-red {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #fecaca;
}

.comparison-card-green {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #86efac;
}


.comparison-card-red h4 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.comparison-card-green h4 {
    color: #16a34a;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}


.comparison-card-red svg,
.comparison-card-green svg {
    margin: 1.5rem auto;
    display: block;
}


.comparison-description-red {
    text-align: left;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #7f1d1d;
    line-height: 1.8;
}

.comparison-description-green {
    text-align: left;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #14532d;
    line-height: 1.8;
}

.visual-infographic {
    margin: 3rem 0;
}

.visual-flowchart {
    margin: 3rem 0;
}


.infographic-box {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 2px solid #fbbf24;
}

.infographic-box h4 {
    text-align: center;
    color: #92400e;
    margin-bottom: 2rem;
    font-size: 1.35rem;
}

.infographic-box .svg-container {
    text-align: center;
}

.infographic-box svg {
    max-width: 600px;
    margin: 0 auto;
}


.infographic-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.infographic-summary-content {
    font-size: 1.05rem;
    color: #7f1d1d;
    line-height: 1.8;
}

.infographic-summary-content>div {
    margin-bottom: 0.75rem;
}

.infographic-summary-content>div:last-child {
    margin-bottom: 0;
}


.flowchart-box {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 2px solid #93c5fd;
}

.flowchart-box svg {
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.flowchart-summary {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.flowchart-summary p {
    font-size: 1.05rem;
    color: #1e40af;
    font-weight: 600;
    margin: 0;
}

.insight-content p {
    color: #92400e;
    line-height: 1.7;
    margin: 0;
}

.key-research-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-left: 4px solid #3b82f6;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.key-research-section h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.key-research-section h3 span {
    font-size: 1.5rem;
}

.key-research-section ol {
    margin: 0 0 1.5rem 0;
    padding-left: 1.75rem;
    line-height: 1.9;
    color: #334155;
}

.key-research-section ol li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.key-research-section ol li:last-child {
    margin-bottom: 0;
}

.key-research-section ol li strong {
    color: #1e40af;
}

.key-research-section ol li a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.key-research-section .research-note {
    margin: 0;
    padding: 1rem;
    background: #eff6ff;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #696969;
    line-height: 1.7;
}

.key-research-section .research-note p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.research-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 1.5rem 0;
}

.research-list {
    margin: 0 0 1.5rem 0;
    padding-left: 1.75rem;
    line-height: 1.9;
    color: #334155;
}

.research-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.research-list li:last-child {
    margin-bottom: 0;
}

.research-topic {
    font-weight: 700;
    color: #1e40af;
}

.research-link {
    color: #3b82f6;
    font-style: italic;
}


.conclusion-section {
    margin: 3rem 0 2.5rem 0;
    padding: 0;
}

.conclusion-section .section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.conclusion-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.conclusion-section p:last-child {
    margin-bottom: 0;
}

.conclusion-section a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
}

.conclusion-section a:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}


.lead-magnet-cta {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    border: 1px solid #bae6fd;
    text-align: center;
}

.lead-magnet-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lead-magnet-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.lead-magnet-button {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lead-magnet-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.lead-magnet-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 1rem;
    margin-bottom: 0;
}


.author-bio-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 2rem 2.5rem;
    margin: 3rem 0;
}

.author-bio-avatar-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.author-bio-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-bio-content {
    flex: 1;
}

.author-bio-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.author-bio-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: italic;
}

.author-bio-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1rem;
}

.author-bio-note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    font-style: italic;
    margin-bottom: 1rem;
    margin-left: 0.75rem;
}

.author-bio-meta {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}


.share-section {
    margin: 3rem 0;
}

.share-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2.5rem 0 1rem 0;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1rem 0 3rem 0;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.share-button.share-linkedin {
    background: #0077b5;
    color: #ffffff;
}

.share-button.share-linkedin:hover {
    background: #005582;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.share-button.share-youtube {
    background: #ff0000;
    color: #ffffff;
}

.share-button.share-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.share-button.share-facebook {
    background: #1877f2;
    color: #ffffff;
}

.share-button.share-facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.share-button.share-pinterest {
    background: #e60023;
    color: #ffffff;
}

.share-button.share-pinterest:hover {
    background: #ad001a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.3);
}

.share-button.share-twitter {
    background: #1da1f2;
    color: #ffffff;
}

.share-button.share-twitter:hover {
    background: #0d8bd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1rem 0 3rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.social-link.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.social-link.linkedin:hover {
    background: #005582;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.social-link.youtube {
    background: #ff0000;
    color: #ffffff;
}

.social-link.youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.social-link.facebook {
    background: #1877f2;
    color: #ffffff;
}

.social-link.facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link.pinterest {
    background: #e60023;
    color: #ffffff;
}

.social-link.pinterest:hover {
    background: #ad001a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.3);
}

.social-link.twitter {
    background: #1da1f2;
    color: #ffffff;
}

.social-link.twitter:hover {
    background: #0d8bd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}


.list-number {
    background: #64748b;
    color: #ffffff;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 900;
    min-width: 3rem;
    text-align: center;
    display: inline-block;
}

.list-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-left: 1rem;
}

.faq-transition {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}


.svg-container {
    max-width: 700px;
    width: 100%;
}

/* Note: Table icons are now dynamic via {{TABLE_ICON}} placeholder in HTML */
/* This allows contextual icons (📊 for data, ⚖️ for comparisons, ⏱️ for time, etc.) */
/* Base figure element */
figure {
    margin: 2.5rem 0;
}

figure h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

figure figcaption {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.75rem;
    font-style: italic;
}

figure figcaption strong {
    font-weight: 600;
    color: #475569;
}

/* Featured Snippet Table - Hero Component */
.featured-snippet-table {
    width: 100%;
    margin: 2.5rem 0;
    overflow-x: auto;
    border-left: 2px solid #d3e0f5;
    border-right: 2px solid #d3e0f5;
    border-bottom: 2px solid #d3e0f5;
    border-radius: 14px;
}

.featured-snippet-table h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    background-color: #cae1fe;
    margin-bottom: -1.25rem !important;
    margin-top: 0;
    padding: 1.7rem;
    border-radius: 14px 14px 0 0;
}

.featured-snippet-table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.featured-snippet-table thead {
    background: linear-gradient(135deg, #3b82f6 100%, #2563eb 0%);
}

.featured-snippet-table thead tr {
    background: transparent;
}

.featured-snippet-table th {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-align: left;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    margin: 0;
    border-left: 1px solid #d3e0f5;
}

.featured-snippet-table th:first-child {
    border-left: none;
}

.featured-snippet-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    background: white;
}

.featured-snippet-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.featured-snippet-table tbody tr:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: translateX(2px);
}

.featured-snippet-table tbody tr:last-child {
    border-bottom: none;
}

.featured-snippet-table td {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1e293b;
    padding: 1.25rem 1.5rem;
    border-left: 1px solid #d3e0f5;
}

.featured-snippet-table td:first-child {
    border-left: none;
}

.featured-snippet-table td strong {
    font-weight: 700;
    color: #1e293b;
}

.featured-snippet-table td code {
    background: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.featured-snippet-table figcaption {
    padding: 1rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #334155;
    text-align: left;
    font-style: italic;
    font-weight: 500;
    background: #dbeafe;
    margin-top: 0;
    border-left: 2px solid #d3e0f5 !important;
    border-right: 2px solid #d3e0f5 !important;
    border-bottom: 2px solid #d3e0f5 !important;
}

.featured-snippet-table figcaption strong {
    color: #3b82f6;
    font-weight: 700;
    font-style: normal;
    font-size: 1.15rem;
}

.text-only-quote {
    font-size: 1.3rem;
    font-style: italic;
    text-align: left;
    margin: 2.5rem 0 2.5rem 2.5rem;
    padding: 0 0 0 1rem;
    border-left: 3px solid #e5e7eb;
    background: none;
    color: #374151;
    line-height: 1.6;
    max-width: 85%;
    font-weight: 500;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
}

.text-only-insight {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 2rem 0;
    padding: 0;
    border: none;
    background: none;
    color: #1F2937;
    font-style: italic;
    text-align: left;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    line-height: 1.65;
}


.text-only-insight.accented {
    padding-left: 1.5rem;
    border-left: 3px solid #D1D5DB;
}


.faq-accordion {
    margin: 2rem 0;
}

.faq-item-accordion {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    padding: 10px;
    transition: all 0.3s ease;
}

.faq-item-accordion:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.faq-item-accordion[open] {
    border-color: #bfdbfe;
    background: white;
    border-bottom: 2px solid #e2e8f0;
}

.faq-question-accordion {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 8px;
}

.faq-question-accordion::-webkit-details-marker {
    display: none;
}

.faq-question-accordion::marker {
    display: none;
}

.faq-question-accordion:hover {
    background: #eff6ff;
    color: #1e40af;
}

.faq-item-accordion[open] .faq-question-accordion {
    background: #eff6ff;
    color: #1e40af;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.faq-text {
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-item-accordion[open] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer-accordion {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    background: white;
    animation: fadeIn 0.4s ease;
    border-radius: 8px;
    margin-top: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.faq-answer-accordion p {
    margin-bottom: 1rem;
}

.faq-answer-accordion p:last-child {
    margin-bottom: 0;
}

.faq-answer-accordion strong {
    color: #1e293b;
    font-weight: 600;
}

.faq-answer-accordion ul,
.faq-answer-accordion ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.faq-answer-accordion li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}


.author-bio-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-bio-content {
    flex: 1;
}

.author-bio-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.author-bio-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0.75rem;
}

.author-bio-note {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 0.75rem;
    margin-left: 0.75rem;
    padding: 0.75rem;
    background: #f3f4f6;
    border-left: 3px solid #3b82f6;
    border-radius: 4px;
}

.author-bio-meta {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.author-bio-meta strong {
    color: #475569;
}


.share-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
}

.share-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #15803d;
    margin: 0 0 1.5rem 0;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.share-twitter {
    background: #1da1f2;
}

.share-twitter:hover {
    background: #0c85d0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(29, 161, 242, 0.3);
}

.share-linkedin {
    background: #0077b5;
}

.share-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 119, 181, 0.3);
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #0c63d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(24, 119, 242, 0.3);
}

.share-youtube {
    background: #FF0000;
}

.share-youtube:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.3);
}

.share-pinterest {
    background: #E60023;
}

.share-pinterest:hover {
    background: #BD001F;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 0, 35, 0.3);
}


.key-research-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-left: 4px solid #3b82f6;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.key-research-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.key-research-list {
    margin: 0 0 1.5rem 0;
    padding-left: 1.75rem;
    line-height: 1.9;
    color: #334155;
}

.key-research-item {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.key-research-item strong {
    color: #1e40af;
}

.key-research-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.key-research-item a:hover {
    text-decoration: underline;
}

.research-note-box {
    margin: 0;
    padding: 1rem;
    background: #eff6ff;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #1e40af;
    line-height: 1.7;
}

.key-takeaways-list {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.key-takeaway-item {
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    line-height: 1.7;
    font-size: 1.05rem;
    color: #1e293b;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.key-takeaway-item:nth-child(1) {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-left: 5px solid #22c55e;
    border-radius: 0 12px 12px 0;
}

.key-takeaway-item:nth-child(1) strong {
    color: #15803d;
}

.key-takeaway-item:nth-child(2) {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border-right: 5px solid #3b82f6;
    border-radius: 12px 0 0 12px;
}

.key-takeaway-item:nth-child(2) strong {
    color: #1d4ed8;
}

.key-takeaway-item:nth-child(3) {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
    border-left: 5px solid #f59e0b;
    border-radius: 0 12px 12px 0;
}

.key-takeaway-item:nth-child(3) strong {
    color: #b45309;
}

.key-takeaway-item:nth-child(4) {
    background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
    border-right: 5px solid #8b5cf6;
    border-radius: 12px 0 0 12px;
}

.key-takeaway-item:nth-child(4) strong {
    color: #6d28d9;
}

.key-takeaway-item:nth-child(5) {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-left: 5px solid #dc2626;
    border-radius: 0 12px 12px 0;
}

.key-takeaway-item:nth-child(5) strong {
    color: #dc2626;
}

.key-takeaway-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.key-takeaway-item p {
    margin: 0;
    line-height: 1.7;
}


/* Disclaimer Component */
.disclaimer {
    background: #fef3e2;
    background-repeat: repeat;
    border-radius: 8px;
    margin-top: 1rem;
    padding: 0.001rem 1.25rem;
}

.disclaimer p {
    font-size: .9rem;
    line-height: 1.6;
}

.disclaimer strong {
    color: #1e293b;
}

.disclaimer a {
    color: #3b82f6;
}

.disclaimer a:hover {
    color: #1e40af;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .key-takeaway-item {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}


.svg-infographic-container {
    margin: 3.5rem 0;
    text-align: center;
}

.svg-infographic-container svg {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.svg-infographic-container figcaption {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}


.enhanced-numbered-list-amber li strong {
    color: #1e293b;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.enhanced-numbered-list-amber ul {
    list-style: none;
    margin: 1rem 0 0 0;
    padding-left: 2rem;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-container {
        padding: 1.5rem 1rem;
    }

    .lead-paragraph {
        font-size: 1.05rem;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        padding-left: 4.5rem;
    }

    .timeline-item:nth-child(even) .timeline-content {
        padding-right: 4.5rem;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .timeline-item:nth-child(odd) .timeline-number {
        left: 1rem;
    }

    .timeline-item:nth-child(even) .timeline-number {
        right: 1rem;
    }

    .visual-comparison-diagram>div>div {
        grid-template-columns: 1fr !important;
    }

    .author-bio-box {
        flex-direction: column;
        padding: 1.5rem;
    }

    .author-bio-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.15rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-button {
        width: 100%;
        justify-content: center;
    }

    .featured-snippet-table {
        font-size: 0.85rem;
    }

    .featured-snippet-table h3,
    .featured-snippet-table figcaption,
    .featured-snippet-table table {
        min-width: 500px;
        /* Ensure backgrounds extend for the full scrollable width */
        width: 100%;
        display: block;
        /* Required for h3 and figcaption to honor widths and scroll together */
        box-sizing: border-box;
    }

    .featured-snippet-table table {
        display: table;
        /* Reset for the actual table element */
        table-layout: auto;
    }

    .featured-snippet-table th,
    .featured-snippet-table td {
        padding: 0.75rem 0.85rem;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .faq-question-accordion {
        font-size: 1rem;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

    .faq-toggle {
        font-size: 1.25rem;
    }

    .faq-answer-accordion {
        padding: 1.25rem;
        font-size: 0.9rem;
    }

    /* Info Tip & Pause Reflect Boxes */
    .info-tip-box {
        padding: 1.25rem 1rem;
        margin: 1.25rem 0;
        border-width: 3px;
    }

    .info-tip-box p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Warning & Alert Boxes */
    .warning-box,
    .impact-alert,
    .wisdom-drop,
    .context-frame,
    .clarity-lens {
        padding: 1.25rem 1rem;
        margin: 1.5rem 0;
    }

    .impact-alert h4,
    .wisdom-drop h4,
    .clarity-lens h4 {
        font-size: 1.125rem;
    }

    .impact-alert p,
    .wisdom-drop p,
    .context-frame p,
    .clarity-lens p {
        font-size: 1rem;
    }

    /* Text Components */
    .text-only-quote {
        font-size: 1.125rem;
        margin: 1.5rem 0 1.5rem 1.5rem;
        padding-left: 0.75rem;
        max-width: 100%;
    }

    .text-only-insight {
        font-size: 1.05rem;
        margin: 1.5rem 0;
    }

    .text-only-insight.accented {
        padding-left: 1rem;
    }

    /* Definition Header & Icon */
    .definition-header {
        gap: 0.75rem;
    }

    .definition-icon {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.5rem;
    }
}

:root {

    --trust-blue: #2563eb;
    --trust-blue-light: #dbeafe;
    --trust-blue-accent: #1e40af;

    --insight-amber: #f59e0b;
    --insight-amber-light: #fef3c7;
    --insight-amber-accent: #d97706;

    --progress-green: #10b981;
    --progress-green-light: #d1fae5;
    --progress-green-accent: #059669;

    --impact-coral: #ef4444;
    --impact-coral-light: #fee2e2;
    --impact-coral-accent: #dc2626;

    --wisdom-purple: #8b5cf6;
    --wisdom-purple-light: #ede9fe;
    --wisdom-purple-accent: #7c3aed;

    --context-gray: #6b7280;
    --context-gray-light: #f3f4f6;
    --context-gray-accent: #4b5563;

    --clarity-cyan: #06b6d4;
    --clarity-cyan-light: #cffafe;
    --clarity-cyan-accent: #0891b2;
}

@media (max-width: 768px) {
    .trust-band {
        justify-content: center !important;
        text-align: center !important;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .scroll-contract,
    .position-zero-box,
    .key-research-section,
    .visual-comparison-diagram,
    .infographic-box,
    .flowchart-box {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .position-zero-box p:has(.position-zero-label) {
        padding: 0.85rem !important;
    }

    .position-zero-insight {
        padding: 0.75rem !important;
        margin: 1rem 0 !important;
    }

    .research-note {
        padding: 0.75rem !important;
    }
}