/* Container Grid */
.fsf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Individual Card */
.fsf-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.fsf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.fsf-card-body {
    padding: 20px;
    flex-grow: 1;
}

.fsf-city-tag {
    display: inline-block;
    background: #edf2f7;
    color: #4a5568;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.fsf-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #1a202c;
    line-height: 1.4;
}

.fsf-info-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    color: #4a5568;
    font-size: 14px;
}

.fsf-info-line .dashicons {
    margin-right: 8px;
    margin-top: 2px;
    color: #2271b1; /* WordPress Blue */
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Map Section */
.fsf-card-map {
    background: #f7fafc;
    border-top: 1px solid #edf2f7;
    height: 180px;
}

.fsf-card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer / Action Button */
.fsf-card-footer {
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid #edf2f7;
}

.fsf-btn-group {
    display: flex;
    gap: 10px;
}

.fsf-btn {
    flex: 1; /* Makes both buttons the same width */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.fsf-btn-phone { background: #2271b1; color: #fff; }
.fsf-btn-map { background: #f0f0f1; color: #3c434a; border: 1px solid #dcdcde; }

.fsf-btn-map:hover { background: #e0e0e1; }


.fsf-btn:hover {
    background: #135e96;
}
.fsf-filter-bar {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}
.fsf-filter-bar form { display: flex; gap: 10px; flex-wrap: wrap; }
.fsf-filter-bar input, .fsf-filter-bar select {
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    flex: 1;
    min-width: 150px;
}
.fsf-btn-filter { background: #2271b1; color: white; border: none; padding: 8px 20px; border-radius: 6px; cursor: pointer; }
.fsf-btn-reset { color: #646970; text-decoration: none; align-self: center; font-size: 14px; }
