/* ══════════════════════════════════
   SHARED
══════════════════════════════════ */
section {
  padding: 88px 0;
}

.gallery-heading {
  padding: 0 0 32px;
}

.sl_ {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sf);
  margin-bottom: 10px;
  display: block;
}

.sh_ {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  color: var(--ch);
  line-height: 1.18;
  margin-bottom: 16px;
}

.sh_ em {
  font-style: italic;
  color: var(--sf);
}

.ss_ {
  font-size: .92rem;
  color: var(--tw);
  line-height: 1.85;
  max-width: 560px;
}

.orn {
  width: 48px;
  height: 3px;
  background: var(--sf);
  border-radius: 2px;
  margin-bottom: 24px;
}

.orn.cx {
  margin-left: auto;
  margin-right: auto;
}

.btn-p {
  background: var(--sf);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  font-size: .86rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(232, 114, 42, .32);
}

.btn-p:hover {
  background: var(--br);
  color: #fff;
  transform: translateY(-2px);
}

.btn-o {
  background: transparent;
  color: var(--br);
  padding: 12px 30px;
  border-radius: 50px;
  border: 1.5px solid var(--br);
  font-size: .86rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-o:hover {
  background: var(--br);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr);
}

.btn-wa:hover {
  background: #20b957;
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}

.phi {
  position: absolute;
  inset: 0;
}

.phi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: hz 10s ease forwards;
}

@keyframes hz {
  to {
    transform: scale(1);
  }
}

.pho {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 24, 8, .82) 0%, rgba(120, 70, 30, .54) 52%, rgba(232, 114, 42, .12) 100%);
}

.hring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .07);
  pointer-events: none;
}

.hr1 {
  width: 560px;
  height: 560px;
  top: -200px;
  right: -120px;
  animation: spR 28s linear infinite;
}

.hr2 {
  width: 300px;
  height: 300px;
  top: -40px;
  right: 110px;
  animation: spR 18s linear infinite reverse;
}

@keyframes spR {
  to {
    transform: rotate(360deg);
  }
}

.hshine {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sf), var(--gd), var(--sf));
}

.phc {
  position: relative;
  z-index: 2;
  padding: 60px 0 56px;
  width: 100%;
}

.htag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 18px;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fu .9s .15s both;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 16px;
  animation: fu .9s .3s both;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gdl);
}

.page-hero p {
  font-size: .98rem;
  color: rgba(255, 255, 255, .74);
  line-height: 1.8;
  max-width: 540px;
  animation: fu .9s .45s both;
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── photo count badges ── */
.hero-photo-counts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: fu .9s .6s both;
}

.hpc-item {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hpc-item i {
  color: var(--gdl);
  font-size: .78rem;
}

.hpc-item span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

/* ── BREADCRUMB ── */
.bc {
  background: var(--wh);
  border-bottom: 1px solid rgba(232, 114, 42, .1);
  padding: 14px 0;
}

.bc .breadcrumb {
  margin: 0;
  font-size: .76rem;
  align-items: center;
}

.bc .breadcrumb-item a {
  color: var(--sf);
  font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--sf);
  content: "›";
  font-size: 1rem;
}

/* ══════════════════════════════════
   6.4 VIDEO WALKTHROUGH
══════════════════════════════════ */
.video-section {
  background: var(--cr);
 padding: 48px 0 72px;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

/* .video-section {
  background: #4a2f24;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
} */

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 42, .13) 0%, transparent 70%);
}

.video-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sf), var(--gd), var(--sf));
}

.video-wrapper {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
  cursor: pointer;
  max-width: 860px;
  margin: 0 auto;
}

.video-thumb-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .5s;
}

.video-wrapper:hover .video-thumb-img {
  transform: scale(1.03);
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 0, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  transition: background .3s;
}

.video-wrapper:hover .video-thumb-overlay {
  background: rgba(20, 10, 0, .55);
}

.play-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232, 114, 42, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(232, 114, 42, .2), 0 0 0 32px rgba(232, 114, 42, .08);
  transition: transform .3s, box-shadow .3s;
}

.video-wrapper:hover .play-ring {
  transform: scale(1.12);
  box-shadow: 0 0 0 20px rgba(232, 114, 42, .25), 0 0 0 40px rgba(232, 114, 42, .1);
}

.play-ring i {
  color: #fff;
  font-size: 1.6rem;
  margin-left: 4px;
}

.video-duration {
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 600;
}

/* .video-section .sl_ {
  color: var(--gdl);
}

.video-section .sh_ {
  color: #fff;
}

.video-section .sh_ em {
  color: var(--gdl);
} */


.video-section .sl_ {
  color: var(--sf);
}

.video-section .sh_ {
  color: var(--ch);
}

.video-section .sh_ em {
  color: var(--sf);
}

/* video modal */
.vmodal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.vmodal.open {
  display: flex;
}

.vmodal-inner {
  max-width: 860px;
  width: 92%;
  position: relative;
  animation: fu .35s ease;
}

.vmodal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: .2s;
}

.vmodal-close:hover {
  background: var(--sf);
}

.vplaceholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, .05);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.vplaceholder i {
  font-size: 3.5rem;
  color: var(--sf);
  opacity: .5;
}

.vplaceholder p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .45);
  text-align: center;
  margin: 0;
}

/* ══════════════════════════════════
   6.2 FILTER BAR
══════════════════════════════════ */
.filter-bar {
  background: var(--wh);
  border-bottom: 1px solid var(--be);
  padding: 0;
  position: static;
  transition: box-shadow .3s;
}

/* .filter-bar.pinned {
  box-shadow: 0 4px 20px rgba(120, 70, 30, .1);
} */

.filter-inner {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  gap: 0;
}

.filter-inner::-webkit-scrollbar {
  display: none;
}

.ftab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 15px 20px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--tw);
  border-bottom: 3px solid transparent;
  border: none;
  background: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all .25s;
}

.ftab:hover {
  color: var(--sf);
}

.ftab.active {
  color: var(--sf);
  border-bottom: 3px solid var(--sf);
}

.ftab .count {
  background: var(--be);
  color: var(--tw);
  border-radius: 50px;
  font-size: .6rem;
  font-weight: 700;
  padding: 1px 7px;
  transition: .2s;
}

.ftab.active .count,
.ftab:hover .count {
  background: var(--sf);
  color: #fff;
}

/* ══════════════════════════════════
   6.3 PHOTO GRID (Masonry)
══════════════════════════════════ */
.gallery-section {
  background: var(--iv);
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.gallery-count {
  font-size: .78rem;
  color: var(--tw);
  font-weight: 500;
}

.gallery-count span {
  color: var(--sf);
  font-weight: 700;
  font-size: .9rem;
}

.view-toggle {
  display: flex;
  gap: 6px;
}

.vt-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1.5px solid var(--be);
  background: var(--wh);
  color: var(--tw);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .25s;
  font-size: .82rem;
}

.vt-btn.active,
.vt-btn:hover {
  background: var(--sf);
  border-color: var(--sf);
  color: #fff;
}

/* masonry grid */
.masonry-grid {
  columns: 4;
  column-gap: 14px;
}

.masonry-grid.cols-3 {
  columns: 3;
}

.masonry-grid.cols-2 {
  columns: 2;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* load in effect */
.gallery-item {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .5s ease, transform .5s ease;
}

.gallery-item.loaded {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.hidden {
  display: none;
}

/* overlay */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 8, .78) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 14px 14px;
}

.gallery-item:hover .gal-overlay {
  opacity: 1;
}

.gal-caption {
  font-size: .7rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
  line-height: 1.4;
  max-width: 80%;
}

.gal-expand {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: .25s;
}

.gallery-item:hover .gal-expand {
  background: var(--sf);
}

.gal-expand i {
  color: #fff;
  font-size: .75rem;
}

/* category badge */
.gal-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .35s;
}

.gallery-item:hover .gal-badge {
  opacity: 1;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .94);
  z-index: 9997;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox.open {
  display: flex;
}

.lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fu .35s ease;
}

.lb-img {
  max-width: 88vw;
  max-height: 78vh;
  border-radius: var(--r);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
  display: block;
  width: auto;
}

/* .lb-caption-bar {
  background: rgba(255, 255, 255, .08);
  border-radius: 50px;
  padding: 8px 20px;
  margin-top: 14px;
  display: done;
  align-items: center;
  gap: 10px;
} */


.lb-caption-bar {
  display: none;
}

.lb-caption-bar p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .85);
  margin: 0;
}

.lb-caption-bar .cat-pill {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gdl);
  background: rgba(232, 114, 42, .25);
  border-radius: 50px;
  padding: 2px 10px;
}

.lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: .2s;
}

.lb-close:hover {
  background: var(--sf);
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: .25s;
  z-index: 2;
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

.lb-prev:hover,
.lb-next:hover {
  background: var(--sf);
}

/* .lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .76rem;
  color: rgba(255, 255, 255, .5);
} */

.lb-counter {
  display: none;
}

/* ── LOAD MORE ── */
.load-more-wrap {
  text-align: center;
  padding: 32px 0 0;
}

#loadMoreBtn {
  display: inline-flex;
}

/* ══════════════════════════════════
   6.5 EVENT HIGHLIGHTS
══════════════════════════════════ */
.events-section {
  background: var(--cr);
}

.events-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--be) transparent;
  padding-bottom: 8px;
}

.events-scroll::-webkit-scrollbar {
  height: 4px;
}

.events-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.events-scroll::-webkit-scrollbar-thumb {
  background: var(--be);
  border-radius: 4px;
}

.event-card {
  flex: 0 0 240px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sc);
  transition: var(--tr);
  cursor: pointer;
  background: var(--wh);
  position: relative;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
}

.event-img {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.event-card:hover .event-img img {
  transform: scale(1.08);
}

.event-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 8, .65), transparent 60%);
}

.event-date-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--sf);
  color: #fff;
  border-radius: 9px;
  padding: 4px 10px;
  font-size: .62rem;
  font-weight: 600;
  text-align: center;
}

.event-body {
  padding: 14px 16px 16px;
}

.event-body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ch);
  margin-bottom: 3px;
}

.event-body p {
  font-size: .7rem;
  color: var(--tw);
  margin: 0;
  line-height: 1.5;
}

.event-body .event-link {
  font-size: .68rem;
  color: var(--sf);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.event-body .event-link:hover {
  color: var(--br);
}

/* ══════════════════════════════════
   CTA BAND
══════════════════════════════════ */
.cta-band {
  background: var(--ch);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 42, .15) 0%, transparent 70%);
}

.cta-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sf), var(--gd), var(--sf));
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 600;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gdl);
}

.cta-band p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  max-width: 500px;
  margin: 12px auto 0;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* FOOTER */
.footer {
  background: var(--ch);
  padding: 64px 0 0;
}

.fbr h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--sf);
  margin-bottom: 8px;
}

.fbr p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  max-width: 280px;
}

.fh {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sf);
  margin-bottom: 18px;
}

.fl {
  display: block;
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 10px;
  transition: color .2s;
}

.fl:hover {
  color: var(--sfl);
}

.fci {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.fci i {
  color: var(--sf);
  font-size: .9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.fci span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.fbot p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
  margin: 0;
}

.sic {
  display: flex;
  gap: 10px;
}

.si {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.si:hover {
  background: var(--sf);
}

.si i {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  transition: color .3s;
}

.si:hover i {
  color: #fff;
}

.fb {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fbt {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all .3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.fwa {
  background: #25D366;
  color: #fff;
}

.fwa:hover {
  background: #20b957;
  transform: scale(1.1);
}

.fca {
  background: var(--sf);
  color: #fff;
}

.fca:hover {
  background: var(--br);
  transform: scale(1.1);
}

/* ── RESPONSIVE ── */
@media(max-width:1199px) {
  .masonry-grid {
    columns: 3;
  }

  .masonry-grid.cols-2 {
    columns: 2;
  }
}

@media(max-width:767px) {
  section {
    padding: 64px 0;
  }

  .video-section {
    margin-bottom: 32px;
  }

  .hbtn {
    display: flex;
  }

  .nav-links-desktop {
    display: none !important;
  }

  .masonry-grid,
  .masonry-grid.cols-3,
  .masonry-grid.cols-2 {
    columns: 2;
  }

  .fbot {
    flex-direction: column;
    text-align: center;
  }

  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }

  /* .filter-bar {
    top: 68px;
  } */
}

@media(max-width:480px) {

  .masonry-grid,
  .masonry-grid.cols-3,
  .masonry-grid.cols-2 {
    columns: 1;
  }
}