/*
Theme Name:         Sage Starter Theme
Theme URI:          https://roots.io/sage/
Description:        Sage is a WordPress starter theme. <a href="https://github.com/roots/sage">Contribute on GitHub</a>
Version:            8.5.1
Author:             Roots
Author URI:         https://roots.io/
Text Domain:        sage

License:            MIT License
License URI:        http://opensource.org/licenses/MIT
*/

.grid {
    display: grid;
    grid-template-columns: repeat(3,auto);
    gap:25px;
}

@media screen and (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2,auto);
        gap:15px;
    }
}

@media screen and (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(1,auto);
    }
}

@media screen and (min-width:768px) {
    .md-h-100 {
        height: 100%;
    }
}