:where(.aura-portfolio-grid-wrap, .aura-portfolio-toolbar, .aura-project-single){
  --aura-font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --aura-font-heading: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =====================
   GRID
===================== */
.aura-portfolio-grid,
.aura-skeleton-grid{
  display:grid;
  /* Default = 3 columns on normal desktops */
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:24px;
}

/* 1 col on mobile */
@media (max-width: 767px){
  .aura-portfolio-grid,
  .aura-skeleton-grid{ grid-template-columns:repeat(1, minmax(0,1fr)) !important; }
}

/* 2 cols on tablets / small laptops */
@media (min-width: 768px) and (max-width: 1099px){
  .aura-portfolio-grid,
  .aura-skeleton-grid{ grid-template-columns:repeat(2, minmax(0,1fr)) !important; }
}

/* 3 cols on normal desktops */
@media (min-width: 1100px) and (max-width: 1499px){
  .aura-portfolio-grid,
  .aura-skeleton-grid{ grid-template-columns:repeat(3, minmax(0,1fr)) !important; }
}

/* 4 cols only on large desktop 1500px+ */
@media (min-width: 1500px){
  .aura-portfolio-grid,
  .aura-skeleton-grid{ grid-template-columns:repeat(4, minmax(0,1fr)) !important; }
}

/* =====================
   CARD (YOUR DESIGN)
   Scoped to plugin wrapper to avoid conflicts
===================== */
.aura-portfolio-grid-wrap .mqc-card{
  width:100%;
  font-family:var(--aura-font-body) !important;
}

.aura-portfolio-grid-wrap,
.aura-portfolio-toolbar{
  font-family:var(--aura-font-body) !important;
}

/* Ensure the wrapper can grow naturally inside builders (Elementor),
   and avoid mobile footer overlap/cropping issues. */
.aura-portfolio-grid-wrap{
  position:relative;
  overflow:visible !important;
}

@media (max-width: 767px){
  .aura-portfolio-grid-wrap{ padding-bottom:140px; }
}

.aura-portfolio-grid-wrap .mqc-media{
  width:100%;
  overflow:hidden;
  position:relative;
  /* Robust sizing across iOS/embedded browsers (avoid 0-height cards) */
  height:0;
  padding-top:100%;
}

/* Disable older pseudo-fallback (we use padding-top on the container itself) */
.aura-portfolio-grid-wrap .mqc-media::before{ content:none !important; }

.aura-portfolio-grid-wrap .mqc-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.aura-portfolio-grid-wrap .mqc-overlay-link{
  position:absolute;
  inset:0;
  display:block;
  text-decoration:none;
  z-index:2;
}

/* Keep compatibility if a button-based overlay is ever used again. */
.aura-portfolio-grid-wrap button.mqc-overlay-link{
  background:transparent;
  border:0;
  padding:0;
  margin:0;
  font:inherit;
  color:inherit;
  text-align:inherit;
}

/* Grid behavior: overlay appears on hover */
.aura-portfolio-grid-wrap .mqc-min-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px 20px 20px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.35) 40%,
    rgba(0,0,0,0) 100%
  );
  opacity:0;
  transition:opacity .25s ease;
  pointer-events:none;
}

.aura-portfolio-grid-wrap .mqc-card:hover .mqc-min-overlay{
  opacity:1;
  pointer-events:auto;
}

.aura-portfolio-grid-wrap .mqc-card:hover .mqc-media img{
  transform:scale(1.05);
}

.aura-portfolio-grid-wrap .mqc-tags{
  display:flex;
  gap:6px;
  margin-bottom:8px;
  flex-wrap:wrap;
}

.aura-portfolio-grid-wrap .mqc-tag{
  font-family:var(--aura-font-body);
  font-size:10px;
  font-weight:500;
  color:#fff;
  background:rgba(255,255,255,.18);
  padding:7px 10px;
  border-radius:0px;
  line-height:1;
}

.aura-portfolio-grid-wrap .mqc-title-row{
  display:flex;
  align-items:center;
  gap:8px;
}

.aura-portfolio-grid-wrap .mqc-title{
  font-family:var(--aura-font-heading) !important;
  font-size:20px;
  font-weight:600;
  color:#fff;
  margin:0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.aura-portfolio-grid-wrap .mqc-arrow{
  width:18px;
  fill:#fff;
  transition:transform .35s ease;
  flex:0 0 auto;
}

.aura-portfolio-grid-wrap .mqc-card:hover .mqc-arrow{
  transform:translateX(3px);
}

/* Infinite scroll trigger (observed by JS) */
.aura-portfolio-grid-wrap .aura-portfolio-scroll-trigger{
  width:100%;
  height:1px;
}

@media (max-width: 768px){
  .aura-portfolio-grid-wrap .mqc-title{font-size:18px;}
}

/* =====================
   FILTER BAR (MATCH SCREENSHOT)
   - Full-width: left aligned filters, right aligned sort
   - Light, minimal buttons with checkmark when selected
   - Modern filter panel
===================== */
.aura-portfolio-toolbar{
  font-family:var(--aura-font-body) !important;
  width:100% !important;
  max-width:none !important;
  display:flex !important;
  align-items:center;
  justify-content:space-between !important;
  gap:14px;
  position:relative;
  z-index:10;
}

/* Consistent button sizing + subtle hover darken (no theme yellow) */
.aura-portfolio-toolbar{
  --aura-btn-h: 42px;
  --aura-btn-bg: #fff;
  --aura-btn-bg-hover: #f2f2f2;
  --aura-btn-bd: #bdbdbd;
  --aura-btn-fg: #2b2b2b;
}

.aura-portfolio-toolbar__left{
  display:flex !important;
  align-items:center;
  gap:12px;
  flex:1 1 auto;
  min-width:0;
}

.aura-portfolio-toolbar__right{
  display:flex !important;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
  margin-left:auto !important;
}

/* Filter toggle button */
.aura-filter-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 14px;
  border:1px solid var(--aura-btn-bd) !important;
  border-radius:0 !important;
  background:var(--aura-btn-bg) !important;
  color:var(--aura-btn-fg) !important;
  font-family:var(--aura-font-body) !important;
  font-size:13px;
  cursor:pointer;
  letter-spacing:.1px;
  min-height:var(--aura-btn-h);
}

.aura-filter-toggle:hover,
.aura-filter-toggle:focus,
.aura-filter-toggle:active{
  background:var(--aura-btn-bg-hover) !important;
  color:var(--aura-btn-fg) !important;
  border-color:var(--aura-btn-bd) !important;
  box-shadow:none !important;
  outline:none !important;
}

/* Lucide SVG icons (in markup) */
.aura-filter-toggle__icon,
.aura-sort__icon{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity:.9;
}

.aura-lucide{
  width:18px;
  height:18px;
  stroke:#2b2b2b;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}

/* Active filter chips */
.aura-active-filters{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  min-width:0;
}

.aura-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid var(--aura-btn-bd) !important;
  border-radius:0 !important;
  background:var(--aura-btn-bg) !important;
  color:var(--aura-btn-fg) !important;
  font-family:var(--aura-font-body) !important;
  font-size:13px;
  letter-spacing:.1px;
  cursor:pointer;
  min-height:var(--aura-btn-h);
}

.aura-chip:hover,
.aura-chip:focus,
.aura-chip:active{
  background:var(--aura-btn-bg-hover) !important;
  color:var(--aura-btn-fg) !important;
  border-color:var(--aura-btn-bd) !important;
  box-shadow:none !important;
  outline:none !important;
}

.aura-chip__icon{
  width:auto;
  height:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  font-size:14px;
  line-height:1;
  margin-right:2px;
}
.aura-chip .aura-chip__icon::before{content:'✓';}

/* Sort control styled to match */
.aura-sort-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.aura-sort-label{
  display:none; /* keep UI minimal; label is still present in markup for accessibility */
}

.aura-sort-control{
  position:relative;
  display:inline-flex;
  align-items:center;
}

/* Faux button label (matches the Project Filter button style) */
.aura-sort-faux{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:10px 38px 10px 14px;
  border:1px solid var(--aura-btn-bd) !important;
  border-radius:0 !important;
  background:var(--aura-btn-bg) !important;
  color:var(--aura-btn-fg) !important;
  font-family:var(--aura-font-body) !important;
  font-size:13px;
  letter-spacing:.1px;
  line-height:1;
  white-space:nowrap;
  min-height:var(--aura-btn-h);
}

.aura-sort__icon{
  position:absolute;
  right:14px;
  pointer-events:none;
}

.aura-sort{
  /* Keep the real select for logic, but make it act like a clickable overlay */
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:pointer;
}

.aura-sort:hover,
.aura-sort:focus,
.aura-sort:active{
  background:transparent !important;
  color:var(--aura-btn-fg) !important;
  border-color:var(--aura-btn-bd) !important;
  box-shadow:none !important;
  outline:none !important;
}

/* Apply hover to the visible faux button when select is hovered */
.aura-sort-control:hover .aura-sort-faux,
.aura-sort-control:focus-within .aura-sort-faux{
  background:var(--aura-btn-bg-hover) !important;
  border-color:var(--aura-btn-bd) !important;
}

.aura-sort option{color:#111;}

/* Panel */
.aura-filter-panel{
  position:absolute;
  left:0;
  top:52px;
  width:min(1120px,100%);
  border:1px solid #d6d6d6;
  background:#fff;
  box-shadow:0 12px 40px rgba(0,0,0,.12);
  padding:16px;
  border-radius:10px;
}

.aura-filter-panel__inner{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}

@media (max-width: 1100px){
  .aura-filter-panel__inner{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

.aura-filter-group{
  border:1px solid #e3e3e3;
  padding:14px;
  border-radius:10px;
}

.aura-filter-group__title{
  color:#2b2b2b;
  font-size:12px;
  font-weight:600;
  margin-bottom:10px;
}

.aura-filter-group__options{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.aura-filter-option{
  border:1px solid var(--aura-btn-bd) !important;
  background:var(--aura-btn-bg) !important;
  color:var(--aura-btn-fg) !important;
  padding:10px 12px;
  font-size:12px;
  cursor:pointer;
  letter-spacing:.1px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:0 !important;
  min-height:var(--aura-btn-h);
}

.aura-filter-option:hover,
.aura-filter-option:focus,
.aura-filter-option:active{
  background:var(--aura-btn-bg-hover) !important;
  color:var(--aura-btn-fg) !important;
  border-color:var(--aura-btn-bd) !important;
  box-shadow:none !important;
  outline:none !important;
}

.aura-filter-option::before{
  content:'';
  width:14px;
  height:14px;
  border:1px solid #bdbdbd;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  line-height:1;
}

.aura-filter-option.is-active{
  border-color:#2b2b2b;
}
.aura-filter-option.is-active::before{
  content:'✓';
  border-color:#2b2b2b;
}

.aura-filter-panel__footer{
  grid-column:1 / -1;
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:8px;
}

.aura-clear-all,
.aura-close-panel{
  border:1px solid var(--aura-btn-bd) !important;
  border-radius:0 !important;
  background:var(--aura-btn-bg) !important;
  color:var(--aura-btn-fg) !important;
  padding:10px 14px;
  font-size:12px;
  cursor:pointer;
  letter-spacing:.1px;
  border-radius:0 !important;
  min-height:var(--aura-btn-h);
}

.aura-clear-all:hover,
.aura-clear-all:focus,
.aura-clear-all:active,
.aura-close-panel:hover,
.aura-close-panel:focus,
.aura-close-panel:active{
  background:var(--aura-btn-bg-hover) !important;
  color:var(--aura-btn-fg) !important;
  border-color:var(--aura-btn-bd) !important;
  box-shadow:none !important;
  outline:none !important;
}

/* Responsive toolbar: allow wrap on small screens */
@media (max-width: 767px){
  .aura-portfolio-toolbar{flex-wrap:wrap;}
  .aura-portfolio-toolbar__right{width:100%; justify-content:flex-start;}
  .aura-sort-wrap{width:100%; justify-content:space-between;}

  /* Mobile only: keep active tags checked inside the filter panel,
     but don't show the chips next to the filter button */
  .aura-active-filters{display:none !important;}
}

/* Mobile filter panel usability: avoid horizontal overflow and allow scrolling */
@media (max-width: 767px){
  .aura-filter-panel{
    position:fixed;
    left:15px;
    right:15px;
    top:80px;
    width:auto;
    max-height:calc(100vh - 120px);
    overflow:hidden;
    z-index:9999;
  }

  .aura-filter-panel__inner{
    grid-template-columns:1fr;
    max-height:calc(100vh - 180px);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
}

/* =====================
   SKELETON (MATCH CARD LAYOUT)
   Note: JS outputs aura-skel-* classes. We support both.
===================== */
.aura-skeleton-card,
.aura-skel-card{
  position:relative;
  overflow:hidden;
  border:1px solid #e3e3e3;
  background:#fff;
}

.aura-skeleton-media,
.aura-skel-media{
  position:relative;
  aspect-ratio:1/1;
}

.aura-skeleton-media::before,
.aura-skel-img{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.04);
}

.aura-skeleton-overlay,
.aura-skel-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px 20px 20px;
  background:linear-gradient(to top, rgba(0,0,0,.12) 0%, rgba(0,0,0,.06) 40%, rgba(0,0,0,0) 100%);
}

.aura-skeleton-tags,
.aura-skel-tags{
  display:flex;
  gap:6px;
  margin-bottom:8px;
  flex-wrap:wrap;
}

.aura-skeleton-tag,
.aura-skel-tag{
  height:24px;
  width:64px;
  background:rgba(0,0,0,.06);
}

.aura-skeleton-title-row,
.aura-skel-title-row{
  display:flex;
  align-items:center;
  gap:8px;
}

.aura-skeleton-title,
.aura-skel-title{
  height:18px;
  width:70%;
  background:rgba(0,0,0,.06);
}

.aura-skeleton-arrow,
.aura-skel-arrow{
  height:18px;
  width:18px;
  background:rgba(0,0,0,.06);
}

/* shimmer */
.aura-skeleton-card::after,
.aura-skel-card::after{
  content:'';
  position:absolute;
  inset:0;
  transform:translateX(-100%);
  background:linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.06) 50%, rgba(0,0,0,0) 100%);
  animation:auraShimmer 1.1s infinite;
}

@keyframes auraShimmer{100%{transform:translateX(100%);}}

/* Fallback empty */
.aura-empty{padding:18px;border:1px solid rgba(255,255,255,.10);color:#fff;}
.aura-img-fallback{position:absolute;inset:0;background:rgba(255,255,255,.04);}

/* JS skeleton uses aura-skel-* classes; keep CSS compatible without touching logic */
.aura-skel-media{position:relative;aspect-ratio:1/1;}
.aura-skel-img{position:absolute;inset:0;background:rgba(0,0,0,.06);}
.aura-skel-overlay{position:absolute;left:0;right:0;bottom:0;padding:18px 20px 20px;background:linear-gradient(to top, rgba(0,0,0,.10) 0%, rgba(0,0,0,.06) 40%, rgba(0,0,0,0) 100%);} 
.aura-skel-tags{display:flex;gap:6px;margin-bottom:8px;flex-wrap:wrap;}
.aura-skel-tag{height:24px;width:64px;background:rgba(0,0,0,.08);}
.aura-skel-title-row{display:flex;align-items:center;gap:8px;}
.aura-skel-title{height:18px;width:70%;background:rgba(0,0,0,.08);} 
.aura-skel-arrow{height:18px;width:18px;background:rgba(0,0,0,.08);} 

/* Hard overrides against theme/Elementor button hover (stop yellow) */
.aura-portfolio-toolbar .aura-clear-all:hover,
.aura-portfolio-toolbar .aura-clear-all:focus,
.aura-portfolio-toolbar .aura-clear-all:active,
.aura-portfolio-toolbar .aura-close-panel:hover,
.aura-portfolio-toolbar .aura-close-panel:focus,
.aura-portfolio-toolbar .aura-close-panel:active,
.aura-portfolio-toolbar .aura-filter-toggle:hover,
.aura-portfolio-toolbar .aura-filter-toggle:focus,
.aura-portfolio-toolbar .aura-filter-toggle:active,
.aura-portfolio-toolbar .aura-chip:hover,
.aura-portfolio-toolbar .aura-chip:focus,
.aura-portfolio-toolbar .aura-chip:active,
.aura-portfolio-toolbar .aura-sort-control:hover,
.aura-portfolio-toolbar .aura-sort-control:focus,
.aura-portfolio-toolbar .aura-sort-control:active,
.aura-portfolio-toolbar .aura-filter-option:hover,
.aura-portfolio-toolbar .aura-filter-option:focus,
.aura-portfolio-toolbar .aura-filter-option:active{
  background: var(--aura-btn-bg-hover) !important;
  border-color: var(--aura-btn-bd) !important;
  color: var(--aura-btn-fg) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Ensure grid is never collapsed to 0 height on live */
.aura-portfolio-grid-wrap{min-height: 30px;}
.aura-portfolio-grid{
  display:grid !important;
  gap:15px !important;
  row-gap:15px !important;
  column-gap:15px !important;
}



/* ===== Skeleton cards (per-card) ===== */
.aura-skel-card{position:relative; overflow:hidden; width:100%;}
.aura-skel-media{position:relative; overflow:hidden;}
.aura-skel-img{position:absolute; inset:0; background:rgba(0,0,0,.06);}
.aura-skel-overlay{position:absolute; left:0; right:0; bottom:0; padding:18px 20px 20px;
  background:linear-gradient(to top, rgba(0,0,0,.18) 0%, rgba(0,0,0,.10) 40%, rgba(0,0,0,0) 100%); pointer-events:none;}
.aura-skel-tags{display:flex; gap:6px; margin-bottom:8px; flex-wrap:wrap;}
.aura-skel-tag{height:24px; width:64px; background:rgba(255,255,255,.18); border:none;}
.aura-skel-title-row{display:flex; align-items:center; gap:8px;}
.aura-skel-title{height:18px; width:72%; background:rgba(255,255,255,.18);}
.aura-skel-arrow{height:18px; width:18px; background:rgba(255,255,255,.18);}
.aura-skel-card::after{content:''; position:absolute; inset:0; transform:translateX(-100%);
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 100%);
  animation:auraSkShimmer 1.1s infinite;}
@keyframes auraSkShimmer{100%{transform:translateX(100%);}}

/* Skeleton media ratio fallback */
.aura-skel-media::before{content:''; display:block; padding-top:83.3333%;} /* 6/5 */
@media (max-width: 767px){ .aura-skel-media::before{padding-top:166.6667%;} } /* 3/5 */

/* ===== Mobile: hide Sort (keep desktop) ===== */
@media (max-width: 1024px){
  .aura-portfolio-toolbar__right{display:none !important;}
}

/* ===== Popup radius 0 ===== */
.aura-filter-panel, .aura-filter-panel *{border-radius:0 !important;}

/* ===== Height stability + footer overlap fix ===== */
.aura-portfolio-grid-wrap{overflow:visible !important;}
@media (max-width: 767px){
  /* Extra breathing room so sticky footers never cover the load more button
     AFTER additional pages append (footer overlays are usually fixed).
     Page 1 should not get extra spacing. */
  .aura-portfolio-grid-wrap.aura-paged{padding-bottom:calc(220px + env(safe-area-inset-bottom)) !important;}
}

/* Media height fallback for real cards (prevents Safari collapse after AJAX) */
.aura-portfolio-grid-wrap .mqc-media{position:relative;}
.aura-portfolio-grid-wrap .mqc-media::before{content:''; display:block; padding-top:100%;}
@media (min-width:1280px){ .aura-portfolio-grid-wrap .mqc-media::before{padding-top:83.3333%;} } /* 6/5 */
@media (max-width:767px){ .aura-portfolio-grid-wrap .mqc-media::before{padding-top:166.6667%;} } /* 3/5 */
.aura-portfolio-grid-wrap .mqc-media img{position:absolute; inset:0;}

/*
 * Progress bar
 * A slim indicator that fills as additional pages are loaded.  Hidden by
 * default until JS reveals it and drives the width via the CSS custom
 * property `--progress`.  The colour is inherited from the theme
 * palette used for the modal accoutrements.
 */
.aura-progress{
  width:100%;
  height:4px;
  margin-top:24px;
  background:rgba(255,255,255,0.15);
  position:relative;
  overflow:hidden;
  border-radius:2px;
  display:none;
}
.aura-progress-bar{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:var(--progress, 0%);
  background:#D7B8A5;
  transition:width .3s ease;
}




/* ===== Footer spacing guard ===== */
/* Mobile & tablet */
@media (max-width: 1024px){
  .aura-portfolio-grid-wrap::after{
    content: "" !important;
    display: block !important;
    height: 30px !important;
  }
}

/* Desktop */
@media (min-width: 1025px){
  .aura-portfolio-grid-wrap::after{
    content: "" !important;
    display: block !important;
    height: 60px !important;
  }
}


/* Enforce 15px gap across all breakpoints */
.aura-portfolio-grid{
  gap:15px !important;
  row-gap:15px !important;
  column-gap:15px !important;
}

/* =====================
   SINGLE PROJECT PAGE
===================== */
.aura-project-single{
  position:relative;
  width:100%;
  max-width:none;
  margin:0 !important;
  background:#0c0c0c;
  color:#111;
  font-family:var(--aura-font-body);
}

.aura-project-single__hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#090909;
  color:#fff;
  isolation:isolate;
}

.aura-project-single__media,
.aura-project-single__image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.aura-project-single__image{
  object-fit:cover;
  object-position:center;
}

.aura-project-single__image-fallback{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-family:var(--aura-font-heading);
  font-size:min(24vw,220px);
  text-transform:uppercase;
  color:rgba(255,255,255,.08);
  background:linear-gradient(135deg, #1d2127 0%, #090909 100%);
}

.aura-project-single__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(to right, rgba(3,2,20,.82) 0%, rgba(3,2,20,.58) 36%, rgba(3,2,20,.22) 62%, rgba(3,2,20,.16) 100%), rgba(3,2,20,.42);
}

.aura-project-single__gradient{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:58%;
  z-index:2;
  background:linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.56));
}

.aura-project-single__hero-inner{
  position:relative;
  z-index:3;
  width:min(920px, 100%);
  padding:60px;
}

.aura-project-single__eyebrow{
  display:flex;
  flex-wrap:wrap;
  gap:8px 16px;
  margin:0 0 16px;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
}

.aura-project-single__title{
  max-width:20ch;
  margin:0 0 14px !important;
  font-family:var(--aura-font-heading);
  font-size:40px !important;
  line-height:1.3 !important;
  font-weight:700 !important;
  text-transform:uppercase;
  color:#fff !important;
  text-wrap:balance;
}

.aura-project-single__summary{
  max-width:760px;
  margin:0 0 24px !important;
  font-size:14px !important;
  line-height:1.72 !important;
  color:rgba(255,255,255,.88) !important;
}

.aura-project-single__summary p:last-child{
  margin-bottom:0;
}

.aura-project-single__hero-actions{
  margin-top:18px;
}

.aura-project-single__hero-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border:1px solid rgba(255,255,255,.24);
  background:transparent;
  color:#fff;
  text-decoration:none !important;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.aura-project-single__hero-cta:hover,
.aura-project-single__hero-cta:focus,
.aura-project-single__hero-cta:active{
  background:rgba(255,255,255,.08) !important;
  border-color:rgba(255,255,255,.32) !important;
  color:#fff !important;
  box-shadow:none !important;
  transform:translateY(-1px);
}

.aura-project-single__content{
  width:100%;
  background:#fff !important;
  padding:84px 60px 96px;
  color:#111;
}

.aura-project-single__content-shell{
  width:100%;
  max-width:none;
  margin:0;
  display:grid;
  grid-template-columns:minmax(260px, 320px) minmax(0, 1fr);
  gap:54px;
  align-items:start;
  background:#fff !important;
}

.aura-project-single__sidebar{
  display:flex;
  flex-direction:column;
  gap:16px;
  position:sticky;
  top:36px;
  align-self:start;
}

.aura-project-single__content-intro{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.aura-project-single__content-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 16px;
  margin:0;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(0,0,0,.52);
}

.aura-project-single__content-title{
  margin:0 0 4px !important;
  font-family:var(--aura-font-heading);
  font-size:30px !important;
  line-height:1.28 !important;
  font-weight:700 !important;
  text-transform:uppercase;
  color:#111 !important;
}

.aura-project-single__content-summary{
  margin:0 !important;
  font-size:14px !important;
  line-height:1.72 !important;
  color:rgba(0,0,0,.68) !important;
}

.aura-project-single__content-summary p:last-child{
  margin-bottom:0;
}

.aura-project-single__section-card{
  border:1px solid rgba(0,0,0,.11);
  background:#fff;
}

.aura-project-single__accordion{
  padding:20px 22px;
}

.aura-project-single__accordion > summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.aura-project-single__accordion > summary::-webkit-details-marker{
  display:none;
}

.aura-project-single__accordion > summary::after{
  content:"+";
  flex:0 0 auto;
  font-size:18px;
  line-height:1;
  color:#111;
}

.aura-project-single__accordion[open] > summary::after{
  content:"-";
}

.aura-project-single__accordion > summary h3{
  margin:0 !important;
  font-family:var(--aura-font-heading);
  font-size:18px !important;
  line-height:1.3 !important;
  font-weight:700 !important;
  text-transform:uppercase;
  color:#111 !important;
}

.aura-project-single__accordion-panel{
  height:auto;
  overflow:hidden;
}

.aura-project-single__accordion-panel > *:first-child{
  margin-top:18px;
}

.aura-project-single__meta-list{
  display:grid;
  gap:0;
}

.aura-project-single__meta-list div{
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.1);
}

.aura-project-single__meta-list div:first-child{
  padding-top:0;
}

.aura-project-single__meta-list div:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.aura-project-single__meta-list span{
  display:block;
  margin-bottom:6px;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(0,0,0,.52);
}

.aura-project-single__meta-list strong{
  display:block;
  color:#111;
  font-size:14px;
  line-height:1.62;
  font-weight:400;
}

.aura-project-single__detail-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.aura-project-single__detail-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  border:1px solid #111;
  padding:0 14px;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#111;
  text-decoration:none !important;
}

.aura-project-single__body{
  min-width:0;
}

.aura-project-single__body-divider{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 26px;
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(0,0,0,.46);
}

.aura-project-single__body-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:rgba(0,0,0,.14);
}

.aura-project-single__intro-block{
  margin:0 0 26px;
}

.aura-project-single__intro-text{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:#1b1b1b;
}

.aura-project-single__intro-text p:last-child{
  margin-bottom:0;
}

.aura-project-single__gallery-block{
  position:relative;
  margin:0 0 30px;
  overflow:hidden;
}

.aura-project-single__gallery-carousel{
  display:flex;
  gap:12px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:0 42px 8px 0;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}

.aura-project-single__gallery-carousel::-webkit-scrollbar{
  display:none;
}

.aura-project-single__gallery-card{
  margin:0;
  flex:0 0 clamp(280px, 42vw, 520px);
  min-width:clamp(280px, 42vw, 520px);
}

.aura-project-single__gallery-image{
  display:block;
  width:100%;
  border:0;
  padding:0;
  background:transparent;
  cursor:zoom-in;
  box-shadow:none !important;
}

.aura-project-single__gallery-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

.aura-project-single__gallery-nav{
  position:absolute;
  top:0;
  bottom:8px;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:92px;
  border:0;
  padding:0;
  background:transparent !important;
  color:#111;
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
  cursor:pointer;
  box-shadow:none !important;
}

.aura-project-single__gallery-nav::before{
  content:"";
  position:absolute;
  inset:0;
}

.aura-project-single__gallery-nav svg{
  position:relative;
  z-index:1;
  width:18px;
  height:18px;
}

.aura-project-single__gallery-nav--prev{
  left:0;
  justify-content:flex-start;
  padding-left:22px;
}

.aura-project-single__gallery-nav--prev::before{
  background:linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 40%, rgba(255,255,255,0) 100%);
}

.aura-project-single__gallery-nav--next{
  right:0;
  justify-content:flex-end;
  padding-right:22px;
}

.aura-project-single__gallery-nav--next::before{
  background:linear-gradient(270deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 40%, rgba(255,255,255,0) 100%);
}

.aura-project-single__gallery-nav:hover,
.aura-project-single__gallery-nav:focus,
.aura-project-single__gallery-nav:active{
  background:transparent !important;
  color:#111 !important;
  box-shadow:none !important;
}

.aura-project-single__gallery-block.can-scroll-prev.is-hover-prev .aura-project-single__gallery-nav--prev,
.aura-project-single__gallery-block.can-scroll-next.is-hover-next .aura-project-single__gallery-nav--next,
.aura-project-single__gallery-nav:focus-visible{
  opacity:1;
  pointer-events:auto;
}

.aura-project-single__gallery-nav:focus-visible{
  outline:0;
}

.aura-project-single__lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  border-radius:0 !important;
}

.aura-project-single__lightbox[hidden]{
  display:none !important;
}

.aura-project-single__lightbox-backdrop{
  position:absolute;
  inset:0;
  border:0;
  padding:0;
  background:rgba(8,10,13,.88);
  border-radius:0 !important;
}

.aura-project-single__lightbox-dialog{
  position:relative;
  z-index:1;
  width:min(100vw - 40px, 1400px);
  height:min(100svh - 40px, 920px);
  display:grid;
  grid-template-rows:auto minmax(0, 1fr);
  gap:14px;
  border-radius:0 !important;
}

.aura-project-single__lightbox-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:#fff;
}

.aura-project-single__lightbox-counter{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}

.aura-project-single__lightbox-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.aura-project-single__lightbox-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:0;
  transition:background .2s ease, border-color .2s ease, opacity .2s ease;
  box-shadow:none !important;
  border-radius:0 !important;
}

.aura-project-single__lightbox-action svg{
  width:18px;
  height:18px;
}

.aura-project-single__lightbox-action:hover,
.aura-project-single__lightbox-action:focus,
.aura-project-single__lightbox-action:active{
  background:rgba(255,255,255,.12) !important;
  border-color:rgba(255,255,255,.28) !important;
  color:#fff !important;
  box-shadow:none !important;
}

.aura-project-single__lightbox-action:disabled{
  opacity:.38;
  cursor:not-allowed;
}

.aura-project-single__lightbox-zoom-value{
  min-width:52px;
  text-align:center;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
}

.aura-project-single__lightbox-stage{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.22);
  touch-action:none;
  border-radius:0 !important;
}

.aura-project-single__lightbox-pan{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  cursor:default;
  --aura-lightbox-scale: 1;
  --aura-lightbox-x: 0px;
  --aura-lightbox-y: 0px;
}

.aura-project-single__lightbox.is-zoomed .aura-project-single__lightbox-pan{
  cursor:grab;
}

.aura-project-single__lightbox.is-dragging .aura-project-single__lightbox-pan{
  cursor:grabbing;
}

.aura-project-single__lightbox-image{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  user-select:none;
  -webkit-user-drag:none;
  transform:translate3d(var(--aura-lightbox-x), var(--aura-lightbox-y), 0) scale(var(--aura-lightbox-scale));
  transform-origin:center center;
  transition:transform .18s ease;
}

.aura-project-single__lightbox.is-dragging .aura-project-single__lightbox-image{
  transition:none;
}

.aura-project-single__story-wrap{
  max-width:980px;
}

.aura-project-single__story{
  font-size:15px;
  line-height:1.82;
  color:#1b1b1b;
}

.aura-project-single__story > *:first-child{
  margin-top:0 !important;
}

.aura-project-single__story > *:last-child{
  margin-bottom:0 !important;
}

.aura-project-single__story h1,
.aura-project-single__story h2,
.aura-project-single__story h3,
.aura-project-single__story h4{
  margin:1.7em 0 .7em !important;
  font-family:var(--aura-font-heading);
  font-weight:700 !important;
  line-height:1.28 !important;
  color:#111 !important;
  text-transform:uppercase;
}

.aura-project-single__story h1,
.aura-project-single__story h2{
  font-size:24px !important;
}

.aura-project-single__story h3{
  font-size:20px !important;
}

.aura-project-single__story h4{
  font-size:17px !important;
}

.aura-project-single__story p{
  margin:0 0 1.15em;
}

.aura-project-single__story li{
  color:#1b1b1b;
}

.aura-project-single__story a{
  color:#111;
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width:1100px){
  .aura-project-single__content-shell{
    grid-template-columns:1fr;
  }

  .aura-project-single__sidebar{
    position:static;
  }
}

@media (min-width:768px){
  .aura-project-single__accordion > summary{
    pointer-events:none;
  }

  .aura-project-single__accordion > summary::after{
    display:none;
  }

  .aura-project-single__accordion-panel{
    height:auto !important;
    overflow:visible;
  }
}

@media (max-width:767px){
  .aura-project-single__hero{
    min-height:100svh;
  }

  .aura-project-single__hero-inner{
    padding:30px;
    max-width:none;
  }

  .aura-project-single__gradient{
    height:62%;
  }

  .aura-project-single__eyebrow{
    margin-bottom:12px;
    font-size:10px;
  }

  .aura-project-single__title{
    max-width:100%;
    font-size:24px !important;
    line-height:1.34 !important;
  }

  .aura-project-single__summary{
    font-size:13px !important;
    line-height:1.6 !important;
    margin-bottom:18px !important;
  }

  .aura-project-single__content{
    padding:44px 30px 56px;
  }

  .aura-project-single__content-shell{
    gap:24px;
  }

  .aura-project-single__sidebar{
    gap:14px;
  }

  .aura-project-single__content-title{
    font-size:20px !important;
    line-height:1.34 !important;
    margin-bottom:4px !important;
  }

  .aura-project-single__content-summary{
    font-size:13px !important;
    line-height:1.6 !important;
  }

  .aura-project-single__content-meta{
    font-size:10px;
  }

  .aura-project-single__accordion{
    padding:18px;
  }

  .aura-project-single__accordion > summary h3{
    font-size:16px !important;
  }

  .aura-project-single__accordion-panel > *:first-child{
    margin-top:14px;
  }

  .aura-project-single__body-divider{
    margin-bottom:20px;
    font-size:9px;
  }

  .aura-project-single__intro-block{
    margin-bottom:20px;
  }

  .aura-project-single__intro-text{
    font-size:13px;
    line-height:1.72;
  }

  .aura-project-single__gallery-block{
    margin-bottom:22px;
  }

  .aura-project-single__gallery-carousel{
    gap:10px;
    padding-right:24px;
  }

  .aura-project-single__gallery-card{
    flex:0 0 calc(100% - 28px);
    min-width:calc(100% - 28px);
  }

  .aura-project-single__gallery-card img{
    height:200px;
  }

  .aura-project-single__gallery-nav{
    display:none;
  }

  .aura-project-single__lightbox-dialog{
    width:min(100vw - 20px, 1400px);
    height:min(100svh - 20px, 920px);
    gap:10px;
  }

  .aura-project-single__lightbox-toolbar{
    gap:10px;
  }

  .aura-project-single__lightbox-counter{
    font-size:10px;
  }

  .aura-project-single__lightbox-actions{
    gap:8px;
  }

  .aura-project-single__lightbox-action{
    width:40px;
    height:40px;
  }

  .aura-project-single__lightbox-zoom-value{
    min-width:46px;
    font-size:10px;
  }

  .aura-project-single__story{
    font-size:13px;
    line-height:1.72;
  }

  .aura-project-single__story h1,
  .aura-project-single__story h2{
    font-size:20px !important;
  }

  .aura-project-single__story h3{
    font-size:17px !important;
  }

  .aura-project-single__story h4{
    font-size:15px !important;
  }
}

body.single-aura_project,
body.single-aura_project .site,
body.single-aura_project #page,
body.single-aura_project #content,
body.single-aura_project #primary,
body.single-aura_project main,
body.single-aura_project .site-content,
body.single-aura_project .content-area,
body.single-aura_project .site-main,
body.single-aura_project .entry-content{
  background:#ffffff;
  width:100% !important;
  max-width:none !important;
}

body.single-aura_project .site-content .ast-container,
body.single-aura_project .ast-container,
body.single-aura_project .ast-plain-container,
body.single-aura_project .inside-article,
body.single-aura_project .post,
body.single-aura_project .post-content{
  max-width:100% !important;
  width:100% !important;
  padding-left:0 !important;
  padding-right:0 !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

body.single-aura_project .site-main,
body.single-aura_project .entry-content,
body.single-aura_project article,
body.single-aura_project .inside-article{
  margin:0 !important;
  padding:0 !important;
}

body.single-aura_project{
  overflow-x:hidden;
}

body.aura-project-lightbox-open{
  overflow:hidden !important;
}

.aura-project-single__lightbox .aura-project-single__lightbox-action:hover,
.aura-project-single__lightbox .aura-project-single__lightbox-action:focus,
.aura-project-single__lightbox .aura-project-single__lightbox-action:active{
  background:rgba(255,255,255,.06) !important;
  color:#fff !important;
  border-color:rgba(255,255,255,.18) !important;
  box-shadow:none !important;
  outline:none !important;
}

.aura-project-single__lightbox .aura-project-single__lightbox-backdrop{
  background:rgba(8,10,13,.88) !important;
  box-shadow:none !important;
  color:transparent !important;
}

.aura-project-single__lightbox .aura-project-single__lightbox-backdrop:hover,
.aura-project-single__lightbox .aura-project-single__lightbox-backdrop:focus,
.aura-project-single__lightbox .aura-project-single__lightbox-backdrop:active{
  background:rgba(8,10,13,.88) !important;
  box-shadow:none !important;
  outline:none !important;
}
