/* ----------------------------------------------------------
   ELENBY • Design tokens
---------------------------------------------------------- */

:root {
  --elenby-text-main: #ffffff;
  --elenby-text-muted: #9ca3af;
}

/* ----------------------------------------------------------
   ELENBY • Design System
---------------------------------------------------------- */

/* Section titles */
h2.elenby-section-title,
.elenby-section-title {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #111 !important;

	text-align: center;
  	margin: 0 auto; 
}

.elenby-section-arrow{
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #111 !important;
	padding: 0 0 2rem 0;
	text-align: center;
  	margin: 0 auto; 
}

.title-inv {
  color: #fff !important;
}

.elenby-work-title{
	text-decoration: none !important;
}

@keyframes sectionArrowAnim {
  0% {margin-top: 0px;}
  100% {margin-top: 10px;}
}

.elenby-work-title > .elenby-section-arrow{
margin-top: 0px;
transition: margin-top 0.3s;	
}

.elenby-work-title:hover > .elenby-section-arrow{
	margin-top: 10px;
}


.elenby-work-title:active > .elenby-section-arrow{
	margin-top: 10px;
}

.eb-buttons-line{
	display: flex;
flex-direction: row;
	justify-content: center;
	margin: 4rem;
	gap: 1rem;
}

.elenby-lw-more,
.elenby-lw-contact{
	padding: 1rem 1.5rem;
	font-weight: 600;
font-size: 1rem !important;
}


@property --gradColor1 {
  syntax: '<color>';
  initial-value: #ff44ee;
  inherits: false;
}

@property --gradColor2 {
  syntax: '<color>';
  initial-value: #9300df;
  inherits: false;
}

.elenby-lw-contact{
	background: linear-gradient(45deg, var(--gradColor1), var(--gradColor2)) !important;
	color: #fff !important;
transition: --gradColor1 0.5s, --gradColor2 0.3s !important;
}

.elenby-lw-contact:hover{
		background: linear-gradient(45deg, var(--gradColor1), var(--gradColor2)) !important;
	--gradColor1: #9300df;
	--gradColor2: #ff44ee;
}

.elenby-tb-flexrow{
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: 1fr;
grid-column-gap: 32px;
grid-row-gap: 0px;
	  justify-content: left;
  align-items: top;
}

.elenby-tb-client{
	display: flex;
	flex-direction: row;
}



@media (max-width: 900px) {
.elenby-tb-flexrow{
	display: flex;
	flex-direction: column;
}
}

.elenby-logos-block{
	justify-content: center;
}

/* ----------------------------------------------------------
   VIDEO SLIDER • Base
---------------------------------------------------------- */

/* Slider wrapper: full width of container (set block to Full Width in WP) */
.elenby-video-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111111;
  padding: 0 0 1rem 0;
  touch-action: pan-y; /* allow vertical scroll, we handle horizontal swipes */
}

/* Track: relative box, height matches center slide (set by JS) */
.elenby-video-slider-track {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 0;
  transition: height 0.4s ease;
	overflow: hidden;
}

/* Each slide: absolutely positioned, JS moves them with left% */
.elenby-video-slide {
  position: absolute;
  top: 0;
  left: 50%;          /* overridden per state by JS using left% */
  width: 80%;         /* large cinematic width */
  max-width: 1200px;
  min-width: 260px;

  opacity: 0;
  transform: translateX(-50%) scale(1);
  filter: brightness(0.5) saturate(0.9);
  transition:
    left 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.4s ease,
    filter 0.4s ease;
  pointer-events: none;
  z-index: 1;
  cursor: pointer;
  box-sizing: border-box;
	
}

/* Video frame */
.elenby-video-frame {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
}

/* Video or poster */
.elenby-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.elenby-video-poster-only {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.elenby-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--elenby-text-muted);
  background: #111;
  font-size: 0.9rem;
}

/* Bottom gradient overlay (title + button) */
.elenby-video-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
  box-sizing: border-box;
}

.elenby-video-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Rounded button */
.elenby-button {
  display:flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.15);
}

.elenby-button:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

/* STATES */

/* Center slide */
.elenby-video-slide.is-center {
  opacity: 1;
  filter: brightness(1) saturate(1);
  pointer-events: auto;
  cursor: default;
  z-index: 3;
}

/* Side slides – same size, slightly dimmer */
.elenby-video-slide.is-left,
.elenby-video-slide.is-right {
  opacity: 0.9;
  filter: brightness(0.7) saturate(0.95) blur(0.6rem);;
  z-index: 2;
	
	
}

/* Hidden slides */
.elenby-video-slide.is-hidden {
  opacity: 0;
  filter: brightness(0.5) saturate(0.9);
  z-index: 1;
}

/* Hide overlays on side slides so buttons don't get squished */
.elenby-video-slide.is-left .elenby-video-overlay,
.elenby-video-slide.is-right .elenby-video-overlay {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Keep overlay visible on center slide */
.elenby-video-slide.is-center .elenby-video-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   VIDEO SLIDER • Responsive
---------------------------------------------------------- */

@media (max-width: 900px) {
  .elenby-video-slide {
    width: 80%;
    max-width: 80%;
  }

  .elenby-video-frame {
    height: 55vh;
  }
}

@media (max-width: 600px) {
  .elenby-video-frame {
    height: 50vh;
  }

  /* Stack overlay vertically, title above button, centered */
  .elenby-video-overlay {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.6rem;
  }

  .elenby-video-title {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .elenby-button {
    order: 2;
    align-self: center;
  }
}

/* ----------------------------------------------------------
   VIDEO SLIDER • Pagination + progress
---------------------------------------------------------- */

.elenby-video-pagination {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.elenby-video-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  overflow: hidden;
  transition: width 0.2s ease, background 0.2s ease;
}

/* Active one becomes a long pill */
.elenby-video-dot.is-active {
  width: 40px; /* length of the pill */
  background: rgba(255, 255, 255, 0.25);
}

/* Inner fill = progress bar (JS controls transition) */
.elenby-video-dot-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: #ffffff;
  border-radius: inherit;
  transform-origin: left center;
  transition: none;
}

/* Slightly bigger touch targets on mobile */
@media (max-width: 600px) {
  .elenby-video-dot {
    width: 10px;
    height: 10px;
  }

  .elenby-video-dot.is-active {
    width: 44px;
  }
}

/* ----------------------------------------------------------
   LATEST WORK • Ref-style grid (image + text under)
---------------------------------------------------------- */

.elenby-lw-block{
  padding: 2rem 0;
}

.elenby-lw-header{
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1rem;
}

.elenby-lw-header .elenby-section-title{
  margin:0;
  font-size:1.6rem;
  font-weight:700;
  letter-spacing:-0.02em;
  color:#0b0b0f;
}

/* Grid: 2 cols desktop, 1 col mobile */
.elenby-lw-grid{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0;
  box-sizing:border-box;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}

@media (max-width: 900px){
  .elenby-lw-grid{ grid-template-columns: 1fr; gap: 22px; }
}

/* Card */
.elenby-lw-item{
  overflow: hidden;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.elenby-lw-inner{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* Thumbnail: 4:3 */
.elenby-lw-thumb{
  width:100%;
  padding-top: 75%; /* 4:3 */
  background-size: cover;
  background-position: center;
  background-color:#f3f4f6;
}

/* Text area under image */
.elenby-lw-meta{
  padding: 1rem 1.1rem 1.15rem;
}

.elenby-lw-pill{
  display:inline-flex;
  align-items:left;
  justify-content:start;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
	margin-top: .5rem;
  margin-bottom: .5rem;
}

.elenby-lw-item-title{
  margin:0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color:#0b0b0f;
  line-height: 1.15;
	display: flex;
flex-direction: column;
}

/* Optional: add a clean "View case study →" line like the ref */
.elenby-lw-meta::after{
  display:none;
}

@media (max-width: 600px) {
	
	.elenby-lw-meta{
  margin: 1rem;
}
.elenby-lw-meta::after{
  content: "View case study \2192";
  display:inline-block;
  margin-top: .65rem;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(0,0,0,0.70);
}
  }

/* Hover: subtle lift */
@media (hover:hover){
  .elenby-lw-item:hover{
    transform: translateY(-3px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.10);
    border-color: rgba(0,0,0,0.14);
  }
}

.elenby-post-overlay-backdrop {
  z-index: 1;
  cursor: pointer;
}

.elenby-post-overlay-panel {
  z-index: 2;
}


/* ----------------------------------------------------------
   Cursor pill (desktop hover)
---------------------------------------------------------- */
.elenby-cursor-pill{
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-9999px, -9999px);
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .12s ease;
  will-change: transform, opacity;
}



/* Center pill on cursor */
.elenby-cursor-pill span{
  transform: translate(-50%, -50%);
}


.elenby-cursor-pill.is-visible{
  opacity: 1;
}

.elenby-cursor-pill span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

		width: fit-content;
    border: none;
    background: rgba(17, 17, 17, 0.95);
    padding: 0.4em 0.9em;
    margin: 0 0.2em;
    font: inherit;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    cursor: pointer;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.15);
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Hide the native cursor anywhere over the Latest Work cards */
@media (hover:hover) and (pointer:fine) {
  .elenby-lw-item,
  .elenby-lw-item * {
    cursor: none !important;
  }
}


/* Don’t show the cursor pill on touch devices */
@media (hover:none){
  .elenby-cursor-pill{ display:none !important; }
}







/* ----------------------------------------------------------
   Post Overlay • Full screen, centered content
---------------------------------------------------------- */

/* About button (right side) */
.elenby-overlay-about-btn{
  display:flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.15);
}

.elenby-overlay-about-btn:hover{
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

/* Panel wrapper (fixed, under topbar) */
.elenby-overlay-about-panel{
  position: fixed;
  left: 0;
  right: 0;
  top: 70px; /* sits under topbar */
  z-index: 1000000;
  display: none;
  padding: 0 0;
}

.elenby-post-overlay.is-open.is-about-open .elenby-overlay-about-panel{
  display: flex;
  justify-content: center;
}

/* Panel inner with max width */
.elenby-overlay-about-inner{
  width: 100%;
	max-width: 1200px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;

  /* entrance animation */
  transform: translateY(-6px);
  opacity: 0;
  animation: elenbyAboutIn 220ms cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes elenbyAboutIn {
  to { transform: translateY(0); opacity: 1; }
}

/* Layout inside panel (like your screenshot) */
.elenby-about-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  padding: 22px 22px 20px;
}

@media (max-width: 900px){
  .elenby-overlay-about-inner{ width: 100%; }
  .elenby-about-grid{ grid-template-columns: 1fr; gap: 2rem;}
}

/* Left description */
.elenby-about-desc p{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,0.72);
}

/* Right meta */
.elenby-about-meta{
  display: grid;
  gap: 12px;
}

.elenby-about-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: start;
}

.elenby-about-k{
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,0.45);
}

.elenby-about-v{
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.72);
  line-height: 1.5;
}
 
/* ----------------------------------------------------------
   ELENBY • High-end Case Study Overlay
---------------------------------------------------------- */

/* Fullscreen overlay container */
.elenby-post-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.elenby-post-overlay.is-open {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Backdrop: deeper + blur */
.elenby-post-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Panel is fullscreen but centered content inside */
.elenby-post-overlay-panel {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* Body = scroll area (centered width) */
.elenby-post-overlay-body {
  width: 100%;
	max-width: 1200px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;

  /* premium spacing */

}

/* Mobile width */
@media (max-width: 768px) {
  .elenby-post-overlay-body {
    max-width: 100%;
    padding: 10px;
  }
}

/* Entrance animation */
.elenby-post-overlay.is-open .elenby-post-overlay-body {
  animation: elenbyOverlayIn 260ms cubic-bezier(.22,.61,.36,1) both;
}

@keyframes elenbyOverlayIn {
  from { opacity: 0; transform: translateY(10px) scale(0.995); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ----------------------------------------------------------
   Overlay Top Bar • Title-focused
---------------------------------------------------------- */

.elenby-overlay-topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 70px;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
	width: 100%;
	  background: rgba(255,255,255,0.88);
	  box-shadow: 0 18px 60px rgba(0,0,0,0.14);


}

.elenby-overlay-topbar-inner {
  width: 100%;
	max-width: 1200px;
  height: 70px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0;
  pointer-events: auto;
	
}

/* Close */
.elenby-post-overlay-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Center title */
.elenby-overlay-topbar-title {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 12px;
}

@media (max-width: 768px) {
  .elenby-post-overlay-body {
	  text-align: center;
font-size: 1rem;
	  
  }
	
	.elenby-overlay-topbar-inner {
padding: 0 5%;
	
}
}

/* Right spacer keeps title centered */
.elenby-overlay-topbar-spacer {
  width: 38px;
}

/* Optional label on right */
.elenby-overlay-meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,0.65);
  white-space: nowrap;
}

/* Hero image */
.elenby-overlay-hero {
  width: 100%;
  height: 46vh;
  min-height: 260px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #f2f3f6;

  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
  margin-bottom: 24px;
}

/* Title area */
.elenby-overlay-header {
  padding: 0;
  margin-bottom: 10px;
}

.elenby-overlay-title {
  margin: 0;
  font-size: clamp(1rem, 3.3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.92);
}

/* Content card */
.elenby-overlay-content {
  background: rgba(255,255,255,1);
  padding: 2rem;
  box-shadow: 0 28px 90px rgba(0,0,0,0.18);
  color: rgba(12,12,16,0.88);
  font-size: 16px;
  line-height: 1.75;
}

/* Typography polish inside content */
.elenby-overlay-content h1,
.elenby-overlay-content h2,
.elenby-overlay-content h3 {
  letter-spacing: -0.02em;
  color: rgba(10,10,12,0.92);
  margin: 1.2em 0 0.55em;
}

.elenby-overlay-content p {
  margin: 0;
}

.elenby-overlay-content a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  opacity: 0.9;
}

/* Content safety: prevent builder overflow */
.elenby-post-overlay-body,
.elenby-post-overlay-body * {
  box-sizing: border-box;
}

.elenby-post-overlay-body .elenby-overlay-content * {
  max-width: 100% !important;
}

.elenby-post-overlay-body img,
.elenby-post-overlay-body video,
.elenby-post-overlay-body iframe,
.elenby-post-overlay-body embed,
.elenby-post-overlay-body object {
  max-width: 100% !important;
  height: auto !important;
}

/* Full-width/alignwide from Gutenberg/Elementor */
.elenby-post-overlay-body .alignfull,
.elenby-post-overlay-body .alignwide,
.elenby-post-overlay-body [class*="elementor"],
.elenby-post-overlay-body .wp-block-group,
.elenby-post-overlay-body .wp-block-columns,
.elenby-post-overlay-body .wp-block-cover {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Lock scroll behind overlay */
html.elenby-overlay-lock,
body.elenby-overlay-lock {
  overflow: hidden !important;
}

.eb-portfolio-row{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: normal;
  align-content: center;
	gap: 0;
}

@media (max-width: 600px) {
  body {
    .eb-portfolio-row{
  flex-direction: column;

}
  }
}

/* ----------------------------------------------------------
   ELENBY • High-end overlay scrollbar
---------------------------------------------------------- */

/* Firefox */
.elenby-post-overlay-body {
  scrollbar-width: thin;
  scrollbar-color: rgba(17,17,17,1) rgba(255,255,255,1);
		margin-top: 72px;
	padding-bottom: 72px;

}

/* WebKit browsers (Chrome, Edge, Safari desktop) */
.elenby-post-overlay-body::-webkit-scrollbar {
  width: 10px;
}

.elenby-post-overlay-body::-webkit-scrollbar-track {
  background: transparent;
}

.elenby-post-overlay-body::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.45);
  border-radius: 999px;
  border: 3px solid transparent; /* creates padding */
  background-clip: content-box;
  transition: background-color 0.2s ease;
}

/* Hover state */
.elenby-post-overlay-body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0,0,0,0.65);
}

/* Optional: slightly darker when scrolling */
.elenby-post-overlay-body:active::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.75);
}



/* ----------------------------------------------------------
   WORKS PAGE FILTER (only when latest=false)
---------------------------------------------------------- */
.elenby-works-filter{
  display:flex;
  flex-wrap: none;
  gap: 10px;
  margin: 8px 0 18px;
	    justify-content: center;

}

.elenby-filter-pill{
  display:flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.15);
}

.elenby-filter-pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.92);
}

.elenby-filter-pill.is-active{
  background: rgba(0,0,0,0.90);
  color: #fff;
  border-color: rgba(0,0,0,0.35);
}
