.about-gallery {
  margin-top: 60px;
}
.about-gallery__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .about-gallery__container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}
.about-gallery__container a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  background: #f5f5f5;
  transition: transform 0.3s ease;
}
.about-gallery__container a:hover {
  transform: scale(1.02);
}
.about-gallery__container a .gallery-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-gallery__container a .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.about-gallery__container a:hover .play-video {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-detail {
  padding: 80px 0;
}
.gallery-detail__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.gallery-detail__header h2 {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 40px;
  color: #383838;
  margin: 0;
}
@media (max-width: 768px) {
  .gallery-detail__header h2 {
    font-size: 32px;
  }
}
.gallery-detail__block-selector select {
  min-width: 200px;
  padding: 10px 20px;
  border: 2px solid #C25D49;
  border-radius: 10px;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 500;
  color: #383838;
  background-color: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C25D49' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 45px;
}
.gallery-detail__block-selector select:focus {
  outline: none;
  border-color: #A04A38;
}
.gallery-detail__back {
  text-align: center;
}
.gallery-detail__back .btn {
  padding: 12px 30px;
  border: 2px solid #C25D49;
  color: #C25D49;
  background: transparent;
  border-radius: 40px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.gallery-detail__back .btn:hover {
  background: #C25D49;
  color: white;
}
.gallery-detail__alert {
  background: rgba(194, 93, 73, 0.6588235294);
  padding: 1rem 2rem;
  border-radius: 20px;
}
.gallery-detail__alert p {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  color: #222222;
}

/*# sourceMappingURL=gallery-detail.css.map */
