/* Blog Post Styles - Reused from BJJ site */
:root {
    --primary-color: #696969;
    --secondary-color: #A9A9A9;
    --background-color: #f0f0f0;
    --text-color: #333333;
    --link-color: #0056b3;
    --link-hover-color: #004080;
    --white: #FFFFFF;
    --dark-bg: #1a1a1a;
    --success: #22c55e;
    --warning: #FFD700;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.blog-post {
    padding: 80px 0;
    background-color: #f9f9f9;
    min-height: 80vh;
}

.blog-post .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.2;
}

.blog-post h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--background-color);
    padding-bottom: 10px;
}

.blog-post h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.blog-post p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

.blog-post ul, .blog-post ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.blog-post li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.blog-post .author-info {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
}

.blog-post .author-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.blog-post .author-info .author-details {
    flex: 1;
}

.blog-post .author-info .author-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.blog-post .author-info .author-title {
    color: var(--secondary-color);
    font-size: 16px;
}

.blog-post blockquote {
    font-style: italic;
    font-size: 20px;
    margin: 40px 0;
    padding: 25px;
    border-left: 5px solid var(--warning);
    background-color: var(--white);
    border-radius: 5px;
}

.blog-post .highlight-box {
    background: linear-gradient(135deg, rgba(105, 105, 105, 0.05) 0%, rgba(169, 169, 169, 0.05) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

.blog-post .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.blog-post .stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post .stat-card:hover {
    transform: translateY(-5px);
}

.blog-post .stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--warning);
    display: block;
    margin-bottom: 10px;
}

.blog-post .stat-label {
    font-size: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post .cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #333333 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
}

.blog-post .cta-section h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.blog-post .cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
}

.blog-nav {
    background: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-post h1 {
        font-size: 32px;
    }
    
    .blog-post h2 {
        font-size: 26px;
    }
    
    .blog-post h3 {
        font-size: 20px;
    }
    
    .blog-post .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-post .author-info img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}