:root {
  --bp-page: linear-gradient(160deg, #f6f7f8 0%, #f3f4f6 45%, #eef0f2 100%);
  --bp-ink-900: rgba(22, 28, 36, 0.92);
  --bp-ink-600: rgba(22, 28, 36, 0.62);
  --bp-ink-500: rgba(22, 28, 36, 0.52);
  --bp-ink-400: rgba(22, 28, 36, 0.42);
  --bp-ink-200: rgba(22, 28, 36, 0.18);
  --bp-ink-100: rgba(22, 28, 36, 0.10);
  --bp-accent: #6366f1;
  --bp-accent-hover: #4f46e5;
  --bp-sidebar: rgba(255, 255, 255, 0.25);
  --bp-glass-panel: linear-gradient(0deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), rgba(255, 255, 255, 0.2);
  --bp-dock: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 240, 250, 0.78) 100%);
  --bp-shadow-glass: 0 8px 40px rgba(0, 0, 0, 0.06), 0 1.5px 4px rgba(0, 0, 0, 0.03), inset 0 1.5px 0 rgba(255, 255, 255, 0.9);
  --bp-shadow-card: 0 4px 16px rgba(23, 29, 37, 0.06);
  --bp-font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html, body { height: 100%; overflow: hidden; }

body.is-bp-app {
  margin: 0;
  font-family: var(--bp-font);
  color: var(--bp-ink-900);
  background: var(--bp-page);
}

.is-bp-app * { box-sizing: border-box; }

.is-bp-layout {
  display: flex;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.is-bp-blob {
  position: fixed;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.is-bp-blob--cyan {
  top: -10%;
  left: -5%;
  width: 45%;
  height: 50%;
  background: radial-gradient(circle, rgba(192, 228, 243, 0.35) 0%, rgba(192, 228, 243, 0.15) 30%, transparent 60%);
}

.is-bp-blob--lavender {
  top: 20%;
  right: -10%;
  width: 50%;
  height: 55%;
  background: radial-gradient(circle, rgba(214, 209, 244, 0.35) 0%, rgba(214, 209, 244, 0.15) 30%, transparent 60%);
}

.is-bp-blob--peach {
  bottom: -15%;
  left: 30%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(245, 221, 207, 0.30) 0%, rgba(245, 221, 207, 0.12) 30%, transparent 60%);
}

.is-bp-side {
  width: 72px;
  min-height: 100vh;
  background: var(--bp-sidebar);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 200;
  flex-shrink: 0;
}

.is-bp-brand {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}

.is-bp-brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.is-bp-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.is-bp-nav__item {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: rgba(30, 30, 50, 0.5);
  text-decoration: none;
  appearance: none;
  font: inherit;
  padding: 0;
}

.is-bp-nav__item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.is-bp-nav__item span {
  font-size: 10px;
  margin-top: 4px;
  font-weight: 500;
  line-height: 1;
}

.is-bp-nav__item:hover {
  transform: scale(1.05);
  color: rgba(30, 30, 50, 0.75);
}

.is-bp-nav__item.is-active,
.is-bp-nav__item.is-active:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3) 30%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(22, 28, 36, 0.22);
  box-shadow: 0 4px 34px rgba(0, 0, 0, 0.15);
  color: rgba(30, 30, 50, 0.85);
  transform: none;
}

.is-bp-side-foot {
  margin-top: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 10px;
}

.is-bp-user-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.55);
  color: var(--bp-ink-900);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-bp-side-login {
  width: 52px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(22, 28, 36, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--bp-ink-700, var(--bp-ink-600));
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.is-bp-side-login {
  width: 52px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(22, 28, 36, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--bp-ink-700, var(--bp-ink-600));
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.is-bp-side-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.45);
  color: rgba(30, 30, 50, 0.55);
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.is-bp-home {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 8px 24px;
}

.is-bp-home-hero {
  text-align: center;
  padding: 28px 16px 32px;
}

.is-bp-home-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.is-bp-home-logo__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.18);
}

.is-bp-home-logo__text {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #4f46e5;
}

.is-bp-home-tagline {
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--bp-ink-500);
}

.is-bp-feature-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.is-bp-feature-card {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  cursor: pointer;
  text-align: left;
  background: #e8eaed;
  box-shadow: var(--bp-shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  appearance: none;
  font: inherit;
  color: inherit;
  text-decoration: none;
  display: block;
}

.is-bp-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(23, 29, 37, 0.12);
}

.is-bp-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.is-bp-feature-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 35%, rgba(0, 0, 0, 0.55) 100%);
}

.is-bp-feature-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 14px 18px;
  color: #fff;
}

.is-bp-feature-card__label {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.is-bp-feature-card__title {
  display: block;
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.is-bp-feature-card__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.is-bp-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(214, 228, 255, 0.75) 0%, rgba(255, 230, 220, 0.65) 45%, rgba(240, 236, 255, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--bp-shadow-card);
  margin-bottom: 28px;
}

.is-bp-promo__copy strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--bp-ink-900);
}

.is-bp-promo__copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--bp-ink-600);
  max-width: 720px;
}

.is-bp-promo__btn {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: #fff;
  color: var(--bp-ink-900);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.is-bp-gallery-section {
  margin-bottom: 12px;
}

.is-bp-gallery-head h2 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--bp-ink-900);
}

.is-bp-gallery-head p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--bp-ink-500);
}

.is-bp-gallery-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.is-bp-gallery-card {
  flex: 0 0 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #e8eaed;
  box-shadow: var(--bp-shadow-card);
  text-decoration: none;
}

.is-bp-gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.is-bp-scroll--home {
  padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 1180px) {
  .is-bp-feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .is-bp-feature-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .is-bp-feature-card {
    flex: 0 0 220px;
    min-height: 320px;
  }

  .is-bp-promo {
    flex-direction: column;
    align-items: flex-start;
  }

  .is-bp-home-hero {
    padding-top: 12px;
  }
}

.is-bp-main {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.is-bp-scroll {
  flex: 1;
  overflow: auto;
  padding: 16px;
  padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
}

.is-bp-scroll.is-bp-scroll--dock-open {
  padding-bottom: calc(180px + env(safe-area-inset-bottom, 0px));
}

.is-bp-masonry {
  column-gap: 6px;
}

.is-bp-masonry--5 { column-count: 5; }
.is-bp-masonry--4 { column-count: 4; }
.is-bp-masonry--3 { column-count: 3; }
.is-bp-masonry--2 { column-count: 2; }

.is-bp-card {
  break-inside: avoid;
  margin-bottom: 6px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--bp-shadow-card);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.is-bp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 29, 37, 0.10);
}

.is-bp-card.is-selected {
  outline: 2px solid var(--bp-accent);
  outline-offset: 2px;
}

.is-bp-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #e8eaed;
}

.is-bp-card__meta {
  padding: 10px 12px 12px;
}

.is-bp-card__cat {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--bp-accent);
  margin-bottom: 4px;
}

.is-bp-card__title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--bp-ink-900);
}

.is-bp-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.is-bp-chip {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(22, 28, 36, 0.10);
  background: rgba(255, 255, 255, 0.55);
  color: var(--bp-ink-600);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.is-bp-chip.is-active {
  background: var(--bp-accent);
  border-color: var(--bp-accent);
  color: #fff;
}

.is-bp-dock-area {
  position: relative;
  z-index: 100;
  padding: 0 16px 16px;
  pointer-events: none;
}

.is-bp-dock-area > * { pointer-events: auto; }

.is-bp-link-row {
  padding: 8px 8px 0;
}

.is-bp-link-row input[type="url"] {
  width: 100%;
  border: 1px solid rgba(22, 28, 36, 0.10);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.is-bp-generate-dock {
  position: fixed;
  bottom: 24px;
  left: calc(50% + 36px);
  transform: translateX(-50%);
  width: min(920px, calc(92vw - 72px));
  z-index: 120;
  background: var(--bp-dock);
  backdrop-filter: blur(48px) saturate(2);
  -webkit-backdrop-filter: blur(48px) saturate(2);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--bp-shadow-glass);
  padding: 8px;
}

.is-bp-advanced {
  position: fixed;
  left: calc(50% + 36px);
  transform: translateX(-50%);
  width: min(920px, calc(92vw - 72px));
  bottom: calc(24px + 88px);
  max-height: min(48vh, 460px);
  overflow: auto;
  z-index: 110;
  background: #ffffff;
  border: 1px solid rgba(22, 28, 36, 0.1);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--bp-shadow-card);
}

.is-bp-advanced.is-bp-advanced--personas {
  max-height: min(62vh, 580px);
}

.is-bp-scroll .is-bp-panel {
  position: static;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--bp-shadow-card);
}

.is-bp-app .is-campaign-tag {
  background: rgba(99, 102, 241, 0.12);
  color: var(--bp-accent);
}

.is-bp-app .is-campaign-tag--cpa {
  background: rgba(232, 168, 56, 0.15);
  color: #92400e;
}

.is-bp-app .is-result-card,
.is-bp-app .is-campaign-plan-grid div {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 28, 36, 0.08);
  border-radius: 14px;
  padding: 14px;
}

.is-bp-app .is-result-lines__main { color: var(--bp-ink-900); }

@media (max-width: 860px) {
  .is-bp-generate-dock {
    left: 50%;
    width: min(920px, 94vw);
    bottom: 65px;
  }

  .is-bp-advanced {
    left: 50%;
    transform: translateX(-50%);
    width: min(920px, 94vw);
    bottom: calc(65px + 92px);
  }
}

.is-bp-form-grid--who {
  grid-template-columns: 1fr;
}

.is-bp-form-span2 {
  grid-column: 1 / -1;
}

.is-bp-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(22, 28, 36, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.8);
  resize: vertical;
  min-height: 72px;
}

.is-bp-product-row {
  padding: 8px 8px 0;
}

.is-bp-product-upload {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.is-bp-product-upload__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(99, 102, 241, 0.45);
  background: rgba(255, 255, 255, 0.72);
  color: var(--bp-accent);
  font-size: 13px;
  font-weight: 700;
}

.is-bp-product-upload__hint {
  font-size: 11px;
  color: var(--bp-ink-500);
  line-height: 1.45;
}

.is-bp-product-preview {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(22, 28, 36, 0.08);
  max-height: 160px;
}

.is-bp-product-workflow {
  margin-bottom: 0;
  background: #ffffff;
  border: 1px solid rgba(22, 28, 36, 0.08);
  border-radius: 16px;
  padding: 14px;
}

.is-bp-product-hero {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.is-bp-product-hero__media {
  position: relative;
  width: 280px;
  min-height: 220px;
  max-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(22, 28, 36, 0.12);
  background: #f3f4f6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-bp-product-hero__media img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f3f4f6;
}

.is-bp-product-hero__change {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(22, 28, 36, 0.72);
  cursor: pointer;
}

.is-bp-product-hero__body {
  min-width: 0;
}

.is-bp-product-wait {
  display: none;
}

.is-bp-product-workflow__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.is-bp-product-workflow__actions .is-bp-btn--primary {
  flex: 1;
  min-width: 140px;
}

.is-bp-product-personas {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: #ffffff;
}

.is-bp-product-preview img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  display: block;
}

.is-bp-product-personas__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.is-bp-product-personas__head strong {
  font-size: 14px;
  color: var(--bp-ink-900);
}

.is-bp-product-personas__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--bp-accent);
  background: rgba(99, 102, 241, 0.1);
  border-radius: 999px;
  padding: 3px 8px;
}

.is-bp-product-personas__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--bp-ink-500);
}

.is-bp-persona-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  max-height: 320px;
  overflow-y: auto;
}

.is-bp-persona-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(22, 28, 36, 0.1);
  background: #ffffff;
  cursor: pointer;
}

.is-bp-persona-card.is-active {
  border-color: rgba(99, 102, 241, 0.55);
  background: rgba(99, 102, 241, 0.1);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.is-bp-persona-card__num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.14);
  color: var(--bp-accent);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.is-bp-persona-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.is-bp-persona-card__who {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: var(--bp-ink-900);
}

.is-bp-persona-card__after {
  display: block;
  font-size: 11px;
  line-height: 1.45;
  color: var(--bp-ink-500);
  font-style: normal;
}

.is-bp-persona-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.is-bp-persona-chip {
  border: 1px solid rgba(22, 28, 36, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--bp-ink-700);
  cursor: pointer;
  text-align: left;
  max-width: 100%;
}

.is-bp-persona-chip.is-active {
  border-color: rgba(99, 102, 241, 0.55);
  background: rgba(99, 102, 241, 0.12);
  color: var(--bp-accent);
  font-weight: 700;
}

.is-bp-persona-after {
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(22, 28, 36, 0.06);
  padding: 10px 12px;
  margin-bottom: 10px;
}

.is-bp-persona-after__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--bp-ink-500);
  margin-bottom: 4px;
}

.is-bp-persona-after p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--bp-ink-700);
}

.is-bp-product-personas__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.is-bp-product-personas__actions .is-bp-btn--primary {
  flex: 1;
  min-width: 140px;
}

@media (max-width: 720px) {
  .is-bp-product-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .is-bp-product-hero__media {
    width: 100%;
    max-width: 100%;
    min-height: 180px;
    max-height: 260px;
  }

  .is-bp-product-hero__media img {
    max-height: 260px;
  }
}

.is-campaign-plan-grid--who div {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 28, 36, 0.08);
  border-radius: 14px;
  padding: 14px;
}

@media (max-width: 860px) {
  .is-bp-advanced,
  .is-bp-panel {
    left: 12px;
    right: 12px;
    bottom: calc(65px + 92px);
  }
}

.is-bp-generate-dock__inner {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.is-bp-generate-dock textarea,
.is-bp-generate-dock input[type="url"] {
  flex: 1;
  border: 0;
  background: transparent;
  resize: none;
  min-height: 44px;
  max-height: 120px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--bp-ink-900);
  outline: none;
}

.is-bp-generate-dock textarea::placeholder,
.is-bp-generate-dock input::placeholder {
  color: rgba(30, 30, 50, 0.45);
}

.is-bp-generate-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 4px;
  padding-bottom: 4px;
}

.is-bp-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(22, 28, 36, 0.10);
  background: rgba(255, 255, 255, 0.65);
  color: var(--bp-ink-600);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.is-bp-submit-btn {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 0;
  background: var(--bp-accent);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.is-bp-submit-btn:hover { background: var(--bp-accent-hover); }

.is-bp-advanced[hidden] { display: none !important; }

.is-bp-advanced-toggle {
  margin-top: 8px;
  border: 0;
  background: none;
  color: var(--bp-ink-500);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
}

.is-bp-panel[hidden] { display: none !important; }

.is-bp-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--bp-ink-500);
}

.is-bp-empty h2 {
  margin: 0 0 8px;
  color: var(--bp-ink-900);
  font-size: 1.25rem;
}

.is-bp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.is-bp-form-grid label span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--bp-ink-500);
  margin-bottom: 6px;
}

.is-bp-form-grid input {
  width: 100%;
  border: 1px solid rgba(22, 28, 36, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.8);
}

.is-bp-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.is-bp-btn {
  appearance: none;
  border-radius: 12px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}

.is-bp-btn--primary {
  background: var(--bp-accent);
  color: #fff;
}

.is-bp-btn--outline {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(22, 28, 36, 0.12);
  color: var(--bp-ink-900);
}

.is-bp-msg {
  margin-top: 8px;
  font-size: 13px;
  color: #b91c1c;
}

.is-bp-msg.is-ok { color: #047857; }

.is-bp-gen-progress {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(22, 28, 36, 0.08);
}

.is-bp-gen-progress__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
}

.is-bp-gen-progress__phase {
  font-weight: 600;
  color: var(--bp-ink-900, #161c24);
}

.is-bp-gen-progress__eta {
  color: #2563eb;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.is-bp-gen-progress__track {
  height: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  overflow: hidden;
}

.is-bp-gen-progress__track i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  transition: width 0.35s ease;
}

.is-bp-app .is-modal-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.is-bp-app .is-btn--primary {
  background: var(--bp-accent);
}

.is-bp-app .is-btn--primary:hover {
  background: var(--bp-accent-hover);
}

.is-bp-result-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.is-bp-result-layout--center {
  width: 100%;
}

.is-bp-result-layout--center .is-result-main {
  width: 100%;
}

.is-result-banner-center {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.is-bp-app .is-result-banner-col {
  width: 100%;
}

.is-bp-app .is-result-banner-title {
  margin: 0 0 10px;
}

.is-bp-app .is-result-hero__frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(22, 28, 36, 0.08);
  border-radius: 16px;
  box-shadow: none;
}

.is-bp-app .is-result-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: #fff;
}

.is-bp-app .is-result-image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.is-bp-mobile-bar {
  display: none;
}

@media (max-width: 860px) {
  .is-bp-side {
    position: fixed;
    inset: 0 auto 0 0;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    z-index: 300;
  }

  .is-bp-side.is-open { transform: translateX(0); }

  .is-bp-generate-dock {
    left: 50%;
    width: min(920px, 94vw);
    bottom: 65px;
  }

  .is-bp-mobile-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(22, 28, 36, 0.08);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
  }

  .is-bp-mobile-menu {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(22, 28, 36, 0.10);
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
  }

  .is-bp-masonry--5,
  .is-bp-masonry--4 { column-count: 3; }

  .is-bp-result-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .is-bp-masonry--5,
  .is-bp-masonry--4,
  .is-bp-masonry--3 { column-count: 2; }

  .is-bp-form-grid { grid-template-columns: 1fr; }
}

.minimal-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.minimal-scrollbar:hover {
  scrollbar-color: rgba(22, 28, 36, 0.15) transparent;
}

.minimal-scrollbar::-webkit-scrollbar { width: 6px; }
.minimal-scrollbar::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 3px;
}
.minimal-scrollbar:hover::-webkit-scrollbar-thumb {
  background: rgba(22, 28, 36, 0.15);
}

.is-bm-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 4px 48px;
}

.is-bm-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.is-bm-title {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.is-bm-desc {
  margin: 0;
  font-size: 14px;
  color: var(--bp-ink-600);
  line-height: 1.5;
}

.is-bm-muted { color: var(--bp-ink-500); font-size: 12px; }

.is-bm-search {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: var(--bp-shadow-card);
  margin-bottom: 12px;
}

.is-bm-search[hidden],
.is-bm-search-results[hidden],
.is-bm-modal[hidden] {
  display: none !important;
}

.is-bm-card__shade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
  z-index: 1;
}

.is-bm-tip {
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--bp-ink-500);
}

.is-bm-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.is-bm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.is-bm-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: var(--bp-ink-700, rgba(22, 28, 36, 0.78));
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(22, 28, 36, 0.08);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.is-bm-chip:hover { border-color: rgba(255, 138, 0, 0.35); }

.is-bm-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #ffb800 0%, #ff8a00 100%);
  box-shadow: 0 4px 14px rgba(255, 138, 0, 0.28);
}

.is-bm-subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.is-bm-subhead h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.is-bm-trending { margin-bottom: 28px; }

.is-bm-trend-row { margin-bottom: 16px; }

.is-bm-trend-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
}

.is-bm-trend-row__head strong { font-weight: 700; }

.is-bm-trend-row__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.is-bm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 768px) {
  .is-bm-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .is-bm-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.is-bm-grid--pool .is-bm-card {
  flex: unset;
  width: auto;
}


.is-bm-card {
  position: relative;
  flex: 0 0 168px;
  width: 168px;
  background: #fff;
  border: 1px solid rgba(22, 28, 36, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--bp-shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.is-bm-grid .is-bm-card {
  flex: unset;
  width: auto;
}

.is-bm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(23, 29, 37, 0.12);
}

.is-bm-card__media {
  position: relative;
  aspect-ratio: 9 / 14;
  background: rgba(22, 28, 36, 0.06);
  overflow: hidden;
}

.is-bm-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}

.is-bm-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.is-bm-card:hover .is-bm-card__media img {
  transform: scale(1.04);
}

.is-bm-card__cat {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(6px);
  max-width: calc(100% - 16px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.is-bm-card__bookmark {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.is-bm-card__bookmark svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #666;
  stroke-width: 2;
}

.is-bm-card__bookmark.is-on svg {
  fill: #ff8a00;
  stroke: #ff8a00;
}

.is-bm-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.is-bm-card__play svg {
  width: 36px;
  height: 36px;
  fill: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.is-bm-card--mini .is-bm-card__play svg {
  width: 28px;
  height: 28px;
}

.is-bm-card__info {
  padding: 10px 10px 12px;
}

.is-bm-card__info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.is-bm-card__info-top strong {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.is-bm-card__by {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  color: #ff8a00;
  background: rgba(255, 184, 0, 0.14);
}

.is-bm-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: var(--bp-ink-500);
}

.is-bm-card__stat {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.is-bm-card__stat svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  opacity: 0.75;
}

.is-bm-card__del {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 4;
  border: 0;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #ef4444;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
}

.is-bm-card:hover .is-bm-card__del { opacity: 1; }

.is-bm-pool-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scrollbar-width: thin;
}

.is-bm-card--search .is-bm-card__body { padding: 12px; }

.is-bm-card__body strong {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.is-bm-card__body p {
  margin: 0 0 8px;
  font-size: 11px;
  color: var(--bp-ink-600);
}

.is-bm-card__ext {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 3px 7px;
  border-radius: 6px;
  font-size: 10px;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.55);
}

.is-bm-empty {
  text-align: center;
  padding: 48px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 28, 36, 0.06);
  border-radius: 16px;
}

.is-bm-empty--inline { grid-column: 1 / -1; padding: 32px; }

.is-bm-empty__icon { font-size: 40px; margin-bottom: 12px; }

.is-bm-warn-box,
.is-bm-tip-box {
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  font-size: 12px;
}

.is-bm-warn-box {
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.28);
  color: #92400e;
}

.is-bm-warn-box strong { display: block; margin-bottom: 6px; font-size: 13px; }

.is-bm-warn-box p { margin: 0; font-size: 11px; }

.is-bm-tip-box {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 28, 36, 0.06);
  color: var(--bp-ink-500);
}

.is-bm-btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: rgba(22, 28, 36, 0.06);
  color: var(--bp-ink-900);
}

.is-bm-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #ffb800 0%, #ff8a00 100%);
  box-shadow: 0 4px 14px rgba(255, 138, 0, 0.22);
}

.is-bm-btn--block { width: 100%; margin-top: 8px; }

.is-bm-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.is-bm-select,
.is-bm-input {
  border: 1px solid rgba(22, 28, 36, 0.12);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--bp-ink-900);
}

.is-bm-input { flex: 1; min-width: 180px; }

.is-bm-select--sort { min-width: 110px; }

.is-bm-link {
  border: 0;
  background: none;
  color: var(--bp-ink-500);
  font-size: 12px;
  cursor: pointer;
}

.is-bm-link:hover { color: #ff8a00; }

.is-bm-search-results { margin-bottom: 24px; }

.is-bm-modal[hidden] { display: none !important; }

.is-bm-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.is-bm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.is-bm-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.is-bm-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.is-bm-modal__head h3 { margin: 0; font-size: 18px; }

.is-bm-modal__x {
  border: 0;
  background: none;
  font-size: 24px;
  color: var(--bp-ink-400);
  cursor: pointer;
}

.is-bm-label {
  display: block;
  margin: 12px 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--bp-ink-600);
}

.is-bm-modal__actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.is-bm-modal__actions .is-bm-btn { flex: 1; }

.is-bm-add-result {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
}

.is-bm-add-result--ok { background: rgba(16, 185, 129, 0.12); color: #047857; }
.is-bm-add-result--warn { background: rgba(255, 193, 7, 0.15); color: #92400e; }
.is-bm-add-result--err { background: rgba(239, 68, 68, 0.1); color: #b91c1c; }

.is-th-page { max-width: 900px; margin: 0 auto; padding: 8px 4px 48px; }

.is-th-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }

.is-th-tabs { display: flex; gap: 8px; margin-bottom: 20px; }

.is-th-tab {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  color: var(--bp-ink-600);
}

.is-th-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #ffb800, #ff8a00);
}

.is-th-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.is-th-step {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(22, 28, 36, 0.06);
  color: var(--bp-ink-500);
}

.is-th-step.is-active { background: linear-gradient(135deg, #ffb800, #ff8a00); color: #fff; }
.is-th-step.is-done { background: rgba(16, 185, 129, 0.15); color: #047857; }

.is-th-card { margin-bottom: 20px; }
.is-th-card h2 { margin: 0 0 12px; font-size: 16px; }

.is-th-info { margin-bottom: 20px; text-align: left; }

.is-th-pattern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.is-th-pattern-grid--sm { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.is-th-pattern {
  border: 2px solid rgba(22, 28, 36, 0.08);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.is-th-pattern.is-active { border-color: #ff8a00; background: rgba(255, 184, 0, 0.12); }

.is-th-topic {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(22, 28, 36, 0.08);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.is-th-topic strong { display: block; font-size: 14px; margin-bottom: 4px; }
.is-th-topic span { font-size: 12px; color: var(--bp-ink-500); }

.is-th-hook-radios { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 10px; font-size: 13px; }

.is-th-hook-preview {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 184, 0, 0.1);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  min-height: 40px;
}

.is-th-result {
  width: 100%;
  border: 1px solid rgba(22, 28, 36, 0.12);
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  line-height: 1.55;
  resize: vertical;
  margin-bottom: 12px;
}

.is-th-result-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; }

.is-th-sched-form { padding: 16px; border-radius: 12px; background: rgba(22, 28, 36, 0.04); margin-bottom: 16px; }

.is-th-sched-time { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }

.is-th-sched-item, .is-th-thread-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(22, 28, 36, 0.06);
}

.is-th-sched-item__acts { display: flex; gap: 8px; align-items: center; }

.is-th-pattern-check { font-size: 11px; }

.is-th-notif {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(22, 28, 36, 0.06);
  text-decoration: none;
  color: inherit;
}

.is-th-notif.is-unread strong { color: #ff8a00; }

.is-th-notif span { display: block; font-size: 12px; color: var(--bp-ink-500); margin-top: 4px; }
