/* Modern categories directory */
.xleche-categories-page{
  width:min(100%,1560px);
  margin:0 auto;
  padding:26px 28px 52px;
}
.xleche-categories-hero{
  display:flex;
  align-items:center;
  gap:13px;
  margin:0 0 20px;
  padding:0 0 15px;
  border-bottom:1px solid var(--xl-border);
}
.xleche-categories-kicker{
  flex:0 0 5px;
  align-self:stretch;
  min-height:50px;
  border-radius:999px;
  background:var(--xl-accent);
  box-shadow:0 0 18px rgba(242,180,0,.16);
}
.xleche-categories-hero h1{
  margin:0;
  color:#f7f7f7;
  font-size:clamp(25px,2.2vw,34px);
  font-weight:800;
  line-height:1.08;
  letter-spacing:-.025em;
}
.xleche-categories-hero p{
  margin:6px 0 0;
  color:#9a9a9a;
  font-size:14px;
  line-height:1.35;
}
.xleche-categories-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px 14px;
}
.xleche-category-card{
  min-width:0;
  margin:0;
}
.xleche-category-card-link{
  display:block;
  position:relative;
  overflow:hidden;
  border:1px solid #2d2d2d;
  border-radius:11px;
  background:#181818;
  color:#fff!important;
  box-shadow:0 5px 18px rgba(0,0,0,.13);
  transform:translateZ(0);
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.xleche-category-card-link:hover,
.xleche-category-card-link:focus-visible{
  border-color:rgba(242,180,0,.72);
  color:#fff!important;
  box-shadow:0 10px 28px rgba(0,0,0,.28),0 0 0 1px rgba(242,180,0,.08);
  transform:translateY(-2px);
  outline:0;
}
.xleche-category-media{
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#0d0d0d;
}
.xleche-category-image,
.xleche-category-placeholder{
  display:block;
  width:100%;
  height:100%;
}
.xleche-category-image{
  object-fit:cover;
  transform:scale(1.001);
  transition:transform .26s ease,filter .26s ease;
}
.xleche-category-card-link:hover .xleche-category-image,
.xleche-category-card-link:focus-visible .xleche-category-image{
  transform:scale(1.035);
  filter:saturate(1.04) contrast(1.02);
}
.xleche-category-placeholder{
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#242424,#111);
  color:#555;
  font-size:clamp(42px,5vw,74px);
  font-weight:900;
}
.xleche-category-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.02) 34%,rgba(0,0,0,.36) 64%,rgba(0,0,0,.92) 100%);
  pointer-events:none;
}
.xleche-category-content{
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  display:flex;
  align-items:center;
  min-height:54px;
  padding:13px 14px 12px;
}
.xleche-category-accent{
  flex:0 0 4px;
  width:4px;
  height:24px;
  margin-right:10px;
  border-radius:999px;
  background:var(--xl-accent);
}
.xleche-category-title{
  min-width:0;
  overflow:hidden;
  color:#fff;
  font-size:16px;
  font-weight:800;
  line-height:1.18;
  text-overflow:ellipsis;
  white-space:nowrap;
  text-shadow:0 1px 2px rgba(0,0,0,.65);
}
.xleche-category-arrow{
  display:grid;
  place-items:center;
  flex:0 0 30px;
  width:30px;
  height:30px;
  margin-left:auto;
  border:1px solid rgba(255,255,255,.14);
  border-radius:50%;
  background:rgba(17,17,17,.52);
  color:#fff;
  opacity:.78;
  transition:background .18s ease,color .18s ease,opacity .18s ease,transform .18s ease;
}
.xleche-category-arrow svg{width:16px;height:16px;fill:currentColor}
.xleche-category-card-link:hover .xleche-category-arrow,
.xleche-category-card-link:focus-visible .xleche-category-arrow{
  background:var(--xl-accent);
  color:#111;
  opacity:1;
  transform:translateX(2px);
}
@media(max-width:1250px){
  .xleche-categories-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:900px){
  .xleche-categories-page{padding:20px 18px 44px}
  .xleche-categories-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 10px}
}
@media(max-width:820px){
  .xleche-categories-page{padding:14px 12px 36px}
  .xleche-categories-hero{margin-bottom:14px;padding-bottom:12px}
  .xleche-categories-kicker{min-height:44px}
  .xleche-categories-hero h1{font-size:24px}
  .xleche-categories-hero p{font-size:13px}
  .xleche-category-card-link{border-radius:8px}
  .xleche-category-content{min-height:48px;padding:11px 10px 10px}
  .xleche-category-accent{height:20px;margin-right:8px}
  .xleche-category-title{font-size:14px}
  .xleche-category-arrow{width:27px;height:27px;flex-basis:27px}
}
@media(max-width:380px){
  .xleche-categories-grid{grid-template-columns:1fr}
  .xleche-category-title{font-size:15px}
}
@media(prefers-reduced-motion:reduce){
  .xleche-category-card-link,
  .xleche-category-image,
  .xleche-category-arrow{transition:none!important}
  .xleche-category-card-link:hover,
  .xleche-category-card-link:focus-visible{transform:none}
}
