
/* Blog Listing Styles */

.blog-listing {
    padding: 120px 0;
    background-color: #0a0a0a;
    min-height: 100vh;
}

.blog-page-title {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: white;
    margin-bottom: 80px;
    text-align: center;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: background 0.3s ease;
}

.blog-post-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.blog-post-link {
    text-decoration: none;
    display: block;
}

.blog-post-title {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-post-excerpt {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.blog-read-more {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff201;
}

/* Blog Post Content Styles */

.blog-post-content {
    padding: 120px 0;
    background-color: #0a0a0a;
    min-height: 100vh;
}

.blog-post-content .container {
    max-width: 800px;
}

.blog-post-header {
    margin-bottom: 60px;
}

.blog-post-content h1 {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 40px;
}

.blog-post-content h2 {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    margin: 48px 0 24px;
}

.blog-post-content h3 {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: white;
    margin: 40px 0 20px;
}

.blog-post-content h4 {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff201;
    margin: 32px 0 16px;
}

.blog-post-content p {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 24px 0 32px 0;
    padding-left: 40px;
}

.blog-post-content li {
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.blog-post-content a {
    color: #fff201;
    text-decoration: none;
}

.blog-post-content a:hover {
    text-decoration: underline;
}

.blog-post-content strong {
    font-weight: 600;
    color: white;
}

.back-to-blog {
    display: inline-block;
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff201;
    text-decoration: none;
    margin-top: 60px;
    transition: opacity 0.3s ease;
}

.back-to-blog:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-listing {
        padding: 80px 0;
    }

    .blog-page-title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post-card {
        padding: 30px;
    }

    .blog-post-title {
        font-size: 28px;
    }

    .blog-post-excerpt {
        font-size: 16px;
    }

    .blog-post-content {
        padding: 80px 0;
    }

    .blog-post-content h1 {
        font-size: 40px;
    }

    .blog-post-content h2 {
        font-size: 32px;
    }

    .blog-post-content h3 {
        font-size: 24px;
    }

    .blog-post-content h4 {
        font-size: 22px;
    }

    .blog-post-content p,
    .blog-post-content li {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-page-title {
        font-size: 36px;
    }

    .blog-post-title {
        font-size: 24px;
    }

    .blog-post-content h1 {
        font-size: 32px;
    }

    .blog-post-content h2 {
        font-size: 28px;
    }

    .blog-post-content h3 {
        font-size: 22px;
    }

    .blog-post-content p,
    .blog-post-content li {
        font-size: 16px;
    }
}
