/* ==========================================================================
   TYPE SCALE
   ========================================================================== */
.eyebrow{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--gray-700);
}
.eyebrow::before{ content:none; }

h1,.h1{ font-size:clamp(40px, 6.4vw, 92px); line-height:.98; font-weight:700; letter-spacing:-.02em; }
h2,.h2{ font-size:clamp(28px, 3.4vw, 44px); line-height:1.02; font-weight:700; letter-spacing:-.015em; }
h3,.h3{ font-size:clamp(19px, 1.7vw, 23px); line-height:1.2; font-weight:700; letter-spacing:-.01em; }
p{ font-size:16px; line-height:1.6; color:var(--gray-700); }
.dek{ font-size:clamp(15px,1.6vw,18px); line-height:1.55; color:var(--gray-700); max-width:52ch; }

/* ==========================================================================
   GLASS BUTTONS
   ========================================================================== */
.btn-glass{
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px;
  border-radius:var(--radius-pill);
  border:1px solid var(--glass-border);
  background:var(--glass-bg-lite);
  backdrop-filter:blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter:blur(var(--glass-blur)) saturate(140%);
  color:var(--paper);
  font-size:13px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  transition:transform var(--dur-s) var(--ease), background var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
  box-shadow:0 1px 0 rgba(255,255,255,.08) inset, 0 8px 24px rgba(0,0,0,.18);
}
.btn-glass:hover{ transform:translateY(-2px); background:rgba(247,247,244,.18); box-shadow:0 1px 0 rgba(255,255,255,.14) inset, 0 14px 30px rgba(0,0,0,.22); }
.btn-glass.is-dark{
  background:rgba(10,10,10,.06);
  border-color:rgba(10,10,10,.18);
  color:var(--ink);
  box-shadow:0 1px 0 rgba(255,255,255,.5) inset, 0 8px 24px rgba(0,0,0,.06);
}
.btn-glass.is-dark:hover{ background:rgba(10,10,10,.1); }
.btn-glass .chrome-dot{
  width:7px; height:7px; border-radius:50%; background:var(--chrome);
}

.btn-line{
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  padding-bottom:4px; border-bottom:1px solid currentColor;
}
.btn-line svg{ transition:transform var(--dur-s) var(--ease); }
.btn-line:hover svg{ transform:translateX(4px); }

/* ==========================================================================
   MASTHEAD / NAV — glass pill that condenses on scroll
   ========================================================================== */
.kz-masthead{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px var(--gutter) 0;
  transition:padding var(--dur-m) var(--ease);
}
.kz-masthead.is-condensed{ padding-top:10px; }

.kz-nav-bar{
  max-width:var(--container);
  margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 20px;
  border-radius:var(--radius-pill);
  border:1px solid transparent;
  transition:all var(--dur-m) var(--ease);
}
.kz-masthead.is-condensed .kz-nav-bar{
  background:var(--glass-bg);
  border-color:var(--glass-border);
  backdrop-filter:blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter:blur(var(--glass-blur)) saturate(140%);
  box-shadow:0 10px 30px rgba(0,0,0,.14);
}

.kz-logo{ font-weight:700; font-size:20px; letter-spacing:-.02em; color:var(--paper); }
.kz-masthead:not(.is-condensed) .kz-logo{ color:var(--ink); mix-blend-mode:difference; filter:invert(1); }
.kz-masthead.is-condensed .kz-logo{ color:var(--paper); }
.kz-logo img{ height:22px; width:auto; }

.kz-nav-links{ display:flex; gap:28px; }
.kz-nav-links a{
  font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--paper); mix-blend-mode:difference; filter:invert(1);
  position:relative; padding:4px 0;
}
.kz-masthead.is-condensed .kz-nav-links a{ mix-blend-mode:normal; filter:none; color:var(--paper); }
.kz-nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1px; background:currentColor;
  transition:right var(--dur-s) var(--ease);
}
.kz-nav-links a:hover::after{ right:0; }

.kz-nav-actions{ display:flex; align-items:center; gap:14px; }
.kz-icon-btn{
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  border-radius:50%; color:var(--paper); mix-blend-mode:difference; filter:invert(1);
}
.kz-masthead.is-condensed .kz-icon-btn{ mix-blend-mode:normal; filter:none; }

.kz-nav-toggle{ display:none; background:none; border:0; padding:8px; }
.kz-nav-toggle span{ display:block; width:22px; height:2px; background:var(--paper); margin:4px 0; mix-blend-mode:difference; filter:invert(1); }
.kz-masthead.is-condensed .kz-nav-toggle span{ mix-blend-mode:normal; filter:none; }

@media (max-width:880px){
  .kz-nav-links{
    position:fixed; inset:0; z-index:99;
    flex-direction:column; justify-content:center; align-items:flex-start;
    gap:22px; padding:0 40px;
    background:var(--ink); color:var(--paper);
    transform:translateY(-100%); opacity:0;
    transition:transform var(--dur-m) var(--ease), opacity var(--dur-m) var(--ease);
    pointer-events:none;
  }
  .kz-nav-links a{ font-size:28px; color:var(--paper) !important; mix-blend-mode:normal !important; filter:none !important; }
  body.nav-open .kz-nav-links{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .kz-nav-toggle{ display:block; }
}

/* ==========================================================================
   TICKER — thin masthead identity strip
   ========================================================================== */
.kz-ticker{
  background:var(--ink); color:var(--paper);
  overflow:hidden; white-space:nowrap;
  padding:9px 0;
}
.kz-ticker-track{
  display:inline-flex; gap:36px;
  animation:kz-ticker 32s linear infinite;
}
.kz-ticker-track span{
  font-size:11px; letter-spacing:.16em; text-transform:uppercase; font-weight:700;
  opacity:.8;
}
@keyframes kz-ticker{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ==========================================================================
   HERO — cover story
   ========================================================================== */
.kz-hero{
  position:relative;
  min-height:100vh;
  display:flex; align-items:flex-end;
  background:var(--ink);
  overflow:hidden;
}
.kz-hero-media{ position:absolute; inset:0; }
.kz-hero-media img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(1) contrast(1.05) brightness(.9);
  transform:scale(1.06);
  animation:kz-hero-in 1.6s var(--ease) forwards;
}
@keyframes kz-hero-in{ from{ transform:scale(1.14); opacity:0; } to{ transform:scale(1.06); opacity:1; } }
.kz-hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.35) 42%, rgba(0,0,0,.15) 65%, rgba(0,0,0,.55) 100%);
}
.kz-hero-inner{
  position:relative; z-index:2;
  width:100%; padding:0 var(--gutter) 72px;
  max-width:var(--container); margin:0 auto;
}
.kz-hero-meta{ display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.kz-hero-meta .eyebrow{ color:rgba(247,247,244,.7); }
.kz-hero-meta .eyebrow::before{ color:rgba(247,247,244,.35); }
.kz-hero h1{ color:var(--paper); max-width:16ch; }
.kz-hero-dek{ color:rgba(247,247,244,.75); margin-top:20px; max-width:56ch; font-size:clamp(15px,1.6vw,18px); }
.kz-hero-cta{ margin-top:32px; display:flex; gap:14px; flex-wrap:wrap; }

.kz-scroll-cue{
  position:absolute; left:var(--gutter); bottom:28px; z-index:2;
  display:flex; align-items:center; gap:10px; color:rgba(247,247,244,.6);
  font-size:11px; letter-spacing:.14em; text-transform:uppercase;
}
.kz-scroll-cue .line{ width:1px; height:30px; background:rgba(247,247,244,.4); position:relative; overflow:hidden; }
.kz-scroll-cue .line::after{
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--paper);
  animation:kz-scroll-drip 1.8s var(--ease) infinite;
}
@keyframes kz-scroll-drip{ to{ top:100%; } }

/* hero empty state (no posts yet) */
.kz-hero.is-empty{ background:var(--ink); }
.kz-hero.is-empty .kz-hero-media{ background:radial-gradient(circle at 30% 20%, #1c1c1c, #0a0a0a 70%); }

/* ==========================================================================
   SECTION SCAFFOLD
   ========================================================================== */
.kz-section{ padding:96px 0; }
.kz-section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:24px; margin-bottom:44px; flex-wrap:wrap;
}
.kz-section-head h2{ margin-top:10px; }

/* reveal-on-scroll */
.kz-reveal{ opacity:0; transform:translateY(28px); transition:opacity var(--dur-l) var(--ease), transform var(--dur-l) var(--ease); }
.kz-reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.kz-ig{ background:var(--ink); color:var(--paper); }
.kz-ig .eyebrow{ color:rgba(247,247,244,.6); }
.kz-ig .eyebrow::before{ color:rgba(247,247,244,.3); }
.kz-ig h2{ color:var(--paper); }
.kz-ig p{ color:rgba(247,247,244,.65); }

.kz-ig-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(240px,1fr));
  gap:2px; margin-top:12px;
  border:1px solid var(--line-invert);
}
.kz-ig-cell{
  aspect-ratio:1/1; position:relative; overflow:hidden;
  border:1px solid var(--line-invert);
  background:#111;
}
.kz-ig-cell iframe, .kz-ig-cell blockquote{ width:100% !important; margin:0 !important; }
.kz-ig-cell .kz-ig-overlay{
  position:absolute; inset:0; display:flex; align-items:flex-end; padding:16px;
  background:linear-gradient(0deg, rgba(0,0,0,.6), transparent 55%);
  opacity:0; transition:opacity var(--dur-s) var(--ease);
  font-size:12px; letter-spacing:.06em; text-transform:uppercase; font-weight:700;
}
.kz-ig-cell:hover .kz-ig-overlay{ opacity:1; }

.kz-ig-empty{
  border:1px dashed var(--line-invert);
  padding:56px 32px; text-align:center; margin-top:12px;
  border-radius:var(--radius-sm);
}
.kz-ig-empty p{ color:rgba(247,247,244,.55); max-width:44ch; margin:0 auto 20px; }

/* ==========================================================================
   LATEST — editorial card grid, works from 1 to many posts
   ========================================================================== */
.kz-grid{
  display:grid; gap:44px 32px;
  grid-template-columns:repeat(3, 1fr);
}
.kz-grid.kz-grid-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:960px){ .kz-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .kz-grid{ grid-template-columns:1fr; } }

.kz-card{ display:flex; flex-direction:column; }
.kz-card-media{ aspect-ratio:4/5; overflow:hidden; margin-bottom:18px; background:var(--paper-dim); }
.kz-card-media img{ width:100%; height:100%; object-fit:cover; }
.kz-card .eyebrow{ margin-bottom:10px; }
.kz-card h3 a{ transition:opacity var(--dur-s) var(--ease); }
.kz-card h3 a:hover{ opacity:.6; }
.kz-card .kz-card-excerpt{ margin-top:10px; font-size:14.5px; }
.kz-card .kz-card-date{ margin-top:14px; font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--gray-500); }

/* first-card feature variant when only 1–2 posts exist */
.kz-card.is-feature{ grid-column:span 2; }
.kz-card.is-feature .kz-card-media{ aspect-ratio:16/9; }
@media (max-width:640px){ .kz-card.is-feature{ grid-column:span 1; } .kz-card.is-feature .kz-card-media{ aspect-ratio:4/5; } }

.kz-empty-note{
  border:1px solid var(--line); padding:48px; text-align:center; border-radius:var(--radius-sm);
}

/* ==========================================================================
   CATEGORY DIRECTORY
   ========================================================================== */
.kz-directory{ background:var(--paper-dim); }
.kz-dir-grid{ display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); }
@media (max-width:880px){ .kz-dir-grid{ grid-template-columns:repeat(2,1fr); } }
.kz-dir-tile{
  position:relative; aspect-ratio:1/1;
  display:flex; flex-direction:column; justify-content:space-between;
  padding:26px; border:1px solid var(--line);
  background:var(--paper); overflow:hidden;
  transition:background var(--dur-m) var(--ease), color var(--dur-m) var(--ease);
}
.kz-dir-tile:hover{ background:var(--ink); color:var(--paper); }
.kz-dir-tile .kz-dir-num{ font-size:11px; letter-spacing:.1em; color:var(--gray-500); }
.kz-dir-tile:hover .kz-dir-num{ color:rgba(247,247,244,.55); }
.kz-dir-tile h3{ font-size:clamp(20px,2vw,28px); }
.kz-dir-tile .kz-dir-arrow{ align-self:flex-end; transition:transform var(--dur-s) var(--ease); }
.kz-dir-tile:hover .kz-dir-arrow{ transform:translate(4px,-4px); }

/* ==========================================================================
   NEWSLETTER BAND
   ========================================================================== */
.kz-newsletter{ background:var(--ink); color:var(--paper); }
.kz-newsletter-inner{ display:flex; justify-content:space-between; align-items:center; gap:40px; flex-wrap:wrap; }
.kz-newsletter h2{ color:var(--paper); }
.kz-newsletter p{ color:rgba(247,247,244,.65); margin-top:10px; }
.kz-newsletter-form{ display:flex; gap:0; min-width:340px; flex:1; max-width:480px; }
.kz-newsletter-form input[type=email]{
  flex:1; background:rgba(247,247,244,.06); border:1px solid var(--glass-border);
  border-right:0; padding:15px 18px; color:var(--paper); font-size:14px;
  backdrop-filter:blur(var(--glass-blur));
}
.kz-newsletter-form input::placeholder{ color:rgba(247,247,244,.4); }
.kz-newsletter-form button{
  background:var(--paper); color:var(--ink); border:0; padding:0 24px;
  font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  transition:background var(--dur-s) var(--ease);
}
.kz-newsletter-form button:hover{ background:var(--gray-300); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.kz-footer{ background:var(--ink); color:var(--paper); padding-top:64px; }
.kz-footer-top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:56px; border-bottom:1px solid var(--line-invert); }
.kz-footer-brand .kz-logo{ color:var(--paper); font-size:26px; mix-blend-mode:normal; filter:none; }
.kz-footer-brand p{ color:rgba(247,247,244,.55); margin-top:14px; max-width:34ch; }
.kz-footer-cols{ display:flex; gap:64px; flex-wrap:wrap; }
.kz-footer-col h4{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:rgba(247,247,244,.45); margin-bottom:16px; }
.kz-footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.kz-footer-col a{ font-size:14px; color:rgba(247,247,244,.85); transition:opacity var(--dur-s); }
.kz-footer-col a:hover{ opacity:.6; }
.kz-footer-bottom{ display:flex; justify-content:space-between; padding:22px 0; font-size:12px; color:rgba(247,247,244,.4); flex-wrap:wrap; gap:10px; }

/* ==========================================================================
   ARCHIVE / SINGLE / PAGE — inner content pages
   ========================================================================== */
.kz-page-head{ padding:170px var(--gutter) 56px; max-width:var(--container); margin:0 auto; }
.kz-page-head h1{ font-size:clamp(34px,5vw,58px); }

.kz-single-head{ padding:170px var(--gutter) 40px; max-width:840px; margin:0 auto; }
.kz-single-head h1{ font-size:clamp(32px,4.6vw,52px); }
.kz-single-meta{ display:flex; gap:16px; align-items:center; margin-top:22px; color:var(--gray-500); font-size:13px; }
.kz-single-cover{ max-width:var(--container); margin:0 auto var(--gutter); }
.kz-single-cover img{ width:100%; aspect-ratio:16/9; object-fit:cover; filter:grayscale(1) contrast(1.04); }
.kz-single-body{ max-width:720px; margin:0 auto; padding:0 var(--gutter) 100px; }
.kz-single-body p{ font-size:17.5px; color:var(--ink); line-height:1.75; margin-bottom:22px; }
.kz-single-body h2{ margin:44px 0 16px; }
.kz-single-body img{ margin:36px 0; filter:grayscale(1); }
.kz-single-body a{ text-decoration:underline; text-underline-offset:3px; }
.kz-single-body blockquote{ border-left:2px solid var(--ink); padding-left:22px; font-style:normal; font-size:20px; margin:32px 0; }

.kz-archive-grid{ max-width:var(--container); margin:0 auto; padding:0 var(--gutter) 100px; }
.kz-pagination{ display:flex; justify-content:center; gap:18px; padding:40px 0 100px; }

.kz-page-body{ max-width:720px; margin:0 auto; padding:0 var(--gutter) 100px; }
.kz-page-body p{ font-size:17px; margin-bottom:20px; }

/* ==========================================================================
   KRAZE 1.1 — COMPACT EDITORIAL REVISION
   ========================================================================== */

/* Remove the repeated decorative dashes and keep the scale controlled. */
.eyebrow::before{ content:none; }
h1,.h1{ font-size:clamp(38px,5vw,68px); letter-spacing:-.035em; }
h2,.h2{ font-size:clamp(27px,3vw,38px); letter-spacing:-.025em; }
.kz-section{ padding:72px 0; }
.kz-section-head{ margin-bottom:30px; }

/* Small utility actions shared by newsroom and Instagram. */
.kz-head-actions{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.kz-carousel-controls{ display:flex; align-items:center; gap:6px; }
.kz-carousel-controls button{
  width:34px; height:34px; padding:0;
  display:grid; place-items:center;
  border:1px solid var(--line); border-radius:50%;
  background:transparent; color:currentColor;
  font-size:15px; transition:background var(--dur-s), color var(--dur-s), opacity var(--dur-s);
}
.kz-carousel-controls button:hover{ background:var(--ink); color:var(--paper); }
.kz-carousel-controls button:disabled{ opacity:.25; cursor:default; }
.kz-ig .kz-carousel-controls button{ border-color:var(--line-invert); color:var(--paper); }
.kz-ig .kz-carousel-controls button:hover{ background:var(--paper); color:var(--ink); }
.kz-carousel-viewport{
  width:100%; overflow-x:auto; overflow-y:hidden;
  scroll-snap-type:x mandatory; scroll-behavior:smooth;
  scrollbar-width:none; overscroll-behavior-inline:contain;
}
.kz-carousel-viewport::-webkit-scrollbar{ display:none; }

/* Thin floating masthead. */
.kz-ticker{ padding:7px 0; }
.kz-ticker-track span{ font-size:9px; letter-spacing:.14em; }
.kz-masthead{
  top:27px; padding:8px var(--gutter) 0;
  transition:top var(--dur-m) var(--ease), padding var(--dur-m) var(--ease);
}
.kz-masthead.is-condensed{ top:0; padding-top:8px; }
.kz-nav-bar,
.kz-masthead.is-condensed .kz-nav-bar{
  width:min(100%,980px); min-height:46px;
  padding:6px 12px; border-radius:18px;
  background:rgba(10,10,10,.72); border:1px solid rgba(247,247,244,.18);
  backdrop-filter:blur(16px) saturate(135%);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
  box-shadow:0 8px 26px rgba(0,0,0,.14);
}
.kz-logo{ display:flex; align-items:center; flex:0 0 auto; color:var(--paper); font-size:16px; line-height:1; }
.kz-logo .custom-logo-link{ display:flex; align-items:center; }
.kz-logo img,
.kz-logo .custom-logo{
  display:block; width:auto!important; height:17px!important;
  max-width:86px!important; max-height:17px!important;
  object-fit:contain; filter:brightness(0) invert(1);
}
.kz-nav-links{ display:block; }
.kz-nav-menu{ display:flex; align-items:center; gap:22px; margin:0; padding:0; list-style:none; }
.kz-nav-menu li{ display:block; margin:0; padding:0; list-style:none; }
.kz-nav-links a,
.kz-masthead:not(.is-condensed) .kz-nav-links a,
.kz-masthead.is-condensed .kz-nav-links a{
  color:var(--paper); mix-blend-mode:normal; filter:none;
  font-size:10px; letter-spacing:.1em; padding:4px 0;
}
.kz-nav-actions{ gap:4px; }
.kz-icon-btn{ width:30px; height:30px; padding:0; border:0; background:transparent; color:var(--paper); mix-blend-mode:normal; filter:none; }
.kz-icon-btn svg{ width:16px; height:16px; }
.kz-nav-toggle span,
.kz-masthead.is-condensed .kz-nav-toggle span{ background:var(--paper); mix-blend-mode:normal; filter:none; }

/* 34:66 split cover story — editorial, not billboard-sized. */
.kz-hero{
  display:block; min-height:560px;
  height:min(660px,calc(100svh - 27px)); max-height:660px;
  background:var(--ink);
}
.kz-hero-media{ left:auto; right:0; width:66%; }
.kz-hero-media img{
  width:100%; height:100%; object-fit:cover;
  filter:none; transform:scale(1.015);
}
@keyframes kz-hero-in{ from{ transform:scale(1.045); opacity:0; } to{ transform:scale(1.015); opacity:1; } }
.kz-hero-media::after{
  background:linear-gradient(90deg,rgba(10,10,10,.38) 0%,rgba(10,10,10,.04) 20%,rgba(10,10,10,.08) 100%);
}
.kz-hero-inner{
  position:relative; z-index:2; width:34%; height:100%; max-width:none; margin:0;
  padding:130px 34px 52px var(--gutter);
  display:flex; flex-direction:column; justify-content:flex-end;
  background:var(--ink);
}
.kz-hero h1{
  max-width:12ch; color:var(--paper);
  font-size:clamp(34px,3.45vw,50px); line-height:.96; letter-spacing:-.045em;
}
.kz-hero-meta{ gap:10px; margin-bottom:14px; flex-wrap:wrap; }
.kz-hero-meta .eyebrow{ font-size:9px; }
.kz-hero-dek{ max-width:38ch; margin-top:16px; font-size:14px; line-height:1.5; }
.kz-hero-cta{ margin-top:22px; }
.kz-hero .btn-glass{ padding:10px 17px; font-size:10px; }
.kz-scroll-cue{ left:auto; right:18px; bottom:16px; gap:7px; font-size:9px; }
.kz-scroll-cue .line{ height:20px; }

/* Instagram uses the embed's natural height so the complete post stays visible. */
.kz-ig-viewport{ padding-bottom:4px; }
.kz-ig-grid{
  display:flex; width:max-content; max-width:none;
  gap:14px; margin:0; border:0;
}
.kz-ig-cell{
  flex:0 0 clamp(300px,28vw,360px);
  width:clamp(300px,28vw,360px); height:auto; min-height:470px;
  aspect-ratio:auto; overflow:visible; scroll-snap-align:start;
  border:0; border-radius:10px; background:#111;
}
.kz-ig-cell blockquote{ width:100%!important; max-width:100%!important; min-width:0!important; height:auto!important; margin:0!important; }
.kz-ig-cell iframe{ width:100%!important; max-width:100%!important; margin:0!important; }
.kz-ig-empty{ width:100%; }

/* Newsroom is a compact, controlled horizontal rail. */
.kz-carousel-viewport .kz-grid,
.kz-carousel-viewport .kz-grid.kz-grid-2{
  display:flex; width:max-content; max-width:none;
  grid-template-columns:none; gap:24px;
}
.kz-carousel-viewport .kz-card,
.kz-carousel-viewport .kz-card.is-feature{
  flex:0 0 clamp(270px,28vw,342px);
  width:clamp(270px,28vw,342px); grid-column:auto;
  scroll-snap-align:start;
}
.kz-card-media,
.kz-card.is-feature .kz-card-media{
  aspect-ratio:4/3; margin-bottom:14px; border-radius:4px;
}
.kz-card-media img{ width:100%; height:100%; object-fit:cover; }
.kz-card .eyebrow{ margin-bottom:8px; font-size:9px; }
.kz-card h3{ font-size:clamp(17px,1.45vw,21px); line-height:1.12; }
.kz-card .kz-card-excerpt{ margin-top:8px; font-size:13px; line-height:1.5; }
.kz-card .kz-card-date{ margin-top:10px; font-size:9px; }
.kz-media-fallback{ width:100%; height:100%; background:linear-gradient(135deg,#e5e5e2,#c7c7c3); }

/* Quick index adds scanability without another image-heavy block. */
.kz-brief{ padding:62px 0; color:var(--paper); background:var(--ink); }
.kz-brief-inner{ display:grid; grid-template-columns:minmax(220px,.55fr) minmax(0,1.45fr); gap:clamp(34px,6vw,90px); align-items:start; }
.kz-brief-title h2{ margin-top:10px; color:var(--paper); font-size:clamp(28px,3vw,38px); }
.kz-brief-title p{ max-width:34ch; margin-top:12px; color:rgba(247,247,244,.55); font-size:13px; }
.kz-brief .eyebrow{ color:rgba(247,247,244,.55); }
.kz-brief-list{ border-top:1px solid var(--line-invert); }
.kz-brief-item{
  display:grid; grid-template-columns:36px minmax(0,1fr) auto; gap:14px; align-items:center;
  padding:15px 0; border-bottom:1px solid var(--line-invert);
}
.kz-brief-num{ color:rgba(247,247,244,.38); font-size:12px; }
.kz-brief-copy{ display:flex; flex-direction:column; gap:5px; }
.kz-brief-copy strong{ font-size:15px; line-height:1.2; }
.kz-brief-time{ color:rgba(247,247,244,.45); font-size:9px; letter-spacing:.08em; text-transform:uppercase; }
.kz-brief-item:hover strong{ text-decoration:underline; text-underline-offset:3px; }

/* Explore KRAZE becomes a monochrome image directory. */
.kz-directory{ background:var(--paper-dim); }
.kz-dir-grid{ gap:12px; border:0; }
.kz-dir-tile{
  aspect-ratio:4/5; min-height:0; padding:20px;
  justify-content:flex-end; gap:8px;
  border:0; border-radius:5px; color:var(--paper); background:var(--ink);
}
.kz-dir-image,
.kz-dir-shade{ position:absolute; inset:0; }
.kz-dir-image{
  z-index:0; background-size:cover; background-position:center;
  filter:grayscale(1) contrast(1.08); transform:scale(1.01);
  transition:transform var(--dur-l) var(--ease), filter var(--dur-m) var(--ease);
}
.kz-dir-image.is-empty{ background:radial-gradient(circle at 70% 20%,#555,#101010 58%); }
.kz-dir-shade{ z-index:1; background:linear-gradient(0deg,rgba(0,0,0,.88),rgba(0,0,0,.08) 68%); }
.kz-dir-tile:hover{ color:var(--paper); background:var(--ink); }
.kz-dir-tile:hover .kz-dir-image{ transform:scale(1.06); filter:grayscale(.75) contrast(1.05); }
.kz-dir-num,.kz-dir-copy,.kz-dir-arrow{ position:relative; z-index:2; }
.kz-dir-tile .kz-dir-num,
.kz-dir-tile:hover .kz-dir-num{ position:absolute; top:18px; left:18px; color:rgba(247,247,244,.7); }
.kz-dir-copy h3{ color:var(--paper); font-size:clamp(20px,2vw,26px); }
.kz-dir-copy p{ margin-top:5px; color:rgba(247,247,244,.68); font-size:12px; line-height:1.4; }
.kz-dir-arrow{ position:absolute; top:18px; right:18px; }

/* Full-screen search for a growing archive. */
.kz-search-overlay{
  position:fixed; z-index:300; inset:0; padding:var(--gutter);
  display:grid; place-items:center;
  color:var(--paper); background:rgba(10,10,10,.94);
  backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  opacity:0; visibility:hidden; transition:opacity var(--dur-m), visibility var(--dur-m);
}
body.kz-search-open{ overflow:hidden; }
body.kz-search-open .kz-search-overlay{ opacity:1; visibility:visible; }
.kz-search-panel{ width:min(860px,100%); }
.kz-search-panel .eyebrow{ color:rgba(247,247,244,.58); }
.kz-search-panel form{ display:grid; grid-template-columns:1fr auto; gap:10px; margin-top:20px; border-bottom:1px solid rgba(247,247,244,.35); padding-bottom:14px; }
.kz-search-panel input{ min-width:0; padding:0; border:0; outline:0; color:var(--paper); background:transparent; font:700 clamp(30px,5vw,64px)/1 var(--font-display); letter-spacing:-.045em; }
.kz-search-panel input::placeholder{ color:rgba(247,247,244,.25); }
.kz-search-panel button[type=submit]{ align-self:end; padding:10px 18px; border:1px solid var(--paper); border-radius:999px; background:var(--paper); color:var(--ink); font-size:10px; font-weight:700; text-transform:uppercase; }
.kz-search-close{ position:absolute; top:24px; right:var(--gutter); border:0; background:none; color:var(--paper); font-size:36px; font-weight:300; }

/* Article photography remains in colour; only the Explore directory is B&W. */
.kz-single-cover img,
.kz-single-body img{ filter:none; }
.kz-footer-brand .kz-logo img{ height:18px!important; max-height:18px!important; }

@media (max-width:880px){
  .kz-nav-links{ position:static; inset:auto; padding:0; background:transparent; transform:none; opacity:1; pointer-events:auto; }
  .kz-nav-menu{
    position:fixed; inset:0; z-index:99;
    flex-direction:column; justify-content:center; align-items:flex-start; gap:20px;
    padding:90px 34px 40px; background:var(--ink);
    transform:translateY(-100%); opacity:0; pointer-events:none;
    transition:transform var(--dur-m) var(--ease), opacity var(--dur-m) var(--ease);
  }
  .kz-nav-menu a{ font-size:27px!important; letter-spacing:-.02em!important; text-transform:none; }
  body.nav-open .kz-nav-menu{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .kz-nav-toggle{ display:block; }
  .kz-hero{ height:620px; max-height:620px; }
  .kz-hero-media{ left:0; width:100%; }
  .kz-hero-media::after{ background:linear-gradient(0deg,rgba(0,0,0,.9),rgba(0,0,0,.08) 78%); }
  .kz-hero-inner{ width:100%; max-width:620px; padding:150px var(--gutter) 46px; background:transparent; }
  .kz-hero h1{ max-width:14ch; font-size:clamp(36px,7vw,52px); }
  .kz-dir-grid{ grid-template-columns:repeat(2,1fr); }
  .kz-brief-inner{ grid-template-columns:1fr; }
}

@media (max-width:640px){
  .kz-masthead{ padding-inline:12px; }
  .kz-nav-bar,.kz-masthead.is-condensed .kz-nav-bar{ width:100%; padding:6px 9px; border-radius:15px; }
  .kz-nav-actions{ gap:1px; }
  .kz-section{ padding:58px 0; }
  .kz-section-head{ align-items:flex-start; gap:18px; }
  .kz-head-actions{ width:100%; justify-content:space-between; }
  .btn-line{ font-size:10px; }
  .kz-carousel-controls button{ width:32px; height:32px; }
  .kz-hero{ height:590px; min-height:590px; }
  .kz-hero-inner{ padding-bottom:38px; }
  .kz-hero h1{ font-size:clamp(34px,10vw,46px); }
  .kz-hero-dek{ display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .kz-scroll-cue{ display:none; }
  .kz-carousel-viewport .kz-card,.kz-carousel-viewport .kz-card.is-feature{ flex-basis:82vw; width:82vw; }
  .kz-ig-cell{ flex-basis:82vw; width:82vw; }
  .kz-dir-grid{ display:flex; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:4px; scrollbar-width:none; }
  .kz-dir-grid::-webkit-scrollbar{ display:none; }
  .kz-dir-tile{ flex:0 0 76vw; scroll-snap-align:start; }
  .kz-brief{ padding:52px 0; }
  .kz-brief-item{ grid-template-columns:30px minmax(0,1fr); }
  .kz-brief-time{ display:none; }
  .kz-search-panel form{ grid-template-columns:1fr; }
  .kz-search-panel button[type=submit]{ justify-self:start; }
}

/* ==========================================================================
   KRAZE 1.2 — MEDIA COMPANY / SOFT DEPTH REVISION
   ========================================================================== */
body{ background:#f7f7f5; }
.kz-site-header{ position:sticky; top:0; z-index:200; background:rgba(255,255,255,.94); box-shadow:0 1px 0 rgba(10,10,10,.1),0 10px 32px rgba(10,10,10,.04); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); }
.kz-header-main{ height:68px; display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:32px; }
.kz-site-header .kz-logo{ color:var(--ink); font-size:22px; font-weight:800; letter-spacing:-.05em; }
.kz-site-header .kz-logo img,.kz-site-header .kz-logo .custom-logo{ width:auto!important; height:23px!important; max-width:124px!important; max-height:23px!important; filter:brightness(0); }
.kz-desktop-nav{ display:flex; justify-content:center; align-items:center; gap:clamp(15px,1.7vw,27px); height:100%; }
.kz-desktop-nav>a,.kz-company-menu>button{ border:0; padding:8px 0; color:var(--ink); background:none; font:700 10px/1 var(--font-body); letter-spacing:.075em; text-transform:uppercase; white-space:nowrap; }
.kz-desktop-nav>a:hover,.kz-company-menu>button:hover{ opacity:.5; }
.kz-company-menu{ position:relative; height:100%; display:flex; align-items:center; }
.kz-company-menu>button span{ display:inline-block; margin-left:3px; font-size:12px; transition:transform .2s; }
.kz-company-dropdown{ position:absolute; top:58px; left:-20px; width:190px; padding:8px; display:grid; gap:2px; border:1px solid rgba(10,10,10,.08); border-radius:10px; background:rgba(255,255,255,.98); box-shadow:0 18px 45px rgba(10,10,10,.14); opacity:0; visibility:hidden; transform:translateY(-7px); transition:.2s ease; }
.kz-company-dropdown a{ padding:11px 12px; border-radius:7px; color:var(--ink); font-size:12px; }
.kz-company-dropdown a:hover{ background:#f0f0ed; }
.kz-company-menu:hover .kz-company-dropdown,.kz-company-menu:focus-within .kz-company-dropdown{ opacity:1; visibility:visible; transform:none; }
.kz-company-menu:hover>button span,.kz-company-menu:focus-within>button span{ transform:rotate(180deg); }
.kz-header-actions{ display:flex; align-items:center; }
.kz-search-trigger{ display:flex; align-items:center; gap:9px; padding:7px 0 7px 18px; border:0; border-bottom:1px solid rgba(10,10,10,.45); background:none; color:var(--ink); font-size:11px; }
.kz-search-trigger svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.5; }
.kz-nav-toggle{ display:none; width:34px; height:34px; border:0; background:none; padding:8px 5px; }
.kz-nav-toggle span{ display:block; height:1px; margin:5px 0; background:var(--ink); }
.kz-social-strip{ color:#fff; background:#080808; }
.kz-social-strip-inner{ min-height:32px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.kz-strip-newsletter{ color:#fff; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.kz-social-links,.kz-footer-socials{ display:flex; align-items:center; gap:12px; }
.kz-social-links a,.kz-footer-socials a{ display:grid; place-items:center; width:22px; height:22px; color:inherit; }
.kz-social-links svg,.kz-footer-socials svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.kz-mobile-nav{ display:none; }

.kz-hero{ height:auto; min-height:0; max-height:none; padding:34px 0 50px; color:var(--paper); background:radial-gradient(circle at 75% 15%,#ececea 0,transparent 33%),linear-gradient(180deg,#fff,#efefec); }
.kz-hero-card{ position:relative; min-height:430px; display:grid; grid-template-columns:46% 54%; overflow:hidden; border:1px solid rgba(255,255,255,.16); border-radius:17px; background:#070707; box-shadow:0 28px 70px rgba(10,10,10,.2),0 3px 12px rgba(10,10,10,.12); }
.kz-hero-media{ position:relative; inset:auto; width:auto; height:auto; min-height:430px; overflow:hidden; }
.kz-hero-media img{ width:100%; height:100%; object-fit:cover; filter:grayscale(1) contrast(1.05); transform:scale(1.01); }
.kz-hero-media::after{ content:""; position:absolute; inset:0; background:linear-gradient(90deg,transparent 58%,#080808 100%),linear-gradient(0deg,rgba(0,0,0,.18),transparent 45%); }
.kz-hero-fallback{ width:100%; height:100%; background:radial-gradient(circle at 28% 24%,#696969,#151515 48%,#050505); }
.kz-hero-inner{ position:relative; z-index:2; width:auto; height:auto; max-width:none; margin:0; padding:52px clamp(34px,4.5vw,70px); display:flex; flex-direction:column; justify-content:center; background:radial-gradient(circle at 95% 10%,rgba(255,255,255,.11),transparent 38%),linear-gradient(135deg,#0b0b0b,#020202); }
.kz-hero-meta{ gap:15px; margin-bottom:18px; }
.kz-hero-meta .eyebrow{ color:rgba(247,247,244,.58); }
.kz-hero h1{ max-width:13ch; margin:0; color:var(--paper); font-size:clamp(34px,3.5vw,50px); line-height:.98; letter-spacing:-.045em; }
.kz-hero-dek{ max-width:46ch; margin-top:18px; color:rgba(247,247,244,.64); font-size:13px; line-height:1.55; }
.kz-hero-cta{ margin-top:24px; }
.kz-hero .btn-glass{ padding:11px 17px; box-shadow:inset 0 1px rgba(255,255,255,.14),0 8px 22px rgba(0,0,0,.25); }
.kz-scroll-cue{ display:none; }

.kz-section{ padding:74px 0; }
.kz-section-head{ margin-bottom:32px; }
.kz-carousel-controls--center{ justify-content:center; gap:10px; margin-top:28px; }
.kz-carousel-controls--center button{ width:44px; height:44px; border:1px solid rgba(10,10,10,.16); background:#fff; color:#080808; box-shadow:0 8px 22px rgba(10,10,10,.1); }
.kz-carousel-controls--center button:hover{ background:#080808; color:#fff; }
.kz-ig .kz-carousel-controls--center button{ border-color:rgba(255,255,255,.3); background:#fff; color:#080808; }
.kz-ig .kz-carousel-controls--center button:hover{ background:#262626; color:#fff; }
.kz-ig-grid{ gap:26px; padding:2px 2px 10px; }
.kz-ig-cell{ flex:0 0 326px; width:326px; height:auto; min-height:0; aspect-ratio:4/5; overflow:hidden; border:0; border-radius:8px; background:#111; box-shadow:0 18px 40px rgba(0,0,0,.26); }
.kz-ig-embed-crop{ position:relative; width:100%; height:100%; overflow:hidden; background:#111; }
.kz-ig-embed-crop iframe{ position:absolute!important; top:-56px!important; left:-1px!important; width:calc(100% + 2px)!important; min-width:0!important; max-width:none!important; height:690px!important; margin:0!important; border:0!important; }

#newsroom{ background:linear-gradient(180deg,#fafafa,#eeeeec); }
.kz-carousel-viewport .kz-grid{ padding:2px 2px 20px; }
.kz-carousel-viewport .kz-card,.kz-carousel-viewport .kz-card.is-feature{ overflow:hidden; border:1px solid rgba(10,10,10,.08); border-radius:11px; background:#fff; box-shadow:0 14px 34px rgba(10,10,10,.08); }
.kz-card-media,.kz-card.is-feature .kz-card-media{ margin:0 0 15px; border-radius:0; }
.kz-card>.eyebrow,.kz-card>h3,.kz-card>.kz-card-excerpt,.kz-card>.kz-card-date{ margin-left:17px; margin-right:17px; }
.kz-card>.kz-card-date{ margin-bottom:17px; }

.kz-community{ background:#f7f7f5; }
.kz-community-card{ position:relative; min-height:315px; padding:clamp(34px,5vw,70px); display:flex; align-items:flex-end; justify-content:space-between; gap:34px; overflow:hidden; border:1px solid rgba(255,255,255,.16); border-radius:20px; color:#fff; background:radial-gradient(circle at 80% 10%,rgba(255,255,255,.17),transparent 30%),radial-gradient(circle at 4% 100%,#363636,transparent 42%),linear-gradient(135deg,#111,#020202); box-shadow:0 26px 65px rgba(10,10,10,.2); }
.kz-community-card::before{ content:"K"; position:absolute; right:5%; top:-32%; color:rgba(255,255,255,.035); font:800 420px/1 var(--font-display); letter-spacing:-.1em; }
.kz-community-copy{ position:relative; z-index:1; }
.kz-community .eyebrow{ color:rgba(255,255,255,.52); }
.kz-community h2{ max-width:14ch; margin-top:11px; color:#fff; font-size:clamp(34px,4.8vw,64px); line-height:.95; }
.kz-community p{ max-width:48ch; margin-top:18px; color:rgba(255,255,255,.62); font-size:13px; }
.kz-community .btn-glass{ position:relative; z-index:1; flex:0 0 auto; box-shadow:0 12px 25px rgba(0,0,0,.28); }

.kz-directory{ background:radial-gradient(circle at 25% 0,#fff,transparent 35%),#efefec; }
.kz-dir-grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; border:0; }
.kz-explore-card{ position:relative; height:320px; min-width:0; overflow:hidden; border:1px solid rgba(10,10,10,.08); border-radius:14px; color:var(--ink); background:#fff; box-shadow:0 12px 28px rgba(10,10,10,.09); transition:transform .35s var(--ease),box-shadow .35s var(--ease); }
.kz-explore-card:hover{ transform:translateY(-6px); box-shadow:0 22px 44px rgba(10,10,10,.14); }
.kz-explore-image{ position:absolute; z-index:0; inset:0; display:block; overflow:hidden; background:#e9e9e7; }
.kz-explore-image img{ width:100%; height:100%; display:block; object-fit:cover; filter:saturate(.94) contrast(1.02); transition:transform .5s var(--ease),filter .35s; }
.kz-explore-card:hover .kz-explore-image img{ transform:scale(1.035); filter:saturate(1) contrast(1.02); }
.kz-explore-fade{ position:absolute; z-index:1; inset:32% 0 0; background:linear-gradient(180deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.07) 18%,rgba(255,255,255,.26) 38%,rgba(255,255,255,.58) 58%,rgba(255,255,255,.88) 76%,#fff 92%); pointer-events:none; }
.kz-explore-copy{ position:absolute; z-index:2; left:0; right:0; bottom:0; min-height:88px; padding:38px 18px 17px; display:flex; align-items:center; background:transparent; }
.kz-explore-copy strong{ padding-right:25px; font-size:20px; line-height:1.05; }
.kz-explore-copy b{ position:absolute; right:18px; bottom:23px; color:#080808; font:400 16px/1 Arial,Helvetica,sans-serif; }

/* Never allow platform emoji styling or inherited accent colours on arrows. */
.kz-carousel-controls button,.kz-dir-arrow,.kz-explore-copy b,.btn-line svg{ color:#080808; stroke:currentColor; }
.kz-ig .kz-carousel-controls button{ color:#080808; }
.kz-ig .btn-line,.kz-hero .btn-glass,.kz-community .btn-glass,.kz-strip-newsletter{ color:#fff; }

.kz-newsletter{ padding:74px 0; color:var(--ink); background:linear-gradient(180deg,#fff,#f2f2ef); }
.kz-newsletter-inner{ padding:42px; border:1px solid rgba(10,10,10,.09); border-radius:16px; background:rgba(255,255,255,.78); box-shadow:0 18px 45px rgba(10,10,10,.08); }
.kz-newsletter h2{ color:var(--ink); }
.kz-newsletter p{ color:#666; }
.kz-newsletter-form input[type=email]{ color:var(--ink); background:#fff; border-color:rgba(10,10,10,.2); }
.kz-newsletter-form input::placeholder{ color:#8a8a8a; }
.kz-newsletter-form button{ color:#fff; background:var(--ink); }
.kz-newsletter-form button:hover{ color:#fff; background:#333; }
.kz-footer{ background:#080808; color:#fff; }
.kz-footer-top{ align-items:flex-start; }
.kz-footer-brand p{ color:rgba(255,255,255,.55); }
.kz-footer-brand .kz-logo img{ filter:brightness(0) invert(1); }
.kz-footer-cols{ display:grid; grid-template-columns:repeat(3,minmax(110px,1fr)); gap:clamp(34px,5vw,70px); }
.kz-footer-col h4{ color:rgba(255,255,255,.42); }
.kz-footer-col a{ color:#fff; }
.kz-footer-bottom{ border-color:rgba(255,255,255,.15); color:rgba(255,255,255,.46); }
.kz-footer-socials{ margin-top:20px; }
.kz-footer-socials a{ width:34px; height:34px; border:1px solid rgba(255,255,255,.2); border-radius:50%; color:#fff; }
.kz-collab-float{ position:fixed; z-index:190; right:18px; bottom:18px; display:flex; align-items:center; gap:8px; min-height:38px; padding:8px 13px; border:1px solid rgba(255,255,255,.28); border-radius:999px; color:#fff; background:rgba(10,10,10,.82); box-shadow:0 10px 28px rgba(0,0,0,.28); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); font-size:10px; font-weight:700; letter-spacing:.035em; text-transform:uppercase; }
.kz-collab-float svg{ width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.6; }
.kz-collab-float:hover{ color:#080808; background:#fff; }

@media (max-width:1050px){
  .kz-desktop-nav{ display:none; }
  .kz-header-main{ grid-template-columns:auto 1fr auto; }
  .kz-header-actions{ justify-self:end; gap:12px; }
  .kz-nav-toggle{ display:block; }
  .kz-mobile-nav{ position:fixed; z-index:198; top:100px; right:0; bottom:0; width:min(390px,100%); padding:30px var(--gutter) 50px; display:flex; flex-direction:column; gap:7px; overflow-y:auto; color:#fff; background:rgba(8,8,8,.97); box-shadow:-20px 30px 50px rgba(0,0,0,.22); transform:translateX(105%); transition:transform .35s var(--ease); }
  .kz-mobile-nav a{ padding:9px 0; color:#fff; font-size:25px; font-weight:700; letter-spacing:-.025em; }
  .kz-mobile-divider{ height:1px; margin:13px 0; background:rgba(255,255,255,.18); }
  body.nav-open{ overflow:hidden; }
  body.nav-open .kz-mobile-nav{ transform:none; }
}

@media (max-width:760px){
  .kz-header-main{ height:60px; }
  .kz-site-header .kz-logo img,.kz-site-header .kz-logo .custom-logo{ height:20px!important; max-height:20px!important; max-width:108px!important; }
  .kz-social-strip-inner{ min-height:30px; }
  .kz-mobile-nav{ top:90px; }
  .kz-search-trigger span{ display:none; }
  .kz-search-trigger{ padding-left:0; border:0; }
  .kz-hero{ padding:20px 0 34px; }
  .kz-hero-card{ min-height:0; grid-template-columns:1fr; border-radius:14px; }
  .kz-hero-media{ min-height:0; height:270px; }
  .kz-hero-media::after{ background:linear-gradient(0deg,#080808 0,transparent 36%); }
  .kz-hero-inner{ padding:30px 25px 34px; }
  .kz-hero h1{ font-size:clamp(31px,9.2vw,43px); }
  .kz-hero-dek{ display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .kz-section{ padding:58px 0; }
  .kz-section-head{ align-items:flex-end; gap:20px; }
  .kz-section-head .btn-line{ flex:0 0 auto; }
  .kz-community-card{ min-height:400px; padding:34px 25px; flex-direction:column; align-items:flex-start; justify-content:flex-end; }
  .kz-community h2{ font-size:clamp(37px,11vw,52px); }
  .kz-dir-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:11px; overflow:visible; padding:0; }
  .kz-explore-card{ min-width:0; }
  .kz-explore-card{ height:270px; }
  .kz-explore-copy{ min-height:76px; padding:32px 13px 14px; }
  .kz-explore-copy strong{ font-size:16px; }
  .kz-explore-copy span{ font-size:10px; }
  .kz-explore-copy b{ right:12px; bottom:19px; }
  .kz-newsletter{ padding:58px 0; }
  .kz-newsletter-inner{ padding:28px 22px; }
  .kz-newsletter-form{ min-width:100%; }
  .kz-footer-cols{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .kz-collab-float span{ display:none; }
  .kz-collab-float{ right:13px; bottom:13px; width:40px; min-height:40px; padding:0; justify-content:center; }
}

@media (max-width:420px){
  .kz-strip-newsletter{ font-size:9px; }
  .kz-social-links{ gap:6px; }
  .kz-social-links a{ width:20px; }
  .kz-hero-media{ height:235px; }
  .kz-carousel-viewport .kz-card,.kz-carousel-viewport .kz-card.is-feature{ flex-basis:84vw; width:84vw; }
  .kz-ig-cell{ flex-basis:min(84vw,326px); width:min(84vw,326px); }
  .kz-ig-embed-crop iframe{ top:-54px!important; }
  .kz-explore-card{ height:235px; }
  .kz-explore-copy{ min-height:68px; padding-top:28px; justify-content:center; }
}
