/* === SIMPLIFIED BLOG LISTING STYLES === */
.blog-section {
    padding: 100px 0;
    background: var(--gradient-dark);
}

/* Blog Cards - All Equal Size */
.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    /*transform: translateY(-5px);*/
    /*background: rgba(255, 255, 255, 0.08);*/
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
}

.blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Blog Image */
.blog-image {
    position: relative;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Blog Content */
.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar */
.blog-sidebar {
    /*position: sticky;*/
    /*top: 100px;*/
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.widget-title {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: opacity 0.3s;
}

.recent-post:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post:hover {
    opacity: 0.8;
}

.recent-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.recent-post-info {
    flex: 1;
}

.recent-post-info h5 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.post-date {
    color: var(--gray-400);
    font-size: 0.8rem;
}

/* Categories */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gray-300);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.category-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cat-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-name i {
    color: var(--primary-light);
}

.cat-count {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
    min-width: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-image img {
        height: 180px;
    }

    .blog-title {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
}