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

:root {
    --primary-color: #d4762c;
    --secondary-color: #4a4a4a;
    --text-color: #333;
    --light-text: #666;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --hover-color: #b85f1f;
}

body {
    font-family: 'proxima-nova', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    border-bottom: 3px solid var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1050px;
}

.logo img {
    max-height: 60px;
    height: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-family: 'proxima-nova', Arial, sans-serif;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Article Layout */
.article-content {
    background-color: var(--white);
}

.article-header {
    background: linear-gradient(135deg, #b94f27 0%, #893d22 100%);
    color: var(--white);
    padding: 60px 0 50px;
    text-align: center;
}

.article-header h1 {
    font-family: 'museo-slab', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-subhead {
    font-family: 'museo-slab', Georgia, serif;
    font-size: 24px;
    font-weight: 300;
    color: #e8e8e8;
    line-height: 1.4;
    max-width: 680px;
    margin: 0 auto;
}

.article-intro {
    padding: 50px 0 40px;
}

.article-intro p {
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 1.7;
}

.article-intro p:last-child {
    margin-bottom: 0;
}

.article-intro strong {
    font-weight: 500;
    color: #222;
}

/* Article Sections */
.article-section {
    padding: 40px 0;
}

.article-section h2 {
    font-family: 'museo-slab', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.3;
}

.article-section h3 {
    font-family: 'museo-slab', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-section h3 a {
    font-family: 'museo-slab', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
    text-decoration: none;
    color: #c44;
}

.article-section p {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.7;
}

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

/* Numbered Differences */
.difference-item {
    border-top: 1px solid var(--border-color);
    padding: 45px 0;
}

.difference-item:first-of-type {
    border-top: none;
}

.difference-item h3 {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.difference-item .number {
    font-family: 'proxima-nova', Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    min-width: 24px;
}

.difference-item .contrast {
    font-size: 19px;
    font-weight: 400;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.inline-list {
    list-style: none;
    margin: 15px 0 20px;
    padding: 0;
    line-height: 1.9;
}

.inline-list li {
    display: inline;
    font-size: 18px;
}

.inline-list li:after {
    content: " • ";
    color: var(--primary-color);
    margin: 0 5px;
}

.inline-list li:last-child:after {
    content: "";
}

.resource-link {
    margin-top: 20px;
}

.resource-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: color 0.3s ease;
    display: inline-block;
}

.resource-link a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

/* Divider Section */
.divider-section {
    padding: 40px 0;
}

.section-divider {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 0;
    width: 60%;
    margin: 0 auto;
}

/* Risk Section */
.risk-section {
    background-color: var(--light-bg);
    padding: 50px 0;
    border-radius: 8px;
    margin: 40px 0;
}

.risk-section h2 {
    margin-bottom: 25px;
}

.risk-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.risk-list li {
    font-size: 18px;
    line-height: 1.9;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
}

.risk-list li:before {
    content: "✗";
    color: #c44;
    font-weight: 500;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.payoff {
    margin-top: 25px;
    font-weight: 500;
    color: #222;
    font-size: 19px;
    line-height: 1.7;
}

/* Journal Sections */
.journal-intro {
    padding: 50px 0 35px;
}

.journal-intro .emphasis {
    font-weight: 500;
    font-size: 19px;
    color: #222;
    margin-top: 25px;
}

.journal-features {
    padding: 25px 0 45px;
}

.features-intro {
    font-size: 19px;
    font-weight: 500;
    color: #222;
    margin-bottom: 35px;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--light-text);
    margin-bottom: 0;
}

.conclusion {
    margin-top: 40px;
    font-weight: 500;
    font-size: 19px;
    color: #222;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* CTA Section */
.article-cta {
    padding: 50px 0 60px;
    background-color: var(--light-bg);
}

.cta-box {
    text-align: center;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 50px 40px;
}

.cta-box h2 {
    font-family: 'museo-slab', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #222;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 25px;
}

.cta-box .subtext {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'proxima-nova', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 40px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-family: 'museo-slab', Georgia, serif;
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .article-header h1 {
        font-size: 36px;
    }
    
    .article-subhead {
        font-size: 20px;
    }
    
    .article-section h2 {
        font-size: 28px;
    }
    
    .article-section h3,
    .difference-item h3 {
        font-size: 23px;
    }
    
    .article-intro p,
    .article-section p {
        font-size: 17px;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .article-header {
        padding: 40px 0 35px;
    }
    
    .article-header h1 {
        font-size: 30px;
    }
    
    .article-subhead {
        font-size: 18px;
    }
    
    .article-section h2 {
        font-size: 26px;
    }
    
    .difference-item h3 {
        font-size: 21px;
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }
}
