.powerhq-marketplace-section {
  padding: 34px 0 70px;
}

.powerhq-marketplace-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 26, 51, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(16, 26, 51, 0.12);
}

.powerhq-marketplace-heading {
  display: block;
  padding: 28px 32px 24px;
  border-bottom: 1px solid #e7e0d1;
  background:
    radial-gradient(circle at 94% 10%, rgba(244, 163, 0, 0.15), transparent 28%),
    #fff;
}

.powerhq-marketplace-heading .eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #176a54;
}

.powerhq-marketplace-heading h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 40px);
}

.powerhq-marketplace-heading p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #5a6680;
  line-height: 1.55;
}

.powerhq-embed-shell {
  position: relative;
  min-height: 980px;
  background: #fff;
}

.powerhq-loading {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 150px;
  color: #5a6680;
  background: #fff;
  font-weight: 700;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.powerhq-loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e7e0d1;
  border-top-color: #f4a300;
  border-radius: 50%;
  animation: powerhq-spin 700ms linear infinite;
}

.powerhq-embed-shell.ready .powerhq-loading {
  visibility: hidden;
  opacity: 0;
}

#powerhq-frame {
  display: block;
  width: 100%;
  min-height: 1100px;
  border: 0;
  background: #fff;
  transition: height 180ms ease;
}

.powerhq-marketplace-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: start;
  padding: 22px 30px 26px;
  color: #5a6680;
  border-top: 1px solid #e7e0d1;
  background: #fbf8f0;
  font-size: 13px;
  line-height: 1.55;
}

.powerhq-marketplace-foot p {
  margin: 0;
}

.powerhq-marketplace-foot details {
  max-width: 320px;
}

.powerhq-marketplace-foot summary {
  color: #101a33;
  cursor: pointer;
  font-weight: 700;
}

.powerhq-marketplace-foot details p {
  margin-top: 8px;
}

@keyframes powerhq-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .powerhq-marketplace-section {
    padding: 18px 0 48px;
  }

  .powerhq-marketplace-card {
    border-radius: 22px;
  }

  .powerhq-marketplace-heading {
    padding: 24px 20px 20px;
  }

  .powerhq-embed-shell {
    min-height: 1120px;
  }

  #powerhq-frame {
    min-height: 1220px;
  }

  .powerhq-marketplace-foot {
    display: block;
    padding: 20px;
  }

  .powerhq-marketplace-foot details {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .powerhq-loading-spinner { animation: none; }
  #powerhq-frame,
  .powerhq-loading { transition: none; }
}
