@charset "utf-8";
/* CSS Document */

.error {
  color: red  !important;
 font-size: 12px;
}

.wp-error{
	text-align:center;
	font-size:15px;
}

.js-errors {
   /* background:#f93337;
    border-radius:4px;*/
    color:#FFF;
    font-size: 12px;
    text-align: center;
    list-style-type: none;
   /* margin-bottom:1em;
    padding:1em;*/
}

.image-container-home {
  width: 100%;
  background-color: #D8BFA3; /* Dark beige */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px; /* Healthy space between images */
  padding: 15px;
  box-sizing: border-box;
}

.image-container-home img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px; /* Optional: soft corners */
}

@media (max-width: 768px) {
  .image-container-home {
	justify-content: space-around;
    gap: 8px; /* Healthy space between images */
    padding: 7px;
  }
    .image-container-home img {

	width: 145px;
	height: 145px;
  }
    }