/*
Theme Name: Twenty Twenty-One Child
Theme URI: https://wordpress.org/themes/twentytwentyone/
Description: Twenty Twenty-One Child Theme
Author: the WordPress team
Author URI: https://wordpress.org/
Template: twentytwentyone
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentychild
Tags:two-columns, left-sidebar, right-sidebar, light, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/
.highlight {
    background: yellow;
    font-weight: bold;
}

/* Wrapper */
.search-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.search-card {
    width: calc(33.33% - 20px);
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}

.search-card:hover {
    transform: translateY(-5px);
}

.search-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* 📄 Normal list */
.search-list {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}


.highlight {
    background: yellow;
    font-weight: bold;
}

.search-list h2{
	font-size:28px;
	margin-bottom:15px;
}
@media (max-width: 992px) {
    .search-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .search-card {
        width: 100%;
    }
}