.blog-hero {
    background: #000000;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(29, 184, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1db857;
    position: relative;
    z-index: 1;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-content {
    padding: 4rem 0;
    background: #0a0a0a;
    min-height: 60vh;
}

.blog-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background: #121212;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(29, 184, 87, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1db857 0%, #17a047 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 184, 87, 0.3);
    box-shadow: 0 8px 24px rgba(29, 184, 87, 0.15);
}

.blog-post:hover::before {
    opacity: 1;
}

.blog-post.featured {
    border: 2px solid rgba(29, 184, 87, 0.3);
    background: #121212;
}

.blog-post.featured::before {
    opacity: 1;
    width: 5px;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-category {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(29, 184, 87, 0.15);
    color: #1db857;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(29, 184, 87, 0.3);
}

.blog-post.featured .post-category {
    background: rgba(29, 184, 87, 0.25);
    border-color: rgba(29, 184, 87, 0.5);
}

.post-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.post-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

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

.post-content p:last-child {
    margin-bottom: 0;
}

.post-content h3 {
    color: #1db857;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.post-content ul,
.post-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.post-content strong {
    color: #ffffff;
    font-weight: 700;
}

.post-footer {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-author {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 0 3rem;
    }

    .blog-hero-title {
        font-size: 2.2rem;
    }

    .blog-hero-subtitle {
        font-size: 1rem;
    }

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

    .blog-post {
        padding: 1.5rem;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .post-header {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 1.8rem;
    }

    .blog-post {
        padding: 1.2rem;
    }

    .post-title {
        font-size: 1.3rem;
    }

    .post-category {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .post-date {
        font-size: 0.8rem;
    }
}
