:root{
  --bz-prompt-accent:var(--bz-added-accent,var(--bz-primary,#ff4f6d));
  --bz-prompt-accent-rgb:255,79,109;
  --bz-prompt-ink:#2b2623;
  --bz-prompt-text:#403a36;
  --bz-prompt-muted:#81766f;
  --bz-prompt-soft:#fbf7f2;
  --bz-prompt-paper:#fffdfb;
  --bz-prompt-line:rgba(65,52,44,.12);
  --bz-prompt-line-strong:rgba(65,52,44,.20);
  --bz-prompt-warm:#c78864;
  --bz-prompt-shadow:0 18px 46px rgba(50,38,30,.085);
  --bz-prompt-shadow-soft:0 10px 28px rgba(50,38,30,.055);
  --bz-prompt-radius:22px;
}

.bz-prompt-archive,
.bz-prompt-single{
  width:100%;
  max-width:none;
  margin:0;
  padding:0 0 56px;
  color:var(--bz-prompt-text);
  background:linear-gradient(180deg,#fff 0%,#fffaf7 55%,#fff 100%);
  isolation:isolate;
}

.bz-prompt-shell{
  width:min(100%,1188px);
  margin:0 auto;
  padding:clamp(24px,3vw,38px) 16px 0;
}
.bz-prompt-shell--single{width:min(100%,1060px)}

.bz-prompt-page-hero{
  position:relative;
  overflow:hidden;
  min-height:148px;
  display:flex;
  align-items:center;
  color:#fff;
  background-color:#1b1e21;
  background-image:
    linear-gradient(90deg,rgba(24,21,20,.92),rgba(43,34,28,.78) 46%,rgba(33,29,27,.86)),
    radial-gradient(circle at 86% 22%,rgba(255,255,255,.15),transparent 30%),
    radial-gradient(circle at 18% 100%,rgba(199,136,100,.22),transparent 34%);
}
.bz-prompt-page-hero--single{
  min-height:190px;
  background-image:
    linear-gradient(90deg,rgba(24,21,20,.92),rgba(43,34,28,.78) 46%,rgba(33,29,27,.88)),
    var(--bz-prompt-hero-image, radial-gradient(circle at 72% 50%,rgba(199,136,100,.18),transparent 34%)),
    radial-gradient(circle at 86% 22%,rgba(255,255,255,.14),transparent 30%);
  background-size:cover,cover,cover;
  background-position:center;
}
.bz-prompt-page-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,rgba(255,255,255,.08) 0 1px,transparent 1px 10px),
    linear-gradient(180deg,rgba(255,255,255,.04),transparent 70%);
  opacity:.34;
  pointer-events:none;
}
.bz-prompt-page-hero__inner{
  position:relative;
  z-index:2;
  width:min(100%,1188px);
  margin:0 auto;
  padding:28px 16px 30px;
}
.bz-prompt-shell--single + .bz-prompt-page-hero__inner,
.bz-prompt-page-hero--single .bz-prompt-page-hero__inner{width:min(100%,1060px)}
.bz-prompt-page-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:0 10px;
  border-radius:100px;
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.82);
  font-size:.78rem;
  font-weight:400;
  letter-spacing:.04em;
  margin-bottom:13px;
  backdrop-filter:blur(8px);
}
.bz-prompt-page-hero__title{
  margin:0;
  color:#fff;
  font-size:clamp(1.68rem,3vw,2.28rem);
  line-height:1.55;
  font-weight:400;
  letter-spacing:-.03em;
  text-shadow:1px 1px 0 rgba(0,0,0,.28);
  max-width:920px;
}
.bz-prompt-page-hero__desc{
  max-width:760px;
  margin:12px 0 0;
  color:rgba(255,255,255,.78);
  font-size:.96rem;
  font-weight:250;
  line-height:2;
  letter-spacing:-.01em;
}
.bz-prompt-page-hero__desc p{margin:0}.bz-prompt-page-hero__terms{display:flex;gap:8px;flex-wrap:wrap;margin:14px 0 0}.bz-prompt-page-hero__terms .bz-prompt-mini-pill{background:rgba(255,255,255,.11);border:1px solid rgba(255,255,255,.16);color:rgba(255,255,255,.86);backdrop-filter:blur(8px)}

.bz-prompt-search{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 18px;
}
.bz-prompt-search__field{
  position:relative;
  flex:1 1 auto;
  min-width:0;
  border:1px solid var(--bz-prompt-line);
  border-radius:18px;
  background:rgba(255,255,255,.88);
  box-shadow:0 10px 25px rgba(49,39,31,.045),inset 0 1px 0 rgba(255,255,255,.75);
  overflow:hidden;
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.bz-prompt-search__field:focus-within{
  background:#fff;
  border-color:rgba(199,136,100,.34);
  box-shadow:0 14px 36px rgba(199,136,100,.10),0 0 0 4px rgba(199,136,100,.075);
}
.bz-prompt-search input[type=search]{
  width:100%;
  min-height:58px;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  padding:0 22px 0 124px;
  color:var(--bz-prompt-ink);
  font-family:inherit;
  font-size:.96rem;
  font-weight:350;
  outline:0;
}
.bz-prompt-search input[type=search]::placeholder{color:#9b918a;font-weight:300}.bz-prompt-search__submit{
  position:absolute;
  left:7px;
  top:7px;
  bottom:7px;
  min-width:108px;
  padding:0 17px;
  border:1px solid rgba(43,38,35,.12);
  border-radius:14px;
  background:linear-gradient(180deg,#34302d,#24211f);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  font-family:inherit;
  font-weight:500;
  letter-spacing:-.01em;
  box-shadow:0 10px 21px rgba(43,38,35,.16),inset 0 1px 0 rgba(255,255,255,.12);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.bz-prompt-search__submit:hover{transform:translateY(-1px);background:linear-gradient(180deg,#403934,#2b2623);box-shadow:0 14px 28px rgba(43,38,35,.20),inset 0 1px 0 rgba(255,255,255,.14)}.bz-prompt-search__submit:active{transform:translateY(0)}.bz-prompt-search__icon{width:17px;height:17px;flex:0 0 auto}.bz-prompt-search__label{display:inline-flex;align-items:center;line-height:1}.bz-prompt-search__reset{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 15px;
  border:1px solid var(--bz-prompt-line);
  border-radius:16px;
  background:#fff;
  color:#756b65;
  text-decoration:none;
  font-weight:400;
  white-space:nowrap;
  box-shadow:var(--bz-prompt-shadow-soft);
  transition:transform .18s ease,border-color .18s ease,color .18s ease;
}
.bz-prompt-search__reset:hover{transform:translateY(-1px);border-color:rgba(199,136,100,.34);color:var(--bz-prompt-ink)}

.bz-prompt-chip-rail{
  display:flex;
  align-items:center;
  gap:9px;
  margin:0 0 13px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:2px 1px 10px;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
}
.bz-prompt-style-rail{margin-top:-2px;margin-bottom:26px}.bz-prompt-chip-rail::-webkit-scrollbar{height:6px}.bz-prompt-chip-rail::-webkit-scrollbar-thumb{background:rgba(70,55,45,.16);border-radius:999px}.bz-prompt-chip,.bz-prompt-rail-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:38px;
  padding:0 14px;
  border:1px solid var(--bz-prompt-line);
  border-radius:999px;
  background:rgba(255,255,255,.82);
  color:#524841;
  text-decoration:none;
  font-weight:400;
  font-size:.88rem;
  white-space:nowrap;
  scroll-snap-align:start;
  box-shadow:0 7px 18px rgba(50,38,30,.04);
  transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease;
}
.bz-prompt-chip:hover{transform:translateY(-1px);border-color:rgba(199,136,100,.32);box-shadow:0 12px 26px rgba(50,38,30,.065)}.bz-prompt-chip.is-active{background:#2f2a26;border-color:#2f2a26;color:#fff;box-shadow:0 13px 27px rgba(47,42,38,.13)}.bz-prompt-chip span{display:inline-flex;align-items:center;justify-content:center;min-width:22px;height:22px;padding:0 7px;border-radius:999px;background:rgba(47,42,38,.07);font-size:.75rem}.bz-prompt-chip.is-active span{background:rgba(255,255,255,.16)}.bz-prompt-rail-label{background:transparent;border-color:transparent;box-shadow:none;color:var(--bz-prompt-muted);padding-inline:2px 5px;min-width:auto}

.bz-prompt-grid{
  display:block;
  column-count:4;
  column-gap:23px;
}
.bz-prompt-grid--related{column-count:4}.bz-prompt-card{
  display:inline-block;
  width:100%;
  margin:0 0 24px;
  break-inside:avoid;
  page-break-inside:avoid;
  vertical-align:top;
}
.bz-prompt-card__thumb{
  position:relative;
  display:block;
  width:100%;
  background:#1f2428;
  border-radius:18px;
  overflow:hidden;
  color:inherit;
  text-decoration:none;
  box-shadow:0 14px 34px rgba(42,34,28,.10);
  transform:translateZ(0);
  transition:transform .24s cubic-bezier(.2,.8,.2,1),box-shadow .24s ease,filter .24s ease;
}
.bz-prompt-card__thumb:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12),inset 0 -46px 70px rgba(0,0,0,.10);
}
.bz-prompt-card__thumb:hover{transform:translateY(-4px);box-shadow:0 22px 52px rgba(42,34,28,.15);filter:saturate(1.02)}.bz-prompt-card__thumb img,.bz-prompt-card__thumb video{display:block;width:100%;height:auto;max-width:100%;object-fit:contain;background:#171a1d}.bz-prompt-card__body{padding:12px 3px 0}.bz-prompt-card__title{margin:0;font-size:.98rem;line-height:1.72;font-weight:400;letter-spacing:-.02em}.bz-prompt-card__title a{color:var(--bz-prompt-ink);text-decoration:none;background:linear-gradient(currentColor,currentColor) 100% 100% / 0 1px no-repeat;transition:color .18s ease,background-size .22s ease}.bz-prompt-card__title a:hover{color:#a9674b;background-size:100% 1px}.bz-prompt-card__excerpt,.bz-prompt-card__meta,.bz-prompt-type-badge{display:none!important}.bz-prompt-placeholder{display:flex;align-items:center;justify-content:center;width:100%;aspect-ratio:4/5;color:rgba(255,255,255,.82);background:radial-gradient(circle at 35% 25%,rgba(199,136,100,.32),transparent 36%),linear-gradient(135deg,#24211f,#3a322d)}.bz-prompt-placeholder svg{width:62px;height:62px}.bz-prompt-play-badge{position:absolute;inset:0;z-index:4;display:flex;align-items:center;justify-content:center;pointer-events:none}.bz-prompt-play-badge svg{width:54px;height:54px;filter:drop-shadow(0 12px 22px rgba(0,0,0,.28));transition:transform .22s ease}.bz-prompt-play-badge circle{fill:rgba(255,255,255,.92)}.bz-prompt-play-badge path{fill:#2f2a26}.bz-prompt-card__thumb:hover .bz-prompt-play-badge svg{transform:scale(1.06)}

.bz-prompt-pagination{margin-top:30px;display:flex;justify-content:center}.bz-prompt-pagination .nav-links{display:flex;gap:8px;align-items:center;flex-wrap:wrap}.bz-prompt-pagination a,.bz-prompt-pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 13px;border-radius:13px;background:#fff;border:1px solid var(--bz-prompt-line);box-shadow:0 7px 18px rgba(50,38,30,.045);text-decoration:none;color:#4f4640;font-weight:400}.bz-prompt-pagination .current{background:#2f2a26;color:#fff;border-color:#2f2a26}.bz-prompt-empty{border:1px dashed var(--bz-prompt-line-strong);border-radius:20px;padding:34px;text-align:center;background:rgba(255,255,255,.82);color:var(--bz-prompt-muted);line-height:1.9;box-shadow:var(--bz-prompt-shadow-soft)}

.bz-prompt-post-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin:0 0 22px;
  color:#6d625b;
}
.bz-prompt-post-head__right{display:flex;align-items:center;min-width:0}.bz-prompt-post-head__right img{width:34px!important;height:34px!important;border-radius:100px;box-shadow:0 1px 10px rgba(0,0,0,.16);margin-left:10px}.bz-prompt-post-head__author{font-size:.88rem;font-weight:400;color:#625850;white-space:nowrap}.bz-prompt-post-head__date{margin-right:22px;font-size:.82rem;font-weight:250;color:#8b817a;white-space:nowrap}.bz-prompt-post-head__date:before{content:"|";margin-left:10px;color:rgba(65,52,44,.30)}.bz-prompt-post-head__line{flex:1 1 auto;height:1px;min-width:24px;background:linear-gradient(90deg,rgba(65,52,44,.18),transparent)}.bz-prompt-source{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 13px;border-radius:14px;background:rgba(47,42,38,.055);border:1px solid rgba(47,42,38,.07);color:#524841;text-decoration:none;font-weight:400;font-size:.84rem;white-space:nowrap;transition:background .18s ease,color .18s ease,transform .18s ease,border-color .18s ease}.bz-prompt-source:hover{background:#2f2a26;border-color:#2f2a26;color:#fff;transform:translateY(-1px)}

.bz-prompt-single__article{display:block}.bz-prompt-featured-media{position:relative;margin:0 auto 28px;border-radius:20px;overflow:hidden;background:#171a1d;box-shadow:0 20px 54px rgba(45,35,28,.13)}.bz-prompt-featured-media:after{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;box-shadow:inset 0 0 0 1px rgba(255,255,255,.12)}.bz-prompt-featured-media img{display:block;width:100%;height:auto;max-width:100%;object-fit:contain;background:#171a1d}.bz-prompt-featured-media video{display:block;width:100%;height:auto;max-height:82vh;object-fit:contain;background:#171a1d}.bz-prompt-mini-pill{display:inline-flex;align-items:center;min-height:30px;padding:0 10px;border-radius:999px;background:rgba(47,42,38,.06);color:#665c55;text-decoration:none;font-size:.76rem;font-weight:400;transition:background .18s ease,color .18s ease,transform .18s ease}.bz-prompt-mini-pill:hover{background:rgba(199,136,100,.12);color:#8a553f;transform:translateY(-1px)}

.bz-prompt-copy-card,
.bz-prompt-description-card,
.bz-prompt-related{
  margin:26px auto 0;
  border:1px solid var(--bz-prompt-line);
  border-radius:22px;
  background:rgba(255,255,255,.86);
  box-shadow:var(--bz-prompt-shadow-soft);
  padding:24px;
}
.bz-prompt-copy-card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#fffdfb,#fff8f3);
  border-color:rgba(199,136,100,.20);
}
.bz-prompt-copy-card:before{content:"";position:absolute;inset:0 0 auto;height:3px;background:linear-gradient(90deg,rgba(199,136,100,.84),rgba(255,79,109,.46),rgba(199,136,100,.12));opacity:.9}.bz-prompt-copy-card__head,.bz-prompt-related__head{display:flex;align-items:center;gap:14px;margin-bottom:17px}.bz-prompt-copy-card__head:after,.bz-prompt-related__head:after{content:"";height:1px;flex:1 1 auto;background:linear-gradient(90deg,rgba(65,52,44,.16),transparent)}.bz-prompt-copy-card h2,.bz-prompt-description-card h2,.bz-prompt-related h2{margin:0;color:var(--bz-prompt-ink);font-size:1.08rem;line-height:1.6;font-weight:400;letter-spacing:-.02em}.bz-prompt-copy-card__hint{display:none!important}.bz-prompt-full-text{width:100%;min-height:136px;height:auto;resize:none;overflow:hidden;border:1px solid rgba(65,52,44,.16);border-radius:18px;background:#fffdfa;color:#2f2a26;padding:19px 20px;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;line-height:1.9;font-size:.93rem;white-space:pre-wrap;box-shadow:inset 0 1px 0 rgba(255,255,255,.82);cursor:text;transition:border-color .18s ease,box-shadow .18s ease,background .18s ease}.bz-prompt-full-text:hover{border-color:rgba(199,136,100,.34);box-shadow:inset 0 1px 0 rgba(255,255,255,.82),0 10px 26px rgba(199,136,100,.065)}.bz-prompt-full-text:focus{outline:0;border-color:rgba(199,136,100,.48);box-shadow:0 0 0 4px rgba(199,136,100,.09)}.bz-prompt-copy-card__actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:16px}.bz-prompt-copy-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 19px;border:1px solid rgba(43,38,35,.10);border-radius:15px;background:linear-gradient(180deg,#34302d,#25211f);color:#fff;font-family:inherit;font-weight:500;letter-spacing:-.01em;cursor:pointer;white-space:nowrap;box-shadow:0 13px 26px rgba(47,42,38,.17),inset 0 1px 0 rgba(255,255,255,.12);transition:transform .18s ease,box-shadow .18s ease,background .18s ease,opacity .18s ease}.bz-prompt-copy-btn:hover{transform:translateY(-1px);background:linear-gradient(180deg,#3f3833,#2c2724);box-shadow:0 17px 34px rgba(47,42,38,.22),inset 0 1px 0 rgba(255,255,255,.12)}.bz-prompt-copy-btn:active{transform:translateY(0)}.bz-prompt-copy-btn:disabled{opacity:.78;cursor:wait}.bz-prompt-copy-btn.is-copied{background:linear-gradient(180deg,#2d7d55,#246946);border-color:rgba(45,125,85,.28);box-shadow:0 13px 26px rgba(45,125,85,.15)}.bz-prompt-copy-btn.is-copy-error{background:linear-gradient(180deg,#b84238,#9f352d);border-color:rgba(184,66,56,.28)}.bz-prompt-copy-btn__icon{width:18px;height:18px;flex:0 0 auto}.bz-prompt-copy-btn__label{display:inline-flex;align-items:center;line-height:1}.bz-prompt-copy-status{min-height:24px;color:#2d7d55;font-weight:400;line-height:1.7}.bz-prompt-content{line-height:2;color:#514941}.bz-prompt-content>:last-child{margin-bottom:0}.bz-prompt-related{padding-top:24px;background:#fffdfb}.bz-prompt-related__head{align-items:flex-end;justify-content:space-between}.bz-prompt-related__head p{margin:0;color:var(--bz-prompt-muted);line-height:1.8;font-size:.9rem;font-weight:250}.bz-prompt-related__head:after{display:none}.bz-prompt-description-card{background:#fffdfb}.bz-prompt-breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap;margin:30px auto 0;padding:13px 16px;border:1px solid var(--bz-prompt-line);border-radius:17px;background:rgba(255,255,255,.72);backdrop-filter:blur(12px);color:var(--bz-prompt-muted);font-size:.84rem;font-weight:350;box-shadow:0 8px 22px rgba(50,38,30,.035)}.bz-prompt-breadcrumb a{color:#5d524a;text-decoration:none}.bz-prompt-breadcrumb a:hover{color:#9a6048}.bz-prompt-breadcrumb__sep{color:rgba(65,52,44,.28)}.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

body.bazarestan-prompt-native #app main,
body.bazarestan-prompt-native .bazarestan-php-ssr-root main{overflow:visible!important}body.bazarestan-prompt-native #bz-content-spa-stage,body.bazarestan-prompt-native .bazarestan-server-native-stage{display:block!important;width:100%!important;max-width:100%!important;margin:0 auto!important;padding-top:calc(clamp(14px,2vw,28px) + var(--bz-video-stage-extra-top,0px))!important;padding-bottom:0!important;min-height:0!important}body.bazarestan-prompt-native footer,body.bazarestan-prompt-native .site-footer{margin-top:0!important}

html.dark .bz-prompt-archive,html.dark .bz-prompt-single{background:linear-gradient(180deg,#181818 0%,#1f1d1b 60%,#181818 100%);color:#d8d0ca}html.dark .bz-prompt-shell{color:#d8d0ca}html.dark .bz-prompt-search__field,html.dark .bz-prompt-copy-card,html.dark .bz-prompt-description-card,html.dark .bz-prompt-related,html.dark .bz-prompt-empty,html.dark .bz-prompt-breadcrumb,html.dark .bz-prompt-chip,html.dark .bz-prompt-search__reset{background:rgba(34,32,30,.86);border-color:rgba(255,255,255,.09);color:#d8d0ca}html.dark .bz-prompt-card__title a,html.dark .bz-prompt-copy-card h2,html.dark .bz-prompt-description-card h2,html.dark .bz-prompt-related h2{color:#f3eee9}html.dark .bz-prompt-full-text{background:#211f1d;color:#f3eee9;border-color:rgba(255,255,255,.12)}html.dark .bz-prompt-post-head{color:#bdb3aa}html.dark .bz-prompt-post-head__author{color:#e5ded8}html.dark .bz-prompt-post-head__date{color:#a79d95}

body.bz-ltr-english-mode .bz-prompt-archive,
body.bz-ltr-english-mode .bz-prompt-single,
body.bz-ltr-english-mode .bz-prompt-search,
body.bz-ltr-english-mode .bz-prompt-copy-card,
body.bz-ltr-english-mode .bz-prompt-description-card,
body.bz-ltr-english-mode .bz-prompt-related,
body.bz-ltr-english-mode .bz-prompt-page-hero,
body.bz-ltr-english-mode .bz-prompt-post-head{direction:ltr;text-align:left}body.bz-ltr-english-mode .bz-prompt-search input[type=search]{padding:0 124px 0 22px}body.bz-ltr-english-mode .bz-prompt-search__submit{left:auto;right:7px}body.bz-ltr-english-mode .bz-prompt-post-head__right img{margin-left:0;margin-right:10px}body.bz-ltr-english-mode .bz-prompt-post-head__date{margin-right:0;margin-left:22px}body.bz-ltr-english-mode .bz-prompt-post-head__date:before{margin-left:0;margin-right:10px}body.bz-ltr-english-mode .bz-prompt-mini-pill,body.bz-ltr-english-mode .bz-prompt-chip{font-family:inherit}

@media(max-width:1180px){.bz-prompt-grid,.bz-prompt-grid--related{column-count:3}}
@media(max-width:1024px){.bz-prompt-grid,.bz-prompt-grid--related{column-count:2}.bz-prompt-page-hero--single{min-height:170px}.bz-prompt-post-head{align-items:flex-start;flex-wrap:wrap}.bz-prompt-post-head__line{display:none}}
@media(max-width:640px){.bz-prompt-page-hero{min-height:135px}.bz-prompt-page-hero__inner{padding:24px 14px 26px}.bz-prompt-page-hero__title{font-size:1.45rem;line-height:1.65}.bz-prompt-page-hero__desc{font-size:.9rem;line-height:1.9}.bz-prompt-shell{padding:22px 12px 0}.bz-prompt-search{display:block}.bz-prompt-search__field{border-radius:16px}.bz-prompt-search input[type=search]{min-height:54px;padding:0 15px 0 66px}.bz-prompt-search__submit{min-width:46px;width:46px;padding:0;border-radius:13px}.bz-prompt-search__label{display:none}.bz-prompt-search__reset{width:100%;margin-top:9px}.bz-prompt-grid,.bz-prompt-grid--related{column-count:1}.bz-prompt-card{margin-bottom:20px}.bz-prompt-card__thumb,.bz-prompt-featured-media{border-radius:16px}.bz-prompt-card__body{padding-top:10px}.bz-prompt-play-badge svg{width:50px;height:50px}.bz-prompt-copy-card,.bz-prompt-description-card,.bz-prompt-related{padding:18px;border-radius:18px}.bz-prompt-copy-card__head,.bz-prompt-related__head{align-items:flex-start;flex-direction:column}.bz-prompt-copy-card__head:after{display:none}.bz-prompt-copy-card__actions{display:block}.bz-prompt-copy-btn{width:100%;min-height:48px}.bz-prompt-copy-status{margin-top:9px}.bz-prompt-full-text{min-height:142px;font-size:.86rem;padding:16px}.bz-prompt-breadcrumb{justify-content:flex-start}.bz-prompt-related__head p{font-size:.86rem}.bz-prompt-post-head__right{flex-wrap:wrap;gap:6px}.bz-prompt-post-head__date{margin-right:0}.bz-prompt-post-head__date:before{display:none}body.bz-ltr-english-mode .bz-prompt-search input[type=search]{padding:0 66px 0 15px}}

/* v1.0.130 — exact blog-header alignment + calmer human editorial prompt UI */
.bz-prompt-archive,
.bz-prompt-single{
  background:var(--color-body-bg,#fff)!important;
  color:var(--color-text-90,#333)!important;
}

.bz-prompt-archive .bz-prompt-blog-hero,
.bz-prompt-single .bz-prompt-blog-hero,
section.header.bz-prompt-blog-hero{
  position:relative;
  overflow:hidden;
  height:110px;
  min-height:0;
  display:flex;
  align-items:center;
  background-color:#1b1e21;
  margin:0;
  padding:0;
  color:#fff;
}
.bz-prompt-blog-hero:before{
  content:" ";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  top:0;
  background-color:var(--color-secondary-50,rgba(39,44,48,.55));
  z-index:2;
  -webkit-backdrop-filter:blur(5px) grayscale(1);
  backdrop-filter:blur(5px) grayscale(1);
}
.bz-prompt-blog-hero .back{
  content:" ";
  position:absolute;
  left:-10px;
  right:-10px;
  bottom:-10px;
  top:-10px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;
  background-image:var(--img-p-h);
  z-index:1;
  transform:translateZ(0);
}
.bz-prompt-blog-hero .container{
  position:relative;
  z-index:3;
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
}
.bz-prompt-blog-hero h1{
  margin:0;
  max-width:min(62%,760px);
  line-height:1.45;
}
.bz-prompt-blog-hero h1 a{
  color:#fff;
  font-size:30px;
  font-weight:400;
  letter-spacing:-.5px;
  text-shadow:rgba(0,0,0,.5) 1px 1px 0;
  text-decoration:none;
}
.bz-prompt-blog-hero nav{
  padding:0;
  text-shadow:rgba(0,0,0,.5) 1px 1px 0;
}
.bz-prompt-blog-hero nav ol.breadcrumb{
  margin:0;
  background-color:transparent;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  list-style:none;
}
.bz-prompt-blog-hero nav ol.breadcrumb li{
  position:relative;
  margin-right:10px;
  color:#fff;
  font-weight:200;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  opacity:1;
}
.bz-prompt-blog-hero nav ol.breadcrumb li:first-child{margin-right:0}
.bz-prompt-blog-hero nav ol.breadcrumb li a{
  color:#fff;
  text-decoration:none;
}
.bz-prompt-blog-hero nav ol.breadcrumb li.active{
  opacity:.86;
}
.bz-prompt-blog-hero .bz-prompt-hero-home{
  margin-left:10px;
  width:16px!important;
  height:16px!important;
  fill:#fff;
  filter:drop-shadow(1px 1px 0 rgba(0,0,0,.4));
}
.bz-prompt-blog-hero .bz-prompt-hero-arrow{
  fill:#fff;
  margin-left:10px;
  width:11px!important;
  height:11px!important;
  transform:rotate(180deg);
  filter:drop-shadow(-1px 1px 0 rgba(0,0,0,.4));
}

.bz-prompt-shell{
  width:min(100%,1180px);
  padding-top:45px;
}
.bz-prompt-shell--single{
  width:min(100%,1060px);
}

.bz-prompt-single .bz-prompt-post-head.post-head{
  margin:0 0 20px;
}
.bz-prompt-single .bz-prompt-post-head.post-head .container{
  padding:0;
  max-width:none;
}
.bz-prompt-single .bz-prompt-post-head.post-head .details{
  display:flex;
  justify-content:space-between;
  margin-bottom:20px;
  align-items:center;
}
.bz-prompt-single .bz-prompt-post-head.post-head .details .right{
  display:flex;
  align-items:center;
  min-width:0;
}
.bz-prompt-single .bz-prompt-post-head.post-head .details .right .author{
  display:flex;
  align-items:center;
  min-width:0;
}
.bz-prompt-single .bz-prompt-post-head.post-head .details .right .author img{
  width:34px!important;
  height:34px!important;
  border-radius:100px;
  box-shadow:0 1px 10px rgba(0,0,0,.18);
}
.bz-prompt-single .bz-prompt-post-head.post-head .details .right .author .name{
  margin-right:10px;
  font-size:14px;
  font-weight:400;
  color:#767676;
  white-space:nowrap;
}
.bz-prompt-single .bz-prompt-post-head.post-head .details .right .date{
  margin-right:25px;
  font-size:13px;
  font-weight:200;
  opacity:.55;
  color:#202020;
  white-space:nowrap;
}
.bz-prompt-single .bz-prompt-post-head.post-head .details .right .date:before{
  content:"|";
  margin-left:10px;
  font-weight:200;
  font-size:14px;
  opacity:.5;
}
.bz-prompt-single .bz-prompt-post-head.post-head .details .center{
  flex-grow:1;
  height:1px;
  margin-left:15px;
  margin-right:10px;
  opacity:.1;
  background:linear-gradient(90deg,rgba(0,0,0,.8071) 0%,rgba(0,0,0,0) 100%);
}
.bz-prompt-single .bz-prompt-post-head.post-head .details .left{
  display:flex;
  align-items:center;
}
.bz-prompt-source,
.bz-prompt-source--static{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:3px;
  background:transparent;
  border:1px solid rgba(0,0,0,.08);
  color:#585858;
  text-decoration:none;
  font-size:13px;
  font-weight:200;
  white-space:nowrap;
  box-shadow:none;
  transition:all .2s ease;
}
.bz-prompt-source:hover{
  background:var(--color-secondary,#333);
  color:#fff;
  border-color:var(--color-secondary,#333);
  transform:none;
}

.bz-prompt-search{
  margin:0 0 22px;
  gap:10px;
}
.bz-prompt-search__field{
  border-radius:5px;
  background:var(--color-card-bg,#fff);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 6px 22px rgba(0,0,0,.035);
}
.bz-prompt-search__field:focus-within{
  border-color:rgba(0,0,0,.16);
  box-shadow:0 9px 26px rgba(0,0,0,.06);
}
.bz-prompt-search input[type=search]{
  min-height:54px;
  padding:0 20px 0 118px;
  color:var(--color-text-90,#333);
  font-weight:300;
  letter-spacing:-.2px;
}
.bz-prompt-search__submit{
  left:6px;
  top:6px;
  bottom:6px;
  min-width:104px;
  border-radius:4px;
  background:var(--color-secondary,#333);
  border:1px solid transparent;
  color:#fff;
  box-shadow:none;
  font-weight:400;
  gap:7px;
}
.bz-prompt-search__submit:hover{
  transform:none;
  background:var(--color-primary,var(--color-secondary,#333));
  box-shadow:none;
}
.bz-prompt-search__reset{
  border-radius:4px;
  box-shadow:none;
  min-height:44px;
}

.bz-prompt-chip-rail{
  gap:7px;
  margin-bottom:12px;
  padding-bottom:8px;
}
.bz-prompt-style-rail{
  margin-bottom:28px;
}
.bz-prompt-chip,
.bz-prompt-rail-label{
  min-height:36px;
  border-radius:3px;
  background:var(--color-card-bg,#fff);
  border:1px solid rgba(0,0,0,.07);
  color:var(--color-text-70,#666);
  box-shadow:none;
  font-size:14px;
  font-weight:300;
  letter-spacing:-.3px;
}
.bz-prompt-chip:hover{
  transform:none;
  border-color:rgba(0,0,0,.14);
  color:var(--color-text-90,#333);
  box-shadow:none;
}
.bz-prompt-chip.is-active{
  background:var(--color-secondary,#333);
  border-color:var(--color-secondary,#333);
  color:#fff;
  box-shadow:none;
}
.bz-prompt-chip span{
  min-width:20px;
  height:20px;
  border-radius:3px;
}

.bz-prompt-grid{
  column-gap:24px;
}
.bz-prompt-card{
  margin-bottom:28px;
}
.bz-prompt-card__thumb{
  border-radius:5px;
  background:#1b1e21;
  box-shadow:none;
  transition:opacity .2s ease,filter .2s ease;
}
.bz-prompt-card__thumb:before{
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
.bz-prompt-card__thumb:hover{
  transform:none;
  box-shadow:none;
  filter:brightness(.96);
}
.bz-prompt-card__body{
  padding:10px 1px 0;
}
.bz-prompt-card__title{
  font-size:15px;
  line-height:1.75;
  font-weight:300;
  letter-spacing:-.45px;
}
.bz-prompt-card__title a{
  color:var(--color-text-90,#333);
}
.bz-prompt-card__title a:hover{
  color:var(--color-primary,#111);
}

.bz-prompt-featured-media{
  border-radius:5px;
  margin-bottom:22px;
  background:#1b1e21;
  box-shadow:none;
}
.bz-prompt-featured-media:after{
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
.bz-prompt-single__terms{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:7px;
  margin:0 0 22px;
}
.bz-prompt-mini-pill{
  min-height:32px;
  border-radius:3px;
  padding:0 11px;
  background:var(--color-card-bg,#fff);
  border:1px solid rgba(0,0,0,.08);
  color:var(--color-text-70,#666);
  font-size:13px;
  font-weight:300;
}
.bz-prompt-mini-pill:hover{
  background:var(--color-secondary,#333);
  border-color:var(--color-secondary,#333);
  color:#fff;
  transform:none;
}

.bz-prompt-copy-card,
.bz-prompt-description-card,
.bz-prompt-related{
  border-radius:5px;
  border:1px solid rgba(0,0,0,.075);
  background:var(--color-card-bg,#fff);
  box-shadow:none;
  padding:24px;
}
.bz-prompt-copy-card{
  background:var(--color-card-bg,#fff);
  border-color:rgba(0,0,0,.085);
}
.bz-prompt-copy-card:before{display:none}
.bz-prompt-copy-card__head,
.bz-prompt-related__head{
  margin-bottom:16px;
}
.bz-prompt-copy-card__head:after,
.bz-prompt-related__head:after{
  opacity:.7;
}
.bz-prompt-copy-card h2,
.bz-prompt-description-card h2,
.bz-prompt-related h2{
  font-size:18px;
  line-height:1.7;
  font-weight:400;
  letter-spacing:-.5px;
  color:var(--color-text-90,#333);
}
.bz-prompt-full-text{
  min-height:134px;
  border-radius:4px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.018);
  color:var(--color-text-90,#333);
  padding:18px 19px;
  line-height:1.9;
  font-size:14px;
  box-shadow:none;
}
.bz-prompt-full-text:hover,
.bz-prompt-full-text:focus{
  border-color:rgba(0,0,0,.18);
  box-shadow:none;
}
.bz-prompt-copy-card__actions{
  margin-top:14px;
}
.bz-prompt-copy-btn{
  min-height:44px;
  border-radius:4px;
  background:var(--color-secondary,#333);
  border-color:transparent;
  color:#fff;
  box-shadow:none;
  font-weight:400;
}
.bz-prompt-copy-btn:hover{
  transform:none;
  background:var(--color-primary,var(--color-secondary,#333));
  box-shadow:none;
}
.bz-prompt-copy-btn.is-copied{
  background:#2d7d55;
  box-shadow:none;
}
.bz-prompt-copy-status{
  font-size:13px;
  font-weight:300;
}
.bz-prompt-related{
  margin-top:28px;
}
.bz-prompt-related__head{
  align-items:center;
}
.bz-prompt-related__head p{
  display:none;
}
.bz-prompt-description-card{
  margin-top:28px;
}
.bz-prompt-content{
  color:var(--color-text-90,#333);
  font-weight:300;
  text-align:justify;
  line-height:1.9;
  letter-spacing:-.3px;
}
.bz-prompt-breadcrumb{
  border-radius:4px;
  background:transparent;
  border-color:rgba(0,0,0,.06);
  box-shadow:none;
}

html.dark .bz-prompt-blog-hero:before{
  background-color:rgba(12,12,12,.64);
}
html.dark .bz-prompt-single .bz-prompt-post-head.post-head .details .right .author .name{color:#a2a2a2}
html.dark .bz-prompt-single .bz-prompt-post-head.post-head .details .right .date{color:#e9e9e9}
html.dark .bz-prompt-single .bz-prompt-post-head.post-head .details .center{background:linear-gradient(90deg,rgba(255,255,255,.8071) 0%,rgba(255,255,255,0) 100%)}
html.dark .bz-prompt-source,
html.dark .bz-prompt-source--static,
html.dark .bz-prompt-search__field,
html.dark .bz-prompt-chip,
html.dark .bz-prompt-mini-pill,
html.dark .bz-prompt-copy-card,
html.dark .bz-prompt-description-card,
html.dark .bz-prompt-related{
  border-color:rgba(255,255,255,.09);
}
html.dark .bz-prompt-full-text{
  background:rgba(255,255,255,.035);
  border-color:rgba(255,255,255,.11);
}

body.bz-ltr-english-mode .bz-prompt-blog-hero,
body.bz-ltr-english-mode .bz-prompt-blog-hero .container,
body.bz-ltr-english-mode .bz-prompt-blog-hero nav ol.breadcrumb,
body.bz-ltr-english-mode .bz-prompt-post-head.post-head,
body.bz-ltr-english-mode .bz-prompt-single__terms{
  direction:ltr;
  text-align:left;
}
body.bz-ltr-english-mode .bz-prompt-blog-hero .bz-prompt-hero-home{margin-left:0;margin-right:10px}
body.bz-ltr-english-mode .bz-prompt-blog-hero .bz-prompt-hero-arrow{margin-left:0;margin-right:10px;transform:none}
body.bz-ltr-english-mode .bz-prompt-blog-hero nav ol.breadcrumb li{margin-right:0;margin-left:10px}
body.bz-ltr-english-mode .bz-prompt-single .bz-prompt-post-head.post-head .details .right .author .name{margin-right:0;margin-left:10px}
body.bz-ltr-english-mode .bz-prompt-single .bz-prompt-post-head.post-head .details .right .date{margin-right:0;margin-left:25px}
body.bz-ltr-english-mode .bz-prompt-single .bz-prompt-post-head.post-head .details .right .date:before{margin-left:0;margin-right:10px}
body.bz-ltr-english-mode .bz-prompt-search input[type=search]{padding:0 118px 0 20px}
body.bz-ltr-english-mode .bz-prompt-search__submit{left:auto;right:6px}

@media (max-width:992px){
  .bz-prompt-blog-hero{height:130px}
  .bz-prompt-blog-hero .container{flex-direction:column;justify-content:center;text-align:center}
  .bz-prompt-blog-hero h1{max-width:100%;margin-bottom:20px}
  .bz-prompt-blog-hero nav ol.breadcrumb{justify-content:center}
}
@media (max-width:576px){
  .bz-prompt-blog-hero{height:auto;min-height:0;padding:20px 0}
  .bz-prompt-blog-hero h1 a{font-size:25px}
  .bz-prompt-shell{padding-top:35px}
  .bz-prompt-search{display:block}
  .bz-prompt-search input[type=search]{padding:0 15px 0 62px}
  .bz-prompt-search__submit{min-width:44px;width:44px;border-radius:4px}
  .bz-prompt-search__label{display:none}
  .bz-prompt-copy-card,.bz-prompt-description-card,.bz-prompt-related{padding:18px;border-radius:5px}
  .bz-prompt-featured-media,.bz-prompt-card__thumb{border-radius:5px}
  .bz-prompt-single .bz-prompt-post-head.post-head .details{align-items:flex-start;gap:12px;flex-wrap:wrap}
  .bz-prompt-single .bz-prompt-post-head.post-head .details .center{display:none}
  .bz-prompt-single .bz-prompt-post-head.post-head .details .right{flex-wrap:wrap;gap:6px}
  .bz-prompt-single .bz-prompt-post-head.post-head .details .right .date{margin-right:0}
  .bz-prompt-single .bz-prompt-post-head.post-head .details .right .date:before{display:none}
  body.bz-ltr-english-mode .bz-prompt-search input[type=search]{padding:0 62px 0 15px}
}


/* v1.0.141 — prompt importer + single prompt pro redesign */
.bz-prompt-copy-showcase{position:relative;padding:28px;border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,249,245,.98));border:1px solid rgba(205,166,138,.26);box-shadow:0 26px 70px rgba(80,52,34,.08);overflow:hidden}
.bz-prompt-copy-showcase:before{content:"";position:absolute;inset:0 0 auto;height:130px;background:radial-gradient(circle at top right,rgba(255,141,87,.16),transparent 54%),radial-gradient(circle at top left,rgba(196,136,100,.14),transparent 46%);pointer-events:none}
.bz-prompt-copy-showcase__hero{position:relative;z-index:1;margin-bottom:18px}
.bz-prompt-copy-showcase__head{align-items:flex-start;justify-content:space-between;gap:14px}.bz-prompt-copy-showcase__head:after{display:none}
.bz-prompt-copy-showcase__eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;background:rgba(199,136,100,.09);color:#9a6048;font-size:.74rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:10px}
.bz-prompt-copy-showcase__lead{margin:0;color:#6c6158;line-height:1.95;font-size:.94rem;max-width:760px}
.bz-prompt-copy-showcase__workspace{display:grid;grid-template-columns:minmax(0,1fr) 260px;gap:18px;align-items:stretch}
.bz-prompt-copy-showcase__surface{display:flex;flex-direction:column;min-width:0}
.bz-prompt-copy-showcase__toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 16px;border:1px solid rgba(65,52,44,.11);border-bottom:0;border-radius:20px 20px 0 0;background:linear-gradient(180deg,#fff,#fbf6f2)}
.bz-prompt-copy-showcase__dots{display:inline-flex;align-items:center;gap:7px}.bz-prompt-copy-showcase__dots i{display:block;width:10px;height:10px;border-radius:999px;background:#e8d3c3;box-shadow:0 1px 0 rgba(255,255,255,.7) inset}.bz-prompt-copy-showcase__dots i:first-child{background:#f4b08b}.bz-prompt-copy-showcase__dots i:nth-child(2){background:#f3d17a}.bz-prompt-copy-showcase__dots i:nth-child(3){background:#a7d8a5}
.bz-prompt-copy-showcase__title{font-size:.84rem;color:#77695f;font-weight:700}
.bz-prompt-copy-showcase__meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap}.bz-prompt-copy-showcase__meta span{display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.8);border:1px solid rgba(65,52,44,.1);font-size:.8rem;color:#6e6159;white-space:nowrap}
.bz-prompt-copy-showcase__side{display:flex}
.bz-prompt-copy-showcase__actions{display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start;gap:10px;width:100%;padding:16px;border:1px solid rgba(65,52,44,.1);border-radius:22px;background:linear-gradient(180deg,rgba(255,255,255,.82),rgba(255,248,243,.9))}
.bz-prompt-copy-btn--primary{width:100%}.bz-prompt-copy-btn--ghost,.bz-prompt-copy-btn--soft{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 16px;border-radius:15px;text-decoration:none}.bz-prompt-copy-btn--ghost{background:#fff;color:#453a34;border:1px solid rgba(65,52,44,.12);box-shadow:none}.bz-prompt-copy-btn--ghost:hover{background:#fff8f2;transform:translateY(-1px)}.bz-prompt-copy-btn--soft{background:linear-gradient(180deg,#f6efe8,#efe2d5);color:#5b4539;border:1px solid rgba(196,136,100,.22);box-shadow:none}.bz-prompt-copy-btn--soft:hover{background:linear-gradient(180deg,#fbf3eb,#f3e7db);transform:translateY(-1px)}
.bz-prompt-copy-showcase .bz-prompt-full-text{border-radius:0 0 22px 22px;border-top-color:rgba(65,52,44,.08);background:linear-gradient(180deg,#fffdfa,#fff7f2);min-height:290px}
.bz-prompt-similar-shell{margin-top:26px}.bz-prompt-similar-shell .bz-prompt-related{padding:24px 24px 10px;border-radius:28px;background:linear-gradient(180deg,#fffdfb,#fff8f3);border:1px solid rgba(205,166,138,.22);box-shadow:0 22px 64px rgba(80,52,34,.06)}
.bz-prompt-related__head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;flex-wrap:wrap}.bz-prompt-related__intro{max-width:720px}.bz-prompt-related__more{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 16px;border-radius:14px;border:1px solid rgba(196,136,100,.22);background:linear-gradient(180deg,#fff,#f8efe8);color:#7f543f;text-decoration:none;font-weight:700;white-space:nowrap;transition:transform .18s ease,box-shadow .18s ease,background .18s ease}.bz-prompt-related__more:hover{transform:translateY(-1px);box-shadow:0 12px 25px rgba(127,84,63,.09);background:linear-gradient(180deg,#fffaf7,#f4e9e1)}
.bz-prompt-grid--related{column-gap:18px}.bz-prompt-grid--related .bz-prompt-card{position:relative;padding:10px;border-radius:20px;background:rgba(255,255,255,.66);border:1px solid rgba(65,52,44,.08);box-shadow:0 15px 34px rgba(70,44,27,.05)}.bz-prompt-grid--related .bz-prompt-card__thumb{border-radius:16px;overflow:hidden}.bz-prompt-grid--related .bz-prompt-card__body{padding:12px 4px 4px}
body.bz-ltr-english-mode .bz-prompt-copy-showcase,body.bz-ltr-english-mode .bz-prompt-copy-showcase__actions,body.bz-ltr-english-mode .bz-prompt-similar-shell .bz-prompt-related{direction:ltr;text-align:left}
body.bz-ltr-english-mode .bz-prompt-copy-showcase__meta,body.bz-ltr-english-mode .bz-prompt-copy-showcase__head,body.bz-ltr-english-mode .bz-prompt-related__head{justify-content:space-between}
@media (max-width:980px){.bz-prompt-copy-showcase__workspace{grid-template-columns:1fr}.bz-prompt-copy-showcase__side{display:block}.bz-prompt-copy-showcase .bz-prompt-full-text{min-height:230px}}
@media (max-width:640px){.bz-prompt-copy-showcase{padding:18px;border-radius:20px}.bz-prompt-copy-showcase__toolbar{padding:10px 12px;border-radius:16px 16px 0 0}.bz-prompt-copy-showcase .bz-prompt-full-text{border-radius:0 0 16px 16px;min-height:190px}.bz-prompt-copy-showcase__actions{padding:12px;border-radius:16px}.bz-prompt-similar-shell .bz-prompt-related{padding:18px 18px 4px;border-radius:20px}.bz-prompt-related__more{width:100%}}
html.dark .bz-prompt-copy-showcase,html.dark .bz-prompt-similar-shell .bz-prompt-related{background:linear-gradient(180deg,rgba(28,27,25,.95),rgba(25,23,22,.98));border-color:rgba(255,255,255,.08);box-shadow:0 24px 70px rgba(0,0,0,.28)}
html.dark .bz-prompt-copy-showcase__toolbar,html.dark .bz-prompt-copy-showcase__actions{background:rgba(32,30,29,.92);border-color:rgba(255,255,255,.09)}
html.dark .bz-prompt-copy-showcase__title,html.dark .bz-prompt-copy-showcase__lead,html.dark .bz-prompt-copy-showcase__meta span,html.dark .bz-prompt-related__more{color:#e4dbd3}
html.dark .bz-prompt-copy-btn--ghost{background:#242220;color:#f0e7e0;border-color:rgba(255,255,255,.09)}
html.dark .bz-prompt-copy-btn--soft{background:linear-gradient(180deg,#3a322d,#2d2723);color:#f0e7e0;border-color:rgba(255,255,255,.08)}
