/* Referenzen – Showcase Embeds */

.showcase-stack { display: grid; gap: 88px; }

.showcase-bundle {
  display: grid;
  gap: 56px;
  padding: 8px 0 4px;
}

.showcase-bundle-head h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 10px;
}

.showcase-bundle-head > p {
  max-width: 52ch;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
}

.showcase-project {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.showcase-copy h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.showcase-copy > p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
}

.showcase-features {
  list-style: none;
  margin: 18px 0 22px;
  display: grid;
  gap: 8px;
}

.showcase-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}

.showcase-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--petrol-light);
}

.showcase-embed {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .55);
  background: #fff;
  height: 700px;
}

.showcase-embed iframe {
  flex: 1;
  width: 100%;
  min-height: 0;
  border: 0;
  display: block;
  background: #fff;
}

.showcase-embed-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: rgba(20, 20, 24, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.showcase-embed-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.showcase-embed-bar span:nth-child(1) { background: #ff5f57; }
.showcase-embed-bar span:nth-child(2) { background: #febc2e; }
.showcase-embed-bar span:nth-child(3) { background: #28c840; }

.showcase-embed-bar em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .04em;
}

.showcase-embed-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  background: rgba(0, 0, 0, .5);
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
}

@media (max-width: 960px) {
  .showcase-project { grid-template-columns: 1fr; }
  .showcase-embed { height: 580px; }
}
