@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&display=swap');
*{box-sizing:border-box;margin:0;padding:0;}
body.clipping-exchange-page {
  --color-text-primary: #111;
  --color-text-secondary: #666;
  --color-background-primary: #fff;
  --color-background-secondary: #f5f5f5;
  font-family: 'DM Sans', sans-serif;
  background: #f7f7f7;
  color: var(--color-text-primary);
}

.clipping-exchange-page .page-wrapper {
  border-left: 0.5px solid rgba(255, 255, 255, 0.15);
  border-right: 0.5px solid rgba(255, 255, 255, 0.15);
  padding: 0 1px;
}

.clipping-exchange-page .hero {
  background: #111;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.clipping-exchange-page .hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.clipping-exchange-page .hero-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.clipping-exchange-page .hero-logo img.icon {
  height: 68px;
  width: auto;
}

.clipping-exchange-page .hero-logo img.wordmark {
  height: 36px;
  width: auto;
}

.clipping-exchange-page .hero-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
}

.clipping-exchange-page .hero-sub {
  font-size: 16px;
  color: #aaa;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clipping-exchange-page .hero h1 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.clipping-exchange-page .hero h1 span {
  color: #ff7d00;
}

.clipping-exchange-page .hero p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
}

.clipping-exchange-page .first-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 125, 0, 0.15);
  border: 0.5px solid rgba(255, 125, 0, 0.4);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #ff7d00;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-start;
}

.clipping-exchange-page .pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.clipping-exchange-page .pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
}

.clipping-exchange-page .pillar-title {
  font-size: 12px;
  font-weight: 600;
  color: #ff7d00;
  margin-bottom: 3px;
}

.clipping-exchange-page .pillar-desc {
  font-size: 11px;
  color: #999;
  line-height: 1.5;
}

.clipping-exchange-page .hero-cta {
  display: inline-block;
  background: #ff7d00;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
}

.clipping-exchange-page .hero-cta:hover {
  background: #d96a00;
  color: #fff;
  text-decoration: none;
}

.clipping-exchange-page .hero-right {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

.clipping-exchange-page .slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.clipping-exchange-page .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.clipping-exchange-page .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.clipping-exchange-page .slide.active {
  opacity: 1;
}

.clipping-exchange-page .section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.clipping-exchange-page .creator-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.clipping-exchange-page .creator-list-empty {
  color: var(--color-text-secondary);
  font-size: 14px;
  text-align: center;
  margin: 0;
}

.clipping-exchange-page .creator-list-loading {
  color: var(--color-text-secondary);
  font-size: 14px;
  text-align: center;
  margin: 0 0 1.5rem;
}

.clipping-exchange-page .creator-list-sentinel {
  width: 100%;
  height: 1px;
  margin: 0;
}

.clipping-exchange-page .creator-card {
  background: var(--color-background-primary);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.clipping-exchange-page .banner {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.5rem;
  position: relative;
}

.clipping-exchange-page .banner-av {
  position: absolute;
  left: 1.25rem;
  bottom: -20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--color-background-primary);
  background-size: cover;
  background-position: center;
}

.clipping-exchange-page .card-body {
  padding: 1.6rem 1.25rem 1.1rem;
}

.clipping-exchange-page .creator-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1px;
}

.clipping-exchange-page .creator-handle {
  font-size: 12px;
  color: #ff7d00;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.clipping-exchange-page .creator-bio-block {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  word-break: break-word;
  margin-bottom: 0.85rem;
}

.clipping-exchange-page .creator-bio-block:not(.is-expanded) {
  max-height: 3em;
  overflow: hidden;
}

.clipping-exchange-page .creator-bio-block.is-expanded {
  max-height: none;
  overflow: visible;
}

.clipping-exchange-page .creator-bio-text {
  display: inline;
}

.clipping-exchange-page .creator-bio-more {
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  color: #ff7d00;
  cursor: pointer;
  vertical-align: baseline;
}

.clipping-exchange-page .creator-bio-more[hidden] {
  display: none;
}

.clipping-exchange-page .creator-bio-more:not([hidden]) {
  display: inline;
}

.clipping-exchange-page .creator-revenue {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  line-height: 1.2;
  margin-left: 5px;
}

.clipping-exchange-page .creator-revenue-label {
  font-size: 12px;
  font-weight: 500;
}

.clipping-exchange-page .creator-revenue-value {
  font-size: 12px;
  font-weight: 700;
}

.clipping-exchange-page .card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.clipping-exchange-page .creator-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  flex-shrink: 0;
}

.clipping-exchange-page .creator-social .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #ffffff;
  color: #000;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clipping-exchange-page .creator-social .icon i {
  font-size: 15px;
  line-height: 1;
}

.clipping-exchange-page .creator-social .link:hover {
  background: #ccc;
  color: #111;
  border-color: #ccc;
}

.clipping-exchange-page .creator-social .fb:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

.clipping-exchange-page .creator-social .x:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

.clipping-exchange-page .creator-social .yt:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.clipping-exchange-page .creator-social .ig:hover {
  background: #e1306c;
  color: #fff;
  border-color: #e1306c;
}

.clipping-exchange-page .creator-social .tk:hover {
  background: #fe2c55;
  color: #fff;
  border-color: #fe2c55;
}

.clipping-exchange-page .creator-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
}

.clipping-exchange-page .tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 500;
}

.clipping-exchange-page a.tag {
  text-decoration: none;
  display: inline-block;
}

.clipping-exchange-page a.tag:hover {
  opacity: 0.85;
}

.clipping-exchange-page .tag-yt {
  background: #fff0e6;
  color: #cc5500;
}

.clipping-exchange-page .tag-ig {
  background: #f0e6ff;
  color: #6600cc;
}

.clipping-exchange-page .tag-subs {
  background: #111;
  color: #ff7d00;
  border: 0.5px solid #ff7d00;
}

.clipping-exchange-page .connect-btn {
  background: #ff7d00;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.clipping-exchange-page .connect-btn:hover {
  background: #d96a00;
}

.clipping-exchange-page .paywall-btn {
  background: transparent;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 7px;
  border: 1px solid #333;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.clipping-exchange-page .paywall-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  text-decoration: none;
}

.clipping-exchange-page .program-desc-btn {
  background: transparent;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 7px;
  border: 1px solid #333;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
}

.clipping-exchange-page .program-desc-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}

.clipping-exchange-page.exchange-modal-open,
body.exchange-modal-open {
  overflow: hidden;
}

.clipping-exchange-page .exchange-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.clipping-exchange-page .exchange-modal[hidden] {
  display: none !important;
}

.clipping-exchange-page .exchange-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.clipping-exchange-page .exchange-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(80vh, 640px);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  padding: 20px 22px;
}

.clipping-exchange-page .exchange-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.clipping-exchange-page .exchange-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.clipping-exchange-page .exchange-modal-close {
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0 4px;
}

.clipping-exchange-page .exchange-modal-close:hover {
  color: #111;
}

.clipping-exchange-page .exchange-modal-body {
  font-size: 14px;
  line-height: 1.55;
  color: #222;
  white-space: pre-wrap;
  word-break: break-word;
}

.clipping-exchange-page .how {
  margin-bottom: 2rem;
}

.clipping-exchange-page .how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 0.75rem;
}

.clipping-exchange-page .how-step {
  padding: 0.9rem 1rem;
  background: var(--color-background-secondary);
  border-radius: 12px;
}

.clipping-exchange-page .how-num {
  font-size: 24px;
  font-weight: 700;
  color: #ff7d00;
  line-height: 1;
  margin-bottom: 5px;
}

.clipping-exchange-page .how-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 3px;
}

.clipping-exchange-page .how-desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.clipping-exchange-page .bottom {
  background: #111;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  text-align: center;
}

.clipping-exchange-page .bottom h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.clipping-exchange-page .bottom p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .clipping-exchange-page .hero {
    grid-template-columns: 1fr;
  }

  .clipping-exchange-page .hero-right {
    height: 280px;
  }

  .clipping-exchange-page .pillars {
    grid-template-columns: 1fr;
  }

  .clipping-exchange-page .banner {
    height: 160px;
    padding: 0 1.25rem;
  }
}

@media (max-width: 575px) {
  .clipping-exchange-page .hero {
    padding: 1.25rem;
  }

  .clipping-exchange-page .banner {
    height: 120px;
    padding: 0 1rem;
  }

  .clipping-exchange-page .banner-av {
    left: 1rem;
    bottom: -16px;
    width: 40px;
    height: 40px;
  }

  .clipping-exchange-page .creator-actions {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
}

.clipping-exchange-page .card-footer {
  padding : 0px;
  border-top: unset;
  border-radius: unset;
  background-color: unset;
}
