/* =========================================================================
   IDENTITÉ DE MARQUE — Showcase Maxim's (étude de cas)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Permanent+Marker&display=swap');

.bb-id-showcase,
.bb-id-showcase *,
.bb-id-showcase *::before,
.bb-id-showcase *::after {
  box-sizing: border-box;
}

.bb-id-showcase h2,
.bb-id-showcase h3 {
  display: block;
  white-space: normal;
  position: static;
  max-width: none;
  overflow: visible;
}

.bb-id-showcase {
  --bb-ink:         #0B1B2B;
  --bb-ink-soft:    #3A4A5A;
  --bb-ink-mute:    #5A6B7B;
  --bb-line:        #E8EEF6;

  --max-red:         #9F2024;
  --max-red-deep:    #7A171B;
  --max-cream:       #EDE3D3;
  --max-cream-soft:  #F4ECDB;
  --max-cream-paper: #FAF1DD;
  --max-ink:         #1A1310;
  --max-gold:        #B8945C;

  --bb-radius:      20px;
  --bb-ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --bb-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --bb-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --bb-brush: "Permanent Marker", "Caveat", "Bradley Hand", cursive;

  position: relative;
  font-family: var(--bb-font);
  background: #FFFFFF;
  overflow: hidden;
  isolation: isolate;
}

.bb-id-showcase__inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0;
  position: relative;
  z-index: 1;
}

/* ========== HEADER ========== */
.bb-id-showcase__head { margin: 0 auto 26px; max-width: 880px; text-align: center; }

.bb-id-showcase__kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 16px;
  margin: 0 0 14px;
  border-radius: 999px;
  background: rgba(var(--color-blue-rgb), 0.08);
  border: 1px solid rgba(var(--color-blue-rgb), 0.16);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue);
  max-width: max-content;
  overflow: hidden;
  isolation: isolate;
}

.bb-id-showcase__kicker::after {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(47, 123, 255, 0.25) 50%, transparent 100%);
  animation: bb-id-showcase-shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.bb-id-showcase__kicker::before {
  content: "";
  position: relative;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--color-blue);
  flex-shrink: 0;
  z-index: 1;
  animation: bb-id-showcase-pulse 2.5s ease-out infinite;
}

@keyframes bb-id-showcase-shimmer {
  0%, 70%, 100% { transform: translateX(0); opacity: 0; }
  80% { opacity: 1; }
  90% { transform: translateX(400%); opacity: 0; }
}

@keyframes bb-id-showcase-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(var(--color-blue-rgb), 0.6), 0 0 8px rgba(47, 123, 255, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(var(--color-blue-rgb), 0), 0 0 8px rgba(47, 123, 255, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(var(--color-blue-rgb), 0), 0 0 8px rgba(47, 123, 255, 0.6); }
}

.bb-id-showcase__title {
  font-family: var(--bb-font);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 auto 12px;
  color: var(--bb-ink);
  max-width: 24ch;
  text-wrap: balance;
}

.bb-id-showcase__title-accent {
  position: relative;
  display: inline-block;
  color: var(--color-blue);
  white-space: nowrap;
}

.bb-id-showcase__title-accent::after {
  content: "" !important;
  position: absolute !important;
  bottom: 4px !important;
  left: -4px !important;
  right: -4px !important;
  height: 11px !important;
  background: rgba(47, 123, 255, 0.35) !important;
  background-image: none !important;
  border-radius: 4px !important;
  z-index: 0 !important;
  display: block !important;
  pointer-events: none;
  /* Animation : la barre se déploie de gauche à droite au scroll */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.bb-id-showcase.is-in-view .bb-id-showcase__title-accent::after { transform: scaleX(1); }

.bb-id-showcase__subtitle {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 auto;
  color: var(--bb-ink-soft);
  max-width: 680px;
}

@media (prefers-reduced-motion: no-preference) {
  .bb-id-showcase__kicker,
  .bb-id-showcase__title,
  .bb-id-showcase__subtitle {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
    transition: opacity 0.9s var(--bb-ease), transform 1s var(--bb-ease), filter 0.9s var(--bb-ease);
  }
  .bb-id-showcase.is-in-view .bb-id-showcase__kicker   { opacity: 1; transform: none; filter: none; transition-delay: 0.05s; }
  .bb-id-showcase.is-in-view .bb-id-showcase__title    { opacity: 1; transform: none; filter: none; transition-delay: 0.18s; }
  .bb-id-showcase.is-in-view .bb-id-showcase__subtitle { opacity: 1; transform: none; filter: none; transition-delay: 0.32s; }
}

/* ========== DEMO LAYOUT ========== */
.bb-id-showcase__demo {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(360px, 1.8fr);
  align-items: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.bb-id-showcase__stepLabel { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; }

.bb-id-showcase__stepNum {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(var(--color-blue-rgb), 0.08);
  border: 1px solid rgba(var(--color-blue-rgb), 0.16);
  color: var(--color-blue);
  font-size: 10.5px;
  font-weight: 900;
}

.bb-id-showcase__stepText {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--bb-ink);
  letter-spacing: 0.02em;
}

/* ========== SKETCH ========== */
.bb-id-showcase__side--sketch {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s var(--bb-ease), transform 0.9s var(--bb-ease);
}

.bb-id-showcase.is-in-view .bb-id-showcase__side--sketch {
  opacity: 1; transform: translateX(0);
  transition-delay: 0.5s;
}

.bb-id-showcase__paper {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, var(--max-cream-paper) 0%, #F2EBD8 100%);
  border: 1px solid rgba(122, 23, 27, 0.12);
  border-radius: 4px;
  box-shadow:
    0 24px 50px rgba(26, 19, 16, 0.12),
    0 8px 20px rgba(26, 19, 16, 0.06);
  padding: 14px;
  overflow: hidden;
  transform: rotate(-1.8deg);
  transition: transform 0.6s var(--bb-ease);
}

.bb-id-showcase__paper:hover { transform: rotate(-1deg) translateY(-4px); }

.bb-id-showcase__paper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(180deg,
      transparent 0,
      transparent 25px,
      rgba(122, 23, 27, 0.04) 25px,
      rgba(122, 23, 27, 0.04) 26px);
  pointer-events: none;
}

.bb-id-showcase__paperCorner {
  position: absolute;
  top: -1px; right: -1px;
  width: 28px; height: 28px;
  background: linear-gradient(225deg, transparent 50%, #DFD4B8 50%, var(--max-cream-paper) 60%);
  border-bottom-left-radius: 6px;
  box-shadow: -2px 2px 4px rgba(26, 19, 16, 0.06);
}

.bb-id-showcase__sketchSvg {
  width: 100%; height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.bb-id-showcase__sketchLine {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

.bb-id-showcase.is-in-view .bb-id-showcase__sketchLine {
  animation: bb-id-showcase-draw 1.8s var(--bb-ease) 0.9s forwards;
}

@keyframes bb-id-showcase-draw { to { stroke-dashoffset: 0; } }

/* ========== BRIDGE ========== */
.bb-id-showcase__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
  opacity: 0;
  transition: opacity 0.7s var(--bb-ease);
}

.bb-id-showcase.is-in-view .bb-id-showcase__bridge { opacity: 1; transition-delay: 1s; }

.bb-id-showcase__bridgeSvg {
  width: 100%;
  max-width: 140px;
  height: 32px;
  overflow: visible;
}

.bb-id-showcase__bridgePath {
  stroke-dasharray: 6 6;
  animation: bb-id-showcase-flow 1.2s linear infinite;
}

@keyframes bb-id-showcase-flow { to { stroke-dashoffset: -24; } }

.bb-id-showcase__bridgeLabel {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--max-red);
  text-align: center;
}

/* ========== BRAND SHEET ========== */
.bb-id-showcase__side--result {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s var(--bb-ease), transform 0.9s var(--bb-ease);
  min-width: 0;
}

.bb-id-showcase.is-in-view .bb-id-showcase__side--result {
  opacity: 1; transform: translateX(0);
  transition-delay: 1.2s;
}

.bb-id-showcase__sheet {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF6 100%);
  border: 1px solid rgba(122, 23, 27, 0.14);
  border-radius: 16px;
  box-shadow:
    0 24px 50px rgba(26, 19, 16, 0.10),
    0 8px 22px rgba(159, 32, 36, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  transition: transform 0.5s var(--bb-ease), box-shadow 0.5s ease;
}

.bb-id-showcase__sheet:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 64px rgba(159, 32, 36, 0.14),
    0 10px 26px rgba(26, 19, 16, 0.07);
}

.bb-id-showcase__sheetHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(122, 23, 27, 0.10);
  background: linear-gradient(180deg, rgba(237, 227, 211, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

.bb-id-showcase__sheetDots { display: flex; gap: 4px; }
.bb-id-showcase__sheetDots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(26, 19, 16, 0.14);
}

.bb-id-showcase__sheetTitle {
  flex: 1;
  font-family: var(--bb-serif);
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--max-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bb-id-showcase__sheetBadge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1B9B5A, #22C55E);
  color: white;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(34, 197, 94, 0.30);
  flex-shrink: 0;
}

.bb-id-showcase__sheetBody {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 9px;
}

.bb-id-showcase__block {
  position: relative;
  padding: 8px 10px 7px;
  background: rgba(237, 227, 211, 0.20);
  border: 1px solid rgba(122, 23, 27, 0.10);
  border-radius: 10px;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--bb-ease);
  opacity: 0;
  transform: translateY(12px);
  min-width: 0;
}

.bb-id-showcase.is-in-view .bb-id-showcase__block { opacity: 1; transform: translateY(0); }
.bb-id-showcase.is-in-view .bb-id-showcase__block--logo    { transition-delay: 1.45s; }
.bb-id-showcase.is-in-view .bb-id-showcase__block--palette { transition-delay: 1.60s; }
.bb-id-showcase.is-in-view .bb-id-showcase__block--typo    { transition-delay: 1.70s; }
.bb-id-showcase.is-in-view .bb-id-showcase__block--google  { transition-delay: 1.85s; }
.bb-id-showcase.is-in-view .bb-id-showcase__block--site    { transition-delay: 2.00s; }

.bb-id-showcase__block:hover {
  background: rgba(159, 32, 36, 0.04);
  border-color: rgba(159, 32, 36, 0.20);
}

.bb-id-showcase__blockLabel {
  display: block;
  margin-bottom: 6px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--max-red);
}

/* Full-width blocks */
.bb-id-showcase__block--logo,
.bb-id-showcase__block--google,
.bb-id-showcase__block--site { grid-column: 1 / -1; }

/* ========== LOGO ========== */
.bb-id-showcase__logoRow { display: flex; align-items: center; gap: 12px; }

.bb-id-showcase__logoMain {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--max-cream);
  border: 1.5px solid rgba(159, 32, 36, 0.45);
  display: grid;
  place-items: center;
  padding: 8px;
  position: relative;
  box-shadow:
    0 6px 14px rgba(159, 32, 36, 0.18),
    inset 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.bb-id-showcase__logoMain::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 0.5px solid rgba(159, 32, 36, 0.3);
  pointer-events: none;
}

.bb-id-showcase__logoMain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bb-id-showcase__logoVariants { display: flex; gap: 8px; flex: 1; }

.bb-id-showcase__logoVariant {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 6px;
  transition: transform 0.4s var(--bb-ease);
}

.bb-id-showcase__logoVariant img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bb-id-showcase__logoVariant--light {
  background: var(--max-cream);
  border: 1px solid rgba(122, 23, 27, 0.18);
}

.bb-id-showcase__logoVariant--dark  { background: var(--max-red); }
.bb-id-showcase__logoVariant--mono  { background: var(--max-ink); }

.bb-id-showcase__logoVariant--dark img,
.bb-id-showcase__logoVariant--mono img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.bb-id-showcase__logoVariant:hover { transform: translateY(-2px); }

/* ========== PALETTE ========== */
.bb-id-showcase__swatches { display: flex; gap: 5px; }

.bb-id-showcase__swatch {
  flex: 1;
  height: 20px;
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.3s var(--bb-ease);
  cursor: pointer;
}

.bb-id-showcase__swatch:hover { transform: translateY(-2px) scale(1.05); }

/* ========== TYPO ========== */
.bb-id-showcase__typoBox { display: flex; align-items: center; gap: 12px; }

.bb-id-showcase__typoSample {
  font-family: var(--bb-serif);
  font-size: 30px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: var(--max-red);
  flex-shrink: 0;
}

.bb-id-showcase__typoMeta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }

.bb-id-showcase__typoName {
  font-family: var(--bb-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--max-ink);
  line-height: 1.2;
}

.bb-id-showcase__typoWeights {
  font-size: 10px;
  font-weight: 500;
  color: var(--bb-ink-mute);
  line-height: 1.3;
}

/* ========== APERÇU GOOGLE ========== */
.bb-id-showcase__googleResult {
  background: #FFFFFF;
  border: 1px solid rgba(26, 19, 16, 0.08);
  border-radius: 12px;
  padding: 9px 12px;
  box-shadow: 0 3px 10px rgba(26, 19, 16, 0.04);
  font-family: arial, "Helvetica Neue", sans-serif;
  overflow: hidden;
}

.bb-id-showcase__googleHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.bb-id-showcase__googleFavicon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--max-cream-paper);
  border: 1px solid rgba(159, 32, 36, 0.22);
  display: grid;
  place-items: center;
  padding: 3px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(26, 19, 16, 0.06);
}

.bb-id-showcase__googleFavicon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bb-id-showcase__googleHeaderText {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.bb-id-showcase__googleSiteName {
  font-size: 12px;
  font-weight: 500;
  color: #202124;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bb-id-showcase__googleMenuDots {
  font-size: 15px;
  color: #5f6368;
  line-height: 0.5;
  font-weight: 700;
  flex-shrink: 0;
}

.bb-id-showcase__googleTitle {
  font-size: 14px;
  font-weight: 400;
  color: #1a0dab;
  line-height: 1.3;
  margin: 2px 0 3px;
  font-family: arial, sans-serif;
  text-decoration: none;
}

.bb-id-showcase__googleDesc {
  font-size: 11.5px;
  line-height: 1.45;
  color: #4d5156;
  margin: 0;
  font-family: arial, sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bb-id-showcase__googleDesc strong {
  font-weight: 700;
  color: #4d5156;
}

/* ========== SITE MOCKUP ========== */
.bb-id-showcase__siteMockup {
  background: #FFFFFF;
  border: 1px solid rgba(26, 19, 16, 0.10);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 12px 28px rgba(26, 19, 16, 0.10),
    0 3px 8px rgba(159, 32, 36, 0.04);
  transition: transform 0.4s var(--bb-ease), box-shadow 0.4s ease;
}

.bb-id-showcase__siteMockup:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(26, 19, 16, 0.13),
    0 5px 12px rgba(159, 32, 36, 0.07);
}

.bb-id-showcase__siteMockupImg {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bb-id-showcase__browserBar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  background: #F4F4F5;
  border-bottom: 1px solid rgba(26, 19, 16, 0.06);
}

.bb-id-showcase__browserDots {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.bb-id-showcase__browserDots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.bb-id-showcase__browserDots span:nth-child(1) { background: #FF5F57; }
.bb-id-showcase__browserDots span:nth-child(2) { background: #FFBD2E; }
.bb-id-showcase__browserDots span:nth-child(3) { background: #28C840; }

.bb-id-showcase__browserUrl {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: #FFFFFF;
  border-radius: 999px;
  border: 1px solid rgba(26, 19, 16, 0.06);
  font-size: 10.5px;
  color: #4A5260;
  font-family: arial, sans-serif;
  max-width: 280px;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bb-id-showcase__browserFavicon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--max-cream-paper);
  border: 0.5px solid rgba(159, 32, 36, 0.25);
  display: grid;
  place-items: center;
  padding: 1px;
  flex-shrink: 0;
}

.bb-id-showcase__browserFavicon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .bb-id-showcase__demo { gap: 10px; }
}

@media (max-width: 880px) {
  .bb-id-showcase__inner { padding: 32px 0; width: min(1240px, calc(100% - 32px)); }
  .bb-id-showcase__head  { margin-bottom: 24px; }
  .bb-id-showcase__title { font-size: 24px; letter-spacing: -0.02em; }
  .bb-id-showcase__subtitle { font-size: 13.5px; }

  .bb-id-showcase__title-accent {
    white-space: normal;
    background-image: linear-gradient(to top, rgba(47, 123, 255, 0.22) 6px, transparent 6px);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 2px;
  }
  .bb-id-showcase__title-accent::after { display: none; }

  .bb-id-showcase__demo {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 460px;
  }

  .bb-id-showcase__side--sketch { display: flex; flex-direction: column; align-items: center; }
  .bb-id-showcase__paper { max-width: 280px; }

  .bb-id-showcase__bridge { flex-direction: row; justify-content: center; gap: 8px; }
  .bb-id-showcase__bridgeSvg { width: 50px; height: 26px; transform: rotate(90deg); }

  .bb-id-showcase__side--result { display: flex; flex-direction: column; align-items: stretch; }

  .bb-id-showcase__sheetBody { padding: 9px; gap: 7px; }
  .bb-id-showcase__block     { padding: 9px 10px 8px; }

  .bb-id-showcase__logoRow      { gap: 12px; }
  .bb-id-showcase__logoMain     { width: 64px; height: 64px; padding: 8px; }
  .bb-id-showcase__logoVariant  { width: 38px; height: 38px; border-radius: 8px; padding: 6px; }
  .bb-id-showcase__logoVariants { gap: 7px; }

  .bb-id-showcase__typoSample   { font-size: 32px; }
  .bb-id-showcase__typoName     { font-size: 12px; }

  .bb-id-showcase__googleResult { padding: 9px 12px; }
  .bb-id-showcase__googleTitle  { font-size: 14px; }
  .bb-id-showcase__googleDesc   { font-size: 11.5px; }

  .bb-id-showcase__siteMockupImg { height: 150px; }

  .bb-id-showcase__paper:hover { transform: rotate(-1.8deg); }
  .bb-id-showcase__sheet:hover { transform: none; }
}

@media (max-width: 480px) {
  .bb-id-showcase__sheetBody    { grid-template-columns: 1fr; }
  .bb-id-showcase__sheetTitle   { font-size: 11px; }
  .bb-id-showcase__googleSiteName { font-size: 11.5px; }
  .bb-id-showcase__browserUrl   { max-width: 200px; }
  .bb-id-showcase__siteMockupImg { height: 130px; }
}

@media (max-width: 380px) {
  .bb-id-showcase__inner { padding: 28px 0; }
  .bb-id-showcase__title { font-size: 22px; line-height: 1.15; }
  .bb-id-showcase__siteMockupImg { height: 115px; }
}

@media (prefers-reduced-motion: reduce) {
  .bb-id-showcase *,
  .bb-id-showcase *::before,
  .bb-id-showcase *::after {
    animation: none !important;
    transition-duration: 0.1s !important;
  }
  .bb-id-showcase__kicker,
  .bb-id-showcase__title,
  .bb-id-showcase__subtitle,
  .bb-id-showcase__side--sketch,
  .bb-id-showcase__side--result,
  .bb-id-showcase__bridge,
  .bb-id-showcase__block {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .bb-id-showcase__sketchLine { stroke-dashoffset: 0 !important; }
  .bb-id-showcase__title-accent::after { transform: scaleX(1) !important; }
}
