.lyor-ws {
  --lyor-ws-flow-gap: clamp(14px, calc(8px + (var(--lyor-ws-ratio, 1.58) * 9px)), 30px);
  --lyor-ws-title-desc-gap: 14px;
  display: grid;
  gap: var(--lyor-ws-gap, 28px);
  background: var(--lyor-ws-bg, #131110);
  color: var(--lyor-ws-text, #f2ede6);
  padding: var(--lyor-ws-pad, 28px);
  border-radius: var(--lyor-ws-radius, 20px);
  min-height: var(--lyor-ws-min-h, auto);
}

.lyor-ws .lyor-ws__main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: var(--lyor-ws-gap, 28px);
  align-items: stretch;
}

.lyor-ws.is-stacked .lyor-ws__main {
  grid-template-columns: 1fr;
}

.lyor-ws .lyor-ws__mockup {
  background: var(--lyor-ws-card, #1a1715);
  border: 1px solid var(--lyor-ws-border, rgba(242, 237, 230, 0.10));
  border-radius: calc(var(--lyor-ws-radius, 18px) - 4px);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.lyor-ws .lyor-ws__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(242, 237, 230, 0.08);
}

.lyor-ws .lyor-ws__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.lyor-ws.has-apple-bar .lyor-ws__bar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.lyor-ws.has-apple-bar .lyor-ws__dot:nth-child(1) {
  background: #ff5f57;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
}

.lyor-ws.has-apple-bar .lyor-ws__dot:nth-child(2) {
  background: #febc2e;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
}

.lyor-ws.has-apple-bar .lyor-ws__dot:nth-child(3) {
  background: #28c840;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
}

.lyor-ws .lyor-ws__domain {
  margin-left: auto;
  color: var(--lyor-ws-muted, #b7a795);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 58%;
}

.lyor-ws .lyor-ws__viewport {
  position: relative;
  aspect-ratio: var(--lyor-ws-ratio, 1.62);
  background: var(--lyor-ws-card, #1a1715);
  overflow: hidden;
  width: 100%;
  line-height: 0;
  font-size: 0;
}

.lyor-ws .lyor-ws__slides {
  position: absolute;
  inset: 0;
}

.lyor-ws .lyor-ws__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--lyor-ws-slide-fade, 700ms) ease, visibility var(--lyor-ws-slide-fade, 700ms) ease;
}

.lyor-ws .lyor-ws__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.lyor-ws.device-mobile .lyor-ws__viewport {
  aspect-ratio: var(--lyor-ws-mobile-ratio, .72);
}

.lyor-ws .lyor-ws__viewport img {
  width: 100%;
  height: 100%;
  object-fit: var(--lyor-ws-img-fit, cover);
  object-position: var(--lyor-ws-img-pos, center center);
  display: block;
  vertical-align: top;
  transition: opacity .25s ease;
}

.lyor-ws .lyor-ws__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--lyor-ws-muted);
}

.lyor-ws .lyor-ws__panel {
  background: var(--lyor-ws-card, #1a1715);
  border: 1px solid var(--lyor-ws-border, rgba(242, 237, 230, 0.10));
  border-radius: calc(var(--lyor-ws-radius, 18px) - 4px);
  padding: clamp(24px, calc(16px + (var(--lyor-ws-ratio, 1.58) * 10px)), 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--lyor-ws-flow-gap);
  min-width: 0;
  min-height: 100%;
}

.lyor-ws.panel-align-start .lyor-ws__panel {
  justify-content: flex-start;
}

.lyor-ws.panel-align-center .lyor-ws__panel {
  justify-content: center;
}

.lyor-ws.panel-align-end .lyor-ws__panel {
  justify-content: flex-end;
}

.lyor-ws.panel-align-smart .lyor-ws__panel {
  justify-content: center;
}

.lyor-ws .lyor-ws__hero-copy {
  display: grid;
  gap: var(--lyor-ws-title-desc-gap);
  align-content: start;
}

.lyor-ws .lyor-ws__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--lyor-ws-muted, #b7a795);
  font-size: 13px;
}

.lyor-ws .lyor-ws__meta img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
}

.lyor-ws .lyor-ws__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lyor-ws-badge-bg, rgba(201, 165, 106, 0.14));
  color: var(--lyor-ws-badge-text, #d9bb8c);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lyor-ws .lyor-ws__title {
  margin: 0;
  line-height: 1.12;
  font-size: clamp(26px, 2.5vw, 44px);
}

.lyor-ws .lyor-ws__desc {
  margin: 0;
  color: var(--lyor-ws-muted, #b7a795);
  line-height: 1.72;
}

.lyor-ws .lyor-ws__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--lyor-ws-flow-gap) * .6);
}

.lyor-ws .lyor-ws__fact {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--lyor-ws-fact-bg, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--lyor-ws-fact-border, rgba(242, 237, 230, 0.07));
  font-size: 13px;
}

.lyor-ws .lyor-ws__fact strong {
  display: block;
  color: var(--lyor-ws-text);
  font-size: 12px;
  margin-bottom: 2px;
}

.lyor-ws .lyor-ws__chips {
  display: flex;
  gap: calc(var(--lyor-ws-flow-gap) * .45);
  flex-wrap: wrap;
}

.lyor-ws .lyor-ws__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: var(--lyor-ws-muted, #b7a795);
}

.lyor-ws .lyor-ws__sw {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lyor-ws .lyor-ws__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(var(--lyor-ws-flow-gap) * .45);
}

.lyor-ws .lyor-ws__thumb {
  position: relative;
  aspect-ratio: 1.5;
  border-radius: 10px;
  overflow: hidden;
  background: #0c1118;
}

.lyor-ws .lyor-ws__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lyor-ws .lyor-ws__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--lyor-ws-btn-bg, #d7b37a);
  color: var(--lyor-ws-btn-text, #16120f);
  text-decoration: none;
  font-weight: 700;
  transition: transform .22s ease, filter .22s ease, background-color .22s ease, color .22s ease;
  width: auto;
  max-width: max-content;
}

.lyor-ws .lyor-ws__btn:hover {
  transform: translateY(-2px);
  filter: none;
  background: var(--lyor-ws-btn-bg-hover, #e3c291);
  color: var(--lyor-ws-btn-text-hover, #16120f);
}

@media (max-width: 1024px) {
  .lyor-ws .lyor-ws__main {
    grid-template-columns: 1fr;
  }

  .lyor-ws .lyor-ws__panel {
    padding: 26px;
    justify-content: flex-start;
  }

  .lyor-ws.panel-align-smart .lyor-ws__panel {
    justify-content: flex-start;
  }

  .lyor-ws .lyor-ws__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lyor-ws {
    padding: 18px;
  }

  .lyor-ws .lyor-ws__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
