/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/



/* === Global Styles === */
body {
  background-color: #000;
  color: #fff; /* Ensures text is visible on dark background */
}

/* === Feature List Styling === */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;       /* Change to 'center' or 'right' if needed */
  text-transform: none;   /* Options: none | uppercase | lowercase | capitalize */
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
  line-height: 1.8rem;
}


/* === Icon Styles (Modular) === */
.icon-check li::before {
  content: '✅';
  margin-right: 8px;
  font-size: 1.6rem;
}

.icon-star li::before {
  content: '⭐';
  margin-right: 8px;
  font-size: 1.6rem;
}

.icon-arrow li::before {
  content: '➡️';
  margin-right: 8px;
  font-size: 1.6rem;
}

