/*
Theme Name:   Hello Elementor Child
Theme URI:    https://elementor.com/hello-theme/
Description:  A child theme for Hello Elementor.
Author:       ExpertiseCanada
Author URI:   https://example.com
Template:     hello-elementor
Version:      1.0.0
Text Domain:  hello-elementor-child
*/

/* Customizing the expertise cards */
.ecc-expertise-card {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.ecc-expertise-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Adjusting the search results grid */
.ecc-list.ecc-layout-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Exporter card specific styling in search */
.ecc-exporter-card {
    border: 1px solid #d1d1d1;
    border-left: 5px solid #0073aa;
    border-radius: 4px;
    padding: 20px;
    background-color: #f9f9f9;
}

.ecc-exporter-legal-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.ecc-exporter-website {
    margin-bottom: 10px;
}