/* Blog Grid Section */
.blog-grid-section {
/*     width: 100%; */
	gap:24px;
	display:flex;
	flex-direction:column;
    max-width: -webkit-fill-available;
    margin: 32px 80px 32px 80px;
}

.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
/*     box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
    transition: all 0.3s ease;
    border: 1px solid #D6D6D6;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-card-content {
    padding: 10px;
}

.blog-card-title {
    margin: 0 0 12px 0;
}

.blog-card-title a {
    text-decoration: none;
    color: #323232;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover {
    color: #1A75FF;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #323232;
}

.blog-date-wrapper,
.blog-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date-wrapper svg,
.blog-reading-time svg {
    flex-shrink: 0;
}



@media (max-width: 768px) {
    .blog-grid-section {
        padding: 0 0px;
		margin:0px !important;
		gap:0px;
    }
    
    .blog-grid-section h2 {
        margin: 40px 24px 0px 24px;
        font-size: 24px;
    }
    
    .blog-grid-container {
/*         display: flex;
        flex-direction: column; */
		display:grid;
        gap: 15px;
		margin:0px 20px;
    }
    
    .blog-card {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .blog-card-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .blog-card-content {
        padding: 16px 12px;
    }
	.blog-card-content h3{
		font-size:18px;
	}
    
    .blog-card-title a {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .blog-card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .load-more-container {
        text-align: center;
        margin-top: 15px 116.5px 24px 116.5px;
    }
	.load-more-btn{
		width:140px;
		height:36px;
		font-size:16px;
		margin-top:15px !important;
		margin-bottom:24px;
	}
}

@media (max-width: 480px) {
    .blog-grid-section {
        padding: 0 0px;
    }
    
    .blog-grid-section h2 {
        margin: 40px 24px 0px 24px;
        font-size: 16px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
	.blog-card-content h3{
		font-size:14px;
	}
    .blog-card-title a {
        font-size: 14px;
    }
	.load-more-btn{
		font-size:14px;
	}
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
}

.load-more-btn {
	width:180px;
	height:46px;
    background: white;
    color: #1A75FF;
    border: 1px solid #9D8CED;
    padding: inherit;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
/*     box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-width: 140px; */
}

.load-more-btn:hover {
    background: #f8fbff;
    border-color: #4285f4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
    transform: translateY(-1px);
}

.load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.2);
}



/* Optional: Add a subtle animation */
.load-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}
