/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

.minimalist-grid-container {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.minimalist-grid-container .grid-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.minimalist-grid-container .grid-item h3 {
  color: #495057;
  margin: 10px 0 5px;
  font-size: 16px;
}

.minimalist-grid-container .grid-item p {
  color: #6c757d;
  margin: 0;
  font-size: 14px;
}

.icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  fill: none;
  stroke: #495057;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grid-2x2 { 
  grid-template-columns: repeat(2, 1fr); 
}

@media (max-width: 768px) {
  .grid-2x2 { 
    grid-template-columns: 1fr; 
  }
}