/* Custom CSS for Search Results */
.search-results {
    margin: 20px 0;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
}

.grid-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.grid-item {
    width: 25%;
    /* Adjust the width based on your grid layout */
    padding: 0 15px;
    margin-bottom: 30px;
}

.search-result {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
}

.search-result-thumbnail img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.taxonomy-pairs {
    margin-top: 15px;
}

/* Load More Button */
.load-more-btn {
    text-align: center;
    margin-top: 20px;
}

.load-more-btn a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.load-more-btn a:hover {
    background-color: #005580;
}