/*
Theme Name: GeneratePress Child
Author: 
Description: Your description goes here
Version: 1.0
Template: generatepress

This is the child theme for GeneratePress theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
/* SERVICE DIRECTORY GRID */
.service-firm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* CARD STYLE */
.service-firm-card {
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* HOVER EFFECT */
.service-firm-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* TITLE */
.service-firm-card__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-firm-card__title a {
    text-decoration: none;
    color: #1e73be;
}

/* LINKS */
.service-firm-card a {
    color: #1e73be;
    text-decoration: underline;
}

/* SECTION HEADING */
.service-firm-results__heading {
    margin-top: 30px;
    font-size: 24px;
}