/* Blog Articles Styles */
.blog-article {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.blog-article:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.blog-article .blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-article .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.blog-article:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-title {
    color: #f8f9fa;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-category {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-read-time {
    color: rgba(248, 249, 250, 0.7);
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.blog-article:hover .blog-read-more {
    opacity: 1;
    transform: translateX(0);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-article:hover .blog-read-more i {
    transform: translateX(5px);
}