.upload-example-card {
  justify-self: stretch;
  min-width: 0;
  max-width: 100%;
  margin-top: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(54, 43, 30, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(54, 43, 30, 0.08);
}

.upload-example-card h2 {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
  color: var(--home-green);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
}

.upload-example-card h2 svg {
  width: 20px;
  height: 20px;
}

.upload-example-body {
  display: grid;
  grid-template-columns: minmax(0, 176px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.upload-example-body figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(54, 43, 30, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(54, 43, 30, 0.06);
}

.upload-example-body img {
  display: block;
  width: 100%;
  aspect-ratio: 176 / 105;
  object-fit: cover;
}

.upload-example-body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.upload-example-body li {
  position: relative;
  padding-left: 28px;
  color: #141816;
}

.upload-example-body li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1.4px solid rgba(15, 139, 83, 0.65);
  border-radius: 999px;
  color: var(--home-green);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.upload-example-body strong,
.upload-example-body span {
  display: block;
}

.upload-example-body strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.upload-example-body span {
  margin-top: 3px;
  color: #71756f;
  font-size: 12px;
  font-weight: 500;
}

.upload-page-cta {
  display: flex;
  justify-self: stretch;
  min-width: 0;
  max-width: 100%;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 12px;
  border-radius: 15px;
  background: linear-gradient(135deg, #14a665 0%, #087745 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(15, 139, 83, 0.2);
}

.upload-page-cta:hover {
  box-shadow: 0 16px 28px rgba(15, 139, 83, 0.26);
  transform: translateY(-1px);
}

.upload-page-cta svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 520px) {
  .app-card:not(.home-active) {
    width: 100%;
    max-height: none;
    height: 100svh;
    aspect-ratio: auto;
    box-shadow: none;
  }
}

@media (max-width: 430px) {
  .app-card:not(.home-active) .workflow-chrome {
    padding-right: 16px;
    padding-left: 16px;
  }

  .app-card:not(.home-active) .step-dots {
    margin-right: 28px;
    margin-left: 28px;
  }

  .upload-page-note {
    margin-right: 14px;
    margin-left: 14px;
    font-size: 13px;
    white-space: normal;
  }

  .scene-analysis .dropzone {
    min-height: 292px;
  }

  .upload-tips span {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  .upload-example-body {
    grid-template-columns: minmax(0, 1fr) minmax(128px, 0.8fr);
    gap: 16px;
  }

  .upload-example-body strong {
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .app-card:not(.home-active) .step-dots {
    margin-right: 12px;
    margin-left: 12px;
  }

  .step-label {
    font-size: 12px;
  }

  .upload-page-note {
    margin-right: 12px;
    margin-left: 12px;
    white-space: normal;
  }

  .upload-tips span {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 12px;
  }

  .upload-example-body {
    grid-template-columns: 1fr;
  }
}
