.acyve-blog-container {
    padding: 2rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.acyve-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.acyve-blog-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    min-height: 420px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.acyve-blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(123, 104, 238, 0.3);
    border-color: rgba(123, 104, 238, 0.4);
}

.acyve-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
    width: 100%;
}

.acyve-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

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

.acyve-blog-card:hover .acyve-post-image {
    transform: scale(1.1);
}

.acyve-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.acyve-post-title {
    color: #1f1f1f;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.acyve-post-description {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.acyve-view-button {
    align-self: flex-end;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(45deg, #7B68EE, #5F9EA0);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

.acyve-view-button:hover {
    background: linear-gradient(45deg, #6A5ACD, #00BFFF);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 104, 238, 0.4);
}

.acyve-view-button:active {
    transform: translateY(0);
}

.acyve-view-button svg {
    transition: transform 0.3s ease;
}

.acyve-view-button:hover svg {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .acyve-blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .acyve-blog-container {
        padding: 1rem;
    }
    
    .acyve-blog-grid {
        gap: 1.5rem;
    }
    
    .acyve-blog-card {
        min-height: 380px;
    }
    
    .acyve-image-container {
        height: 180px;
    }
    
    .acyve-card-content {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .acyve-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .acyve-blog-card {
        max-width: 100%;
    }
    
    .acyve-view-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Loading Animation */
@keyframes acyve-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.acyve-blog-card {
    animation: acyve-fadeIn 0.6s ease forwards;
    opacity: 0;
}

.acyve-blog-card:nth-child(1) { animation-delay: 0.1s; }
.acyve-blog-card:nth-child(2) { animation-delay: 0.2s; }
.acyve-blog-card:nth-child(3) { animation-delay: 0.3s; }
.acyve-blog-card:nth-child(4) { animation-delay: 0.4s; }
.acyve-blog-card:nth-child(5) { animation-delay: 0.5s; }