/* =============================================================================
   SEARCH PAGE STYLES
   
   Styles specific to the search results page (templates/core/search.html)
   ============================================================================= */

/* Hover card effects for search result cards */
.hover-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Icon boxes for service and industry result cards */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 134, 232, 0.1);
    border-radius: 12px;
}

/* Page header styling for search page */
.page-header.default-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0 3rem;
}
