.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.blog-card {
    width: calc(33% - 20px);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.blog-image img {
    width: 100%;
    height: auto;
}
.blog-content {
    padding: 15px;
}
.blog-title {
    font-size: 1.5em;
    margin: 0 0 10px;
}
.blog-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}
.blog-excerpt {
    font-size: 1em;
    margin-bottom: 10px;
}
.blog-tags {
    font-size: 0.9em;
    color: #0073aa;
}


.blog-search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-search-form input[type="text"] {
    flex: 1;             
    min-width: 200px;    
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.blog-search-form .multiselect {
    min-width: 300px; 
}

.blog-search-form button {
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    height: 36px; 
}

.blog-search-form button:hover {
    background-color: #005f8d;
}

@media (max-width: 768px) {
    .blog-search-form {
        flex-direction: column;   
        align-items: stretch;  
    }
    
    .blog-search-form input[type="text"] {
    	flex: 1;             
    	min-width: 99% !important;    
    	padding: 8px !important;
    	border: 1px solid #ccc;
    	border-radius: 4px;
	}

    .blog-search-form .multiselect {
        min-width:99%;
    }
}