.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  h1 {
    font-size: 2rem;
  }
}




/*Use Flexbox or Grid for adaptive sections:*/

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}



/*Use CSS to theme it visually:*/
.glightbox-clean .gslide-description {
  font-family: var(--font-body);
  color: var(--accent-color);
}





@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}