.intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission ul li {
  margin-left: 30px;
}

.locationHours {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.locationHours > * {
  flex: 1 1 auto;
}
.locationHours .location img {
  max-width: 200px;
}
.locationHours .location .address {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
}
.locationHours .location .address .mapImage {
  width: 100%;
  height: 200px;
  background-image: url("/images/location3_sw.png");
  background-size: cover;
}
.locationHours .hours .times {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.locationHours .hours .times > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.locationHours .hours .times > div div:first-child {
  font-weight: bold;
}
.locationHours .hours .times > div div:nth-child(2) {
  font-family: monospace;
}
@media screen and (width < 400px) {
  .locationHours .hours .times > div {
    gap: 0px;
    grid-template-columns: 1fr;
  }
}

.gallery {
  /* Assigning the specific positions */
  /* Handle mobile: Stack them or go 2-col */
  /* Handle mobile: Stack them or go 2-col */
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  /* Adjust height as needed */
  gap: 15px;
  grid-template-areas: "A A B B" "A A D D" "C E E F";
}
.gallery .gallery-item {
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.gallery .gallery-item:hover {
  transform: scale(1.02);
}
.gallery .gallery-item:nth-child(1) {
  grid-area: A;
}
.gallery .gallery-item:nth-child(2) {
  grid-area: B;
}
.gallery .gallery-item:nth-child(3) {
  grid-area: C;
}
.gallery .gallery-item:nth-child(4) {
  grid-area: D;
}
.gallery .gallery-item:nth-child(5) {
  grid-area: E;
}
.gallery .gallery-item:nth-child(6) {
  grid-area: F;
}
@media (max-width: 768px) {
  .gallery .gallery-grid {
    grid-template-areas: none;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery .gallery-item {
    grid-area: auto !important;
    height: 200px;
  }
}
@media (max-width: 500px) {
  .gallery .gallery-grid {
    grid-template-areas: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/*# sourceMappingURL=index.css.map */
