@charset "UTF-8";
.flashmob-gallery {
  column-count: 4;
  column-gap: 18px;
  margin: 32px 0 56px;
}
.flashmob-gallery__card {
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(172, 158, 124, 0.28);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 35, 22, 0.1);
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.55s ease var(--flashmob-delay, 0ms), transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) var(--flashmob-delay, 0ms), box-shadow 0.3s ease, border-color 0.3s ease;
}
.flashmob-gallery__card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.flashmob-gallery__card:hover {
  border-color: rgba(172, 158, 124, 0.7);
  box-shadow: 0 14px 32px rgba(42, 35, 22, 0.18);
}
.flashmob-gallery__image {
  position: relative;
  display: block;
  background: #ded8cb;
  overflow: hidden;
}
.flashmob-gallery__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(31, 25, 15, 0.42));
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.flashmob-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.flashmob-gallery__image:hover img, .flashmob-gallery__image:focus img {
  transform: scale(1.05);
}
.flashmob-gallery__image:hover::after, .flashmob-gallery__image:focus::after {
  opacity: 0.72;
}
.flashmob-gallery__body {
  position: relative;
  min-height: 86px;
  padding: 14px 18px 16px;
  background: #fff;
}
.flashmob-gallery__name {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.flashmob-gallery__link {
  color: #8d7b58;
  font-size: 13px;
  text-decoration: none;
}
.flashmob-gallery__link::after {
  margin-left: 7px;
  content: "→";
  transition: margin-left 0.2s ease;
}
.flashmob-gallery__link:hover, .flashmob-gallery__link:focus {
  color: #50442e;
}
.flashmob-gallery__link:hover::after, .flashmob-gallery__link:focus::after {
  margin-left: 11px;
}
.flashmob-gallery__note {
  margin: 28px 0 56px;
}

@media (max-width: 991px) {
  .flashmob-gallery {
    column-count: 3;
  }
}
@media (max-width: 575px) {
  .flashmob-gallery {
    column-count: 2;
    column-gap: 12px;
  }
  .flashmob-gallery__card {
    margin-bottom: 12px;
  }
  .flashmob-gallery__body {
    min-height: 80px;
    padding: 12px;
  }
  .flashmob-gallery__body::before {
    left: 12px;
  }
  .flashmob-gallery__name {
    font-size: 13px;
  }
  .flashmob-gallery__link {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .flashmob-gallery__card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .flashmob-gallery__image img, .flashmob-gallery__link::after {
    transition: none;
  }
}

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