.find-store {
  width: 95%;
  margin: 12px auto 0 auto;
  position: relative;
  height: 350px;

  background: url("../images/img-7.jpg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  text-align: center;
}

/* dark overlay */

.find-store-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.49);
}

/* content */

.find-store-content {
  position: relative;
  z-index: 2;
}

/* title */

.find-store-title {
  font-size: 52px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  font-weight: 400;
}

/* address */

.find-store-address {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  font-family: var(--font-secondary);
  font-weight: 400;
}

.find-store-address {
  font-family: var(--font-primary);
}

/* buttons */

.find-store-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.find-store-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid #f0ece1;
  transition: 0.3s;
}

/* direction button */

.find-store-direction {
  background: #f0ece1;
  color: #763111;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

/* menu button */

.find-store-menu {
  background: transparent;
  color: white;
}

/* hover */

.find-store-btn:hover {
  opacity: 0.85;
}

/* responsive */

@media (max-width: 768px) {
  .find-store {
    height: 260px;
    padding: 20px;
  }

  .find-store-title {
    font-size: 34px;
  }

  .find-store-address {
    font-size: 16px;
  }
}

/* Wrapper */

.find-store-gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 20px;
  width: 95%;
  margin: auto;
  margin-bottom: 80px;
}

/* Left two tall images */

.find-store-gallery-1 {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Right collage */

.find-store-gallery-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Images */

.find-store-img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 100%;
}

/* Tall images */

.find-store-img-tall {
  height: 100%;
}

/* Wide image (top right) */

.find-store-img-long {
  grid-column: span 2;
  height: 350px;
}

.find-store-arrow-sec {
  padding: 50px 12px;
  display: flex;
  justify-content: center;
}

/* Responsive */

@media (max-width: 900px) {
  .find-store-gallery-wrapper {
    grid-template-columns: 1fr;
	gap: 20px 0px;
  }

  .find-store-gallery-1 {
    grid-template-columns: 1fr 1fr;
  }

  .find-store-gallery-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .find-store-header {
    flex-direction: column;
    text-align: center;
  }

  .find-store-header-left,
  .find-store-header-right {
    font-size: 42px;
  }

  .find-store-gallery-1 {
    margin-bottom: 20px;
  }

  .find-store-gallery-1,
  .find-store-gallery-2 {
    grid-template-columns: 1fr;
  }

  .find-store-img {
    height: 260px;
    grid-column: span 2;
  }

  .find-store-gallery-wrapper {
    gap: 0;
  }

  .find-store-btn {
    font-size: 12px;
  }

  .find-store-btn svg {
    width: 12px;
    height: 12px;
  }

  .find-store-arrow-sec {
    padding: 25px 12px;
    display: flex;
    justify-content: center;
  }

  .find-store-gallery-wrapper {
    margin-bottom: 40px;
  }
}
