:root {
    --primary-navy: #3E3E3E;
    --accent-orange: #F27E03;
    --pure-white: #FFFFFF;
    --light-gray: #FAFAFA;
    --mid-gray: #D0D0D0;
    --text-dark: #3E3E3E;
    --text-gray: #6B6B6B;
    --border: #E5E5E5;
    
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;
}

/* Hero Section */
.hero--single {
    margin-top: 80px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.hero--single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
}

.hero--single .hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero--single .hero-content {
    max-width: 800px;
}

.hero--single .hero-eyebrow {
    color: var(--accent-orange);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

.hero--single .hero-title {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-dark);
    font-size: 0.9375rem;
    position: relative;
    z-index: 2;
}

.hero-separator {
    color: var(--text-gray);
}

/* Featured Image */
.post-featured-image {
    padding: 0;
    background: var(--light-gray);
}

.post-featured-image .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

/* Post Content Section */
.post-content-section {
    padding: var(--space-xxl) 0;
}

.post-content-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.post-content-wrapper {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.post-content {
    background: var(--pure-white);
    padding: var(--space-xl);
}

.entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.entry-content p {
    margin-bottom: var(--space-md);
}

.entry-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.entry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.entry-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.entry-content li {
    margin-bottom: var(--space-xs);
}

.entry-content a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.2s;
}

.entry-content a:hover {
    color: #d14812;
    text-decoration: underline;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: var(--space-xl) 0;
    border-radius: 8px;
}

.entry-content blockquote {
    border-left: 4px solid var(--accent-orange);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--text-gray);
    font-size: 1.125rem;
}

.entry-content code {
    background: var(--light-gray);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.entry-content pre {
    background: var(--light-gray);
    padding: var(--space-md);
    border-radius: 8px;
    overflow-x: auto;
    margin: var(--space-md) 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
}

/* Tags */
.post-tags {
    margin-top: var(--space-xxl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.tags-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tag-link {
    display: inline-block;
    padding: 6px 12px;
    background: var(--light-gray);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.tag-link:hover {
    background: var(--accent-orange);
    color: var(--pure-white);
}

/* Sidebar removed */

/* Related Posts */
.related-posts-section {
    padding: var(--space-xxl) 0;
}

.related-posts-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.related-post-card {
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.related-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-post-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-post-card:hover .related-post-image {
    transform: scale(1.05);
}

.related-post-content {
    padding: var(--space-lg);
}

.related-post-date {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: var(--space-sm);
}

.related-post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.2s;
}

.related-post-card:hover .related-post-title {
    color: var(--accent-orange);
}

/* Page Links */
.page-links {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.page-links a {
    display: inline-block;
    padding: 8px 12px;
    margin-right: var(--space-xs);
    background: var(--light-gray);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.page-links a:hover {
    background: var(--accent-orange);
    color: var(--pure-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero--single .hero-container,
    .post-content-section .container,
    .related-posts-section .container {
        padding: 0 40px;
    }
    
    .post-content-wrapper {
        max-width: 100%;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero--single {
        min-height: 300px;
        padding: var(--space-xl) 0;
    }
    
    .hero--single .hero-container,
    .post-content-section .container,
    .related-posts-section .container {
        padding: 0 20px;
    }
    
    .hero--single .hero-title {
        font-size: 2rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .entry-content h3 {
        font-size: 1.25rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

