/* Main Content */
.main-content {
    padding: 40px 20px 40px 20px;
}

/* Mobile responsive padding for header */
@media (max-width: 768px) {
    .main-content {
        padding: 80px 20px 40px 20px;
    }
}

.blog-page-title {
    text-align: center;
    margin-bottom: 60px;
}

.blog-page-title h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.blog-page-title p {
    font-size: 1.2rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

.filters {
    text-align: center;
    margin-bottom: 40px;
}

.tag-filter {
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    color: #ffffff;
    padding: 8px 16px;
    margin: 4px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tag-filter:hover,
.tag-filter.active {
    background: rgba(120, 119, 198, 0.3);
    border-color: #7877c6;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.post-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 119, 198, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.post-card.hidden {
    display: none;
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 24px;
}

.post-content h2 {
    margin-bottom: 12px;
}

.post-content h2 a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-content h2 a:hover {
    color: #7877c6;
}

.post-meta {
    color: #a1a1aa;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-page-title h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 80px 16px 40px 16px;
    }
}