/* Blog specific styles only */

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.blog-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Blog Posts List */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 1px;
    max-width: 400px;
    margin: 0 auto;
}

.blog-post {
    background: transparent;
    border-radius: 0;
    padding: 16px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-post:nth-child(1) { animation-delay: 0.1s; }
.blog-post:nth-child(2) { animation-delay: 0.15s; }
.blog-post:nth-child(3) { animation-delay: 0.2s; }
.blog-post:nth-child(4) { animation-delay: 0.25s; }
.blog-post:nth-child(5) { animation-delay: 0.3s; }
.blog-post:nth-child(6) { animation-delay: 0.35s; }
.blog-post:nth-child(7) { animation-delay: 0.4s; }
.blog-post:nth-child(8) { animation-delay: 0.45s; }
.blog-post:nth-child(9) { animation-delay: 0.5s; }
.blog-post:nth-child(10) { animation-delay: 0.55s; }
.blog-post:nth-child(n+11) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(8px);
}

.blog-post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #1a1a1a;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-emoji {
    font-size: 28px;
    line-height: 1;
}

.blog-post-content {
    flex: 1;
}

.blog-post-title {
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive Design - Blog specific only */
@media (max-width: 768px) {
    .blog-title {
        font-size: 36px;
    }

    .blog-description {
        font-size: 18px;
    }

    .blog-posts {
        max-width: 350px;
    }

    .blog-post {
        padding: 12px 0;
        gap: 12px;
    }

    .blog-post-image {
        width: 50px;
        height: 50px;
    }

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