/* Article-specific styles (extracted from inline styles)
   Shared design vars live in /css/style.css
*/

.article-header { padding: 10rem 2rem 6rem; background: var(--bg-warm); color: var(--dark); text-align: center; }
.header-content { max-width: 900px; margin: 0 auto; }
.header-meta { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-bottom: 1.5rem; font-size: 0.85rem; color: rgba(26, 26, 46, 0.6); }
.category-tag { background: rgba(110, 218, 171, 0.15); color: var(--mint-dark); padding: 0.3rem 0.8rem; border-radius: 4px; font-weight: 500; }
.article-header h1 { font-family: 'Crimson Text', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; line-height: 1.2; margin-bottom: 1.5rem; }
.article-header h1 em { font-style: italic; color: var(--mint); }
.author-info { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--dark); }
.author-details { text-align: left; }
.author-name { font-weight: 600; color: var(--dark); }
.author-title { font-size: 0.9rem; color: rgba(26, 26, 46, 0.6); }
.article-body { max-width: 800px; margin: 5rem auto; padding: 0 2rem; }
.article-body .lead { font-size: 1.2rem; color: rgba(26, 26, 46, 0.8); line-height: 1.8; margin-bottom: 3rem; font-weight: 400; }
.article-body h2 { font-family: 'Crimson Text', serif; font-size: 2rem; font-weight: 600; margin: 3rem 0 1.5rem; color: var(--dark); line-height: 1.3; }
.article-body p { margin-bottom: 1.5rem; font-size: 1.05rem; color: rgba(26, 26, 46, 0.9); }
.article-body ol { margin: 0 0 1.5rem 1.5rem; padding: 0; }
.article-body li { margin-bottom: 0.8rem; }
.article-body blockquote { border-left: 3px solid var(--mint); padding-left: 2rem; margin: 2.5rem 0; font-family: 'Crimson Text', serif; font-size: 1.3rem; font-style: italic; color: rgba(26, 26, 46, 0.8); line-height: 1.7; }
.glossary-link { color: #6EDAAB; text-decoration: none; border-bottom: 1px dotted #6EDAAB; transition: background 0.3s; }
.glossary-link:hover { background: #fdf2e9; }

/* Design system overrides (kept for article pages) */
.approach-card, .way-item, .highlight-card, .faq-item, .glossary-card, .article-card {
    transition: all 0.3s ease;
    border-radius: 16px !important;
}

.approach-card:nth-child(odd) { transform: rotate(-0.3deg); }
.approach-card:nth-child(even) { transform: rotate(0.4deg); }
.approach-card:hover, .highlight-card:hover, .article-card:hover {
    transform: rotate(0deg) translateY(-5px) !important;
    box-shadow: 0 12px 35px rgba(110, 218, 171, 0.15) !important;
}

.highlight-mint { color: var(--mint) !important; font-style: italic; }
.highlight-ocean { color: var(--ocean) !important; font-style: italic; }

.section-label::after, .founder-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--mint), transparent);
    border-radius: 2px;
}

/* Tilted dividers */
.creed-section::before, .approach-section::before, .ways-section::before, .founder-section::before, .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 218, 171, 0.3), transparent);
    transform: rotate(-0.3deg);
}

.cta-button {
    border-radius: 50px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.way-number { color: var(--mint) !important; }
.way-item:nth-child(2) .way-number { color: var(--ocean) !important; }

.highlight-card { border-top-color: var(--mint) !important; }
.highlight-card:nth-child(2) { border-top-color: var(--ocean) !important; }
.highlight-number { color: var(--mint) !important; }
.highlight-card:nth-child(2) .highlight-number { color: var(--ocean) !important; }

.founder-bio:first-of-type::first-letter {
    color: var(--mint) !important;
}
