/*
Theme Name: GeneratePress Child - Frontier
Theme URI: https://frontiertinyhomes.com
Description: Child theme for GeneratePress, used for Frontier Tiny Homes custom content structures.
Author: Dan Kellogg
Author URI: https://frontiertinyhomes.com
Template: generatepress
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child-frontier
*/

/* -------------------------------------------------------------------------
   Add your custom CSS below this line.
   ------------------------------------------------------------------------- */

/* EXAMPLE: Basic styling for your custom model cards */

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.model-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.model-card h2 {
    font-size: 1.5rem;
    padding: 15px 15px 0;
}
