/* Styles for the blog page */
.blog-main {
    padding-top: 80px;
}

.blog-hero {
    text-align: center;
    padding: 4rem 0;
    border-bottom: 1px solid #30363d;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.blog-hero p {
    font-size: 1.2rem;
    color: #c9d1d9;
}

.blog-content {
    padding: 4rem 0;
}

.featured-post {
    margin-bottom: 4rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    display: block;
    background-color: #0D1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 2rem;
    text-decoration: none;
    color: #c9d1d9;
    transition: transform 0.2s;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: #58a6ff;
}

.post-card.featured {
    grid-column: 1 / -1;
}

.post-card h2, .post-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.post-card.featured h2 {
    font-size: 2rem;
}

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

.read-more {
    color: #58a6ff;
    font-weight: 600;
}

/* Styles for individual blog posts */
.blog-post-main {
    padding-top: 80px;
}

.blog-post {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.blog-post h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.blog-post p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
