/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/
/* Add your custom styles here */
/**MM Edits**/
.subcat-grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  align-items: start;
  align-content: stretch;
  justify-items: start;
  justify-content: stretch;
  width: 100%;
  margin: 0 auto;
}

.subcat-item {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #f4f4f4;
  padding: 10px;
  transition: all 0.3s linear;
}
.subcat-item a {
  color: black;
  text-decoration: none;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 80px 3fr;
  gap: 10px;
}
.subcat-item a .subcat-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.subcat-item a .subcat-title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

/*Responsive*/
@media (min-width: 768px) {
  .subcat-grid-container {
    grid-template-columns: repeat(5, 1fr);
  }
  .subcat-item a {
    grid-template-columns: repeat(1, 1fr);
  }
  .subcat-item:hover {
    transform: scale(1.02);
    margin-top: -10px;
  }
}
@media (min-width: 1024px) {
  .subcat-grid-container {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1200px) {
  .subcat-grid-container {
    grid-template-columns: repeat(8, 1fr);
  }
}/*# sourceMappingURL=style.css.map */