:root {
  --bg: #f7f7f7;
  --page-bg: var(--bg);
  --panel: #fff;
  --ink: #111;
  --text: var(--ink);
  --muted: #5f6368;
  --line: #e6e6e6;
  --accent: var(--red, #e60012);
  --soft: #fff7f7;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --wrap: min(1200px, calc(100% - 32px));
}

.l-container {
  width: var(--wrap);
  margin-inline: auto
}

.examples-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  background: var(--accent);
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(230, 0, 18, .18)
}

.examples-button.examples-button--ghost {
  background: #fff;
  color: #111;
  border: 1px solid var(--line);
  box-shadow: none
}

.examples-button.examples-button--small {
  padding: 10px 16px;
  font-size: 14px
}

.breadcrumb {
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 13px
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.breadcrumb li+li::before {
  content: '›';
  margin-right: 10px;
  color: #999
}

.examples-hero {
  padding: 28px 0 28px
}

.examples-hero__card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #fff 45%, #fff4f5 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 40px);
  overflow: hidden
}

.examples-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  background: #fff;
  border: 1px solid #f0d6d9;
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em
}

.examples-hero h1 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  margin: 16px 0 14px;
  letter-spacing: .01em
}

.examples-hero__lead {
  font-size: clamp(15px, 2vw, 18px);
  color: #333;
  margin: 0 0 18px
}

.examples-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0
}

.examples-hero__fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px
}

.examples-hero__fact strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px
}

.examples-hero__fact span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5
}

.examples-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px
}

.examples-hero__figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
  margin: 0
}

.examples-hero__figure img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 5/3;
  object-fit: cover
}

.examples-hero__figure figcaption {
  font-size: 13px;
  color: var(--muted);
  padding-top: 10px
}

.examples-nav {
  padding: 8px 0 0
}

.examples-nav__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.examples-nav__link {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .03)
}

.examples-section {
  padding: 56px 0
}

.examples-section__head {
  margin-bottom: 28px
}

.examples-section__eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.examples-section__head h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  margin: 8px 0 12px
}

.examples-section__lead {
  max-width: 840px;
  color: var(--muted);
  font-size: 16px;
  margin: 0
}

.examples-info-grid,
.examples-card-grid,
.examples-gallery-grid,
.examples-faq-grid,
.examples-screenshot-grid {
  display: grid;
  gap: 20px
}

.examples-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.examples-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.examples-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.examples-screenshot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.examples-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.examples-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04)
}

.examples-info-card,
.examples-faq-card {
  padding: 22px
}

.examples-info-card h3,
.examples-faq-card h3,
.examples-card__body h3 {
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 10px
}

.examples-info-card p,
.examples-faq-card p,
.examples-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px
}

.examples-card {
  overflow: hidden
}

.examples-card figure {
  margin: 0
}

.examples-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #f2f2f2
}

.examples-card__body {
  padding: 20px 22px
}

.examples-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800
}

.examples-screenshot {
  overflow: hidden
}

.examples-screenshot img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #fff;
  padding: 12px
}

.examples-screenshot .examples-card__body {
  padding: 16px 18px
}

.examples-cta {
  padding: 30px;
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  color: #fff;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow)
}

.examples-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .85)
}

.examples-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end
}

@media (max-width:1080px) {
  .examples-hero__card {
    grid-template-columns: 1fr
  }

  .examples-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .examples-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .examples-faq-grid {
    grid-template-columns: 1fr
  }

  .examples-cta {
    grid-template-columns: 1fr
  }

  .examples-cta__actions {
    justify-content: flex-start
  }
}

@media (max-width:820px) {
  .examples-card-grid,
  .examples-screenshot-grid {
    grid-template-columns: 1fr
  }

  .examples-hero__facts {
    grid-template-columns: 1fr
  }
}

@media (max-width:640px) {
  .l-container {
    width: min(100% - 24px, 1200px)
  }

  .examples-info-grid,
  .examples-gallery-grid {
    grid-template-columns: 1fr
  }

  .examples-section {
    padding: 42px 0
  }

  .examples-hero {
    padding-top: 18px
  }

  .examples-hero__card {
    padding: 20px;
    border-radius: 24px
  }

  .examples-cta {
    padding: 22px;
    border-radius: 22px
  }

  .examples-button,
  .examples-button.examples-button--ghost {
    width: 100%
  }

  .examples-actions {
    display: grid;
    grid-template-columns: 1fr
  }

  .examples-nav__list {
    overflow: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px
  }

  .examples-nav__link {
    white-space: nowrap
  }
}
