/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 01 2025 | 15:36:36 */
/* Outer container: flex layout with wrapping */
.options-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center; /* boxes centered in container */
  align-items: flex-start; /* top-align all boxes */
  width: 100%;
}

/* Individual box */
.option-box {
  flex: 1 1 100px;       
  max-width: 200px;      
  padding: 1.2em;
  border-left: 4px solid var(--wp--preset--color--contrast, #333);
  border-radius: 12px;
  background-color: var(--wp--preset--color--accent-5, #f9f9f9);
	/*
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	*/
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;    /* heading centered if no icon */
  margin-top: 0;
}

/* Paragraph inside the box */
.option-box p {
  text-align: left;          /* left-align text under heading */
  margin: 0.5em 0 0 0;
  flex-grow: 1;
  font-size: 0.95em;
}

/* Stack boxes on very small screens */
@media (max-width: 600px) {
  .option-box {
    flex: 1 1 100px;     /* narrower boxes on small screens */
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;  /* center each box */
  }
}
