/* Go Far Podcast - Modern Blog Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #f7fafc;
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Blog Posts */
.blog-posts {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

.post-card {
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.post-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.post-meta {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: #667eea;
}

.post-excerpt {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.read-more {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #764ba2;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.widget-content {
    color: #4a5568;
    line-height: 1.6;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.recent-posts li:last-child {
    border-bottom: none;
}

.recent-posts a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s;
}

.recent-posts a:hover {
    color: #667eea;
}

/* Single Post Styles */
.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.post-title-single {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
}

.post-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin: 2rem 0 1rem 0;
}

.post-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin: 1.5rem 0 1rem 0;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content a {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.post-content a:hover {
    border-bottom-color: #e53e3e;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .post-title-single {
        font-size: 2rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
}
