/* Static poster tile — no iframe in grid; modal loads the demo on demand */
.live-work-placeholder {
  width: 100%;
  height: 100%;
  background-color: #0a0a0c;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px 16px;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.live-work-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  max-width: 92%;
  text-align: left;
}
.live-work-placeholder-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(249, 115, 22, 0.95);
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(249, 115, 22, 0.35);
}
.live-work-placeholder-title {
  font-size: 17px;
  font-weight: 600;
  color: rgba(248, 246, 242, 0.96);
  letter-spacing: 0.02em;
}
.live-work-placeholder-line {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(240, 237, 230, 0.65);
}
.live-work-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #080809;
  color-scheme: dark;
  opacity: 0;
  visibility: hidden;
}
.live-work-iframe.live-work-iframe--loaded {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.38s ease;
}
.live-work-meta {
  padding: 12px 14px 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.live-work-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(240, 237, 230, 0.88);
}
.live-work-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
/* /portfolio section — cards use the same DOM as homepage (chrome + iframe + meta); these only tune hero + hover */
.live-work--embed .live-work-card--hero {
  border-color: rgba(249, 115, 22, 0.22);
  box-shadow: 0 8px 36px rgba(249, 115, 22, 0.08);
}
@media (hover: hover) and (pointer: fine) {
  .live-work--embed .live-work-card:hover {
    transform: scale(1.02);
    z-index: 2;
    border-color: rgba(255, 77, 28, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  }
  .live-work--embed .live-work-card--hero:hover {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(249, 115, 22, 0.2);
  }
}
.live-work--embed .live-work-placeholder-badge {
  color: rgba(249, 115, 22, 0.95);
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(0, 0, 0, 0.45);
}
.live-work--embed .live-work-placeholder--embed .live-work-placeholder-title {
  color: rgba(248, 246, 242, 0.92);
}
