.elementor-326 .elementor-element.elementor-element-4ce95ab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-326 .elementor-element.elementor-element-7d2cb8b{text-align:center;}.elementor-326 .elementor-element.elementor-element-7d2cb8b .elementor-heading-title{font-family:"Aboreto", Sans-serif;font-weight:200;color:#E7AC16;}.elementor-326 .elementor-element.elementor-element-e00a09e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a6a3046 */:root{
  --frame-size: 12px;         /* border thickness - change to taste */
  --frame-radius: 12px;       /* inner image radius */
  --gold-dark: #b58518;
  --gold-mid:  #e0b23a;
  --gold-light:#ffd66b;
}

/* Grid layout (4 / 2 / 1) */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Card base */
.location-card{
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Frame container: creates the golden strip around the image */
.image-wrapper{
  position: relative;
  display: block;
  padding: var(--frame-size);
  border-radius: calc(var(--frame-radius) + var(--frame-size));
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid) 45%, var(--gold-light) 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25); /* depth */
  transition: transform .35s ease, box-shadow .35s ease;
}

/* subtle inner bevel for depth */
.image-wrapper::after{
  content: "";
  position: absolute;
  inset: var(--frame-size);
  border-radius: var(--frame-radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -6px 12px rgba(0,0,0,0.18);
  pointer-events: none;
}

/* Actual image */
.image-wrapper img{
  display: block;
  width: 100%;
  height: 260px;              /* change height as needed */
  object-fit: cover;
  border-radius: var(--frame-radius);
  vertical-align: middle;
}

/* Card hover */
.location-card:hover .image-wrapper{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 46px rgba(0,0,0,0.34);
}

/* Title styling + centered */
.location-title{
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #222; /* change if background dark */
  line-height: 1.2;
  padding: 0 6px;
}

/* Responsive */
@media (max-width: 1024px){
  .location-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .location-grid{ grid-template-columns: 1fr; }
}
</style>

<script>
/* small script to equalize title heights across cards (keeps rows aligned) */
(function(){
  function equalizeTitles(){
    const titles = document.querySelectorAll('.location-grid .location-title');
    if(!titles.length) return;
    titles.forEach(t => t.style.minHeight = '');
    let maxH = 0;
    titles.forEach(t => { const h = t.getBoundingClientRect().height; if(h > maxH) maxH = h; });
    titles.forEach(t => t.style.minHeight = (maxH) + 'px');
  }
  // run on load and on resize (debounced)
  window.addEventListener('load', equalizeTitles);
  let to; window.addEventListener('resize', () => { clearTimeout(to); to = setTimeout(equalizeTitles, 150); });
})();/* End custom CSS */