:root {
  color: #1f2933;
  background: #ffffff;
  font-family: "IRANYekanX", "Yekan Bakh", "Vazirmatn", Tahoma, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --arz-green: #00a878;
  --arz-green-soft: #e9f8f3;
  --arz-red: #db3a56;
  --arz-red-soft: #fff0f3;
  --arz-slate-900: #1f2933;
  --arz-slate-700: #475569;
  --arz-slate-500: #64748b;
  --arz-slate-300: #cbd5e1;
  --arz-slate-200: #e5e7eb;
  --arz-slate-100: #f5f7fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 0;
  background: #fff;
}

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus:not(:focus-visible) {
  outline: none;
}

button:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(0, 168, 120, 0.34);
  outline-offset: 2px;
}

.coin-pdp-shell {
  min-height: 100vh;
  padding: 24px 0 72px;
  color: var(--arz-slate-900);
  background: #fff;
}

.feature-access {
  min-height: 100vh;
  padding: 48px 16px;
  color: var(--arz-slate-900);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.88), rgba(255, 255, 255, 0) 280px),
    #fff;
}

.feature-access__panel {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.feature-access__intro {
  max-width: 680px;
  margin-bottom: 22px;
}

.feature-access__intro span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--arz-green);
  font-size: 13px;
  font-weight: 900;
}

.feature-access h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.45;
  letter-spacing: 0;
}

.feature-access__intro p {
  margin: 10px 0 0;
  color: var(--arz-slate-700);
  font-size: 15px;
  line-height: 2;
}

.feature-access__notice {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 8px;
  color: #92400e;
  background: #fffbeb;
  font-size: 13px;
  line-height: 1.9;
}

.feature-access__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-demo-card {
  display: grid;
  gap: 9px;
  min-height: 188px;
  padding: 18px;
  text-decoration: none;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
  transition: 160ms ease;
}

.feature-demo-card:hover {
  border-color: rgba(0, 168, 120, 0.34);
  transform: translateY(-2px);
}

.feature-demo-card span {
  color: var(--arz-green);
  font-size: 12px;
  font-weight: 900;
}

.feature-demo-card strong {
  color: #111827;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.55;
}

.feature-demo-card p {
  margin: 0;
  color: var(--arz-slate-700);
  font-size: 14px;
  line-height: 1.9;
}

.feature-demo-card em {
  align-self: end;
  justify-self: start;
  min-width: 104px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  background: #18181b;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.exchange-pdp-shell {
  min-height: 100vh;
  padding: 24px 0 72px;
  color: var(--arz-slate-900);
  background: #fff;
}

.exchange-context-section {
  width: min(1280px, calc(100% - 184px));
  margin: 0 auto 18px;
  padding: 16px;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  background: #fff;
}

.exchange-context-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.exchange-context-section h1 {
  margin: 0;
  color: #222831;
  font-size: 23px;
  font-weight: 950;
  line-height: 1.55;
  letter-spacing: 0;
}

.exchange-context-section__header a {
  flex: 0 0 auto;
  color: #047857;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.exchange-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.exchange-news-card {
  overflow: hidden;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  background: #fff;
}

.exchange-news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.exchange-news-card div {
  display: grid;
  gap: 6px;
  padding: 10px;
}

.exchange-news-card span,
.exchange-news-card p {
  color: var(--arz-slate-500);
  font-size: 12px;
}

.exchange-news-card strong {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #1f2933;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.85;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.exchange-news-card p {
  margin: 0;
}

.exchange-ai-summary {
  width: min(844px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 14px;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.exchange-ai-summary__topline,
.exchange-ai-summary__topline span,
.exchange-ai-summary__topline time,
.exchange-ai-summary__meta-actions,
.exchange-ai-summary__footer,
.exchange-ai-list header,
.exchange-ai-list li {
  display: flex;
  align-items: center;
}

.exchange-ai-summary__topline {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--arz-slate-500);
  font-size: 12px;
  line-height: 1.8;
}

.exchange-ai-summary__topline span {
  gap: 6px;
  color: #047857;
  font-weight: 900;
}

.exchange-ai-summary__topline time {
  gap: 5px;
}

.exchange-ai-summary__meta-actions {
  flex: 0 0 auto;
  gap: 8px;
}

.exchange-ai-summary__minimize-button,
.exchange-ai-summary__mobile-toggle {
  display: none;
}

.exchange-ai-summary__minimize-button {
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 168, 120, 0.22);
  border-radius: 8px;
  color: #047857;
  background: #fff;
}

.exchange-ai-summary__hero {
  margin-bottom: 12px;
}

.exchange-ai-summary__copy {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 104px;
  padding: 18px;
  border-radius: 8px;
  background: #fbfcfd;
}

.exchange-ai-summary__copy p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 2;
}

.exchange-ai-summary__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.exchange-ai-list {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  background: #fff;
}

.exchange-ai-list header {
  gap: 7px;
  margin-bottom: 10px;
}

.exchange-ai-list header span {
  display: inline-flex;
}

.exchange-ai-list h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.6;
}

.exchange-ai-list--positive h3,
.exchange-ai-list--positive header span {
  color: #047857;
}

.exchange-ai-list--negative h3,
.exchange-ai-list--negative header span {
  color: #be123c;
}

.exchange-ai-list ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exchange-ai-list li {
  gap: 7px;
  color: #475569;
  font-size: 12px;
  line-height: 1.8;
}

.exchange-ai-list--positive li svg {
  color: var(--arz-green);
}

.exchange-ai-list--negative li svg {
  color: var(--arz-red);
}

.exchange-ai-summary__footer {
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--arz-slate-200);
  color: var(--arz-slate-500);
  font-size: 12px;
  line-height: 1.8;
}

.analysis-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(1280px, calc(100% - 184px));
  margin: 0 auto 22px;
}

.analysis-card {
  min-height: 96px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  background: #fff;
}

.analysis-card p {
  display: -webkit-box;
  margin: 0 0 16px;
  overflow: hidden;
  color: #334155;
  font-size: 13px;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.analysis-card div {
  display: flex;
  justify-content: space-between;
  color: var(--arz-slate-500);
  font-size: 12px;
}

.coin-ad-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1280px, calc(100% - 184px));
  min-height: 100px;
  margin: 0 auto 20px;
  padding: 0 26px;
  color: #fff;
  background: #082638;
}

.coin-ad-banner strong {
  direction: ltr;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
}

.coin-ad-banner span {
  color: #21d5a2;
  font-size: clamp(24px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.2;
}

.coin-ad-banner button {
  min-width: 164px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #0f172a;
  background: #fff;
  font-weight: 800;
}

.ugc-summary {
  position: relative;
  width: min(844px, calc(100% - 32px));
  margin: 0 auto 22px;
  padding: 14px;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.ugc-summary__header,
.ugc-summary__title-group,
.sentiment-chip,
.consensus-line,
.ugc-summary__header-actions {
  display: flex;
  align-items: center;
}

.ugc-summary__header {
  justify-content: space-between;
  gap: 12px;
}

.ugc-summary__title-group {
  min-width: 0;
  gap: 10px;
}

.ugc-summary__header-actions {
  flex: 0 0 auto;
  gap: 8px;
}

.ugc-summary__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 168, 120, 0.18);
  border-radius: 8px;
  color: var(--arz-green);
  background: var(--arz-green-soft);
}

.ugc-summary h2,
.comments-preview h2 {
  margin: 0;
  color: #222831;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.ugc-summary__title-group p {
  margin: 1px 0 0;
  color: var(--arz-slate-500);
  font-size: 12px;
  line-height: 1.7;
}

.sentiment-chip {
  flex: 0 0 auto;
  gap: 8px;
  min-width: 96px;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(0, 168, 120, 0.24);
  border-radius: 999px;
  color: #047857;
  background: var(--arz-green-soft);
  font-size: 13px;
}

.sentiment-chip strong {
  direction: ltr;
  font-size: 15px;
}

.ugc-summary__minimize-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 168, 120, 0.22);
  border-radius: 8px;
  color: #047857;
  background: #fff;
}

.ugc-summary__meter {
  width: 100%;
  height: 5px;
  margin: 12px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f7;
}

.ugc-summary__meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, var(--arz-green));
}

.ugc-summary__compact-summary p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #334155;
  font-size: 14px;
  line-height: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ugc-summary__compact-summary {
  display: none;
}

.ugc-summary__mobile-toggle {
  display: none;
}

.ugc-summary__details {
  display: grid;
  grid-template-columns: 146px 1fr;
  gap: 12px;
  margin-top: 12px;
}

.ugc-summary__tabs {
  display: grid;
  align-content: start;
  gap: 6px;
}

.ugc-summary__tabs button {
  width: 100%;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--arz-slate-500);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: 160ms ease;
}

.ugc-summary__tabs button:hover {
  color: var(--arz-slate-900);
  background: var(--arz-slate-100);
}

.ugc-summary__tabs button.is-active {
  border-color: rgba(0, 168, 120, 0.22);
  color: #047857;
  background: var(--arz-green-soft);
}

.ugc-summary__panel {
  min-height: 112px;
  padding: 12px;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  background: #fbfcfd;
}

.summary-panel p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: #334155;
  font-size: 13px;
  line-height: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.consensus-line {
  gap: 7px;
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.arguments-grid,
.targets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.argument-list {
  min-width: 0;
}

.argument-list__title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}

.argument-list--bullish .argument-list__title {
  color: #047857;
}

.argument-list--bearish .argument-list__title {
  color: #be123c;
}

.argument-list ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.argument-list li {
  position: relative;
  padding-inline-start: 12px;
  color: #475569;
  font-size: 12px;
  line-height: 1.8;
}

.argument-list li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.85em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.target-column h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
}

.target-column--bullish h3 {
  color: #047857;
}

.target-column--bearish h3 {
  color: #be123c;
}

.target-column__rows {
  display: grid;
  gap: 7px;
}

.target-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 30px;
  padding: 5px 8px;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-size: 12px;
}

.target-row strong {
  direction: ltr;
  font-size: 13px;
  font-weight: 900;
}

.target-row span {
  color: var(--arz-slate-500);
}

.comments-preview {
  width: min(844px, calc(100% - 32px));
  margin: 0 auto;
}

.comments-preview h2 {
  margin-bottom: 16px;
}

.comment-form {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.comment-form textarea {
  width: 100%;
  min-height: 78px;
  padding: 14px;
  resize: vertical;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  color: #334155;
  outline: none;
}

.comment-form textarea:focus {
  border-color: var(--arz-slate-300);
}

.comment-form button {
  min-width: 108px;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #18181b;
  font-size: 13px;
  font-weight: 800;
}

.comments-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: #64748b;
  background: #fafafa;
  font-size: 13px;
  line-height: 1.9;
}

.comments-disclaimer p {
  margin: 0;
}

.comment-list {
  border-top: 1px solid var(--arz-slate-200);
}

.comment-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--arz-slate-200);
}

.comment-item__avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: #d68a2e;
  font-size: 14px;
  font-weight: 900;
}

.comment-item__body header,
.comment-item__body footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-item__body header {
  color: #111827;
  font-size: 13px;
}

.comment-item__body header span {
  color: var(--arz-slate-500);
  font-size: 12px;
}

.comment-item__body p {
  margin: 8px 0 10px;
  color: #334155;
  font-size: 13px;
  line-height: 2;
}

.comment-item__body footer {
  color: var(--arz-slate-500);
  font-size: 12px;
}

.comment-item__body footer button {
  border: 0;
  color: #334155;
  background: transparent;
  font-weight: 700;
}

.comment-item__body footer span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 980px) {
  .feature-access {
    padding-top: 32px;
  }

  .feature-access__grid {
    grid-template-columns: 1fr;
  }

  .exchange-context-section {
    width: calc(100% - 16px);
  }

  .exchange-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analysis-strip {
    width: calc(100% - 16px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coin-ad-banner {
    width: calc(100% - 16px);
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 78px;
    padding: 14px;
  }

  .coin-ad-banner strong {
    display: none;
  }

  .coin-ad-banner span {
    font-size: clamp(20px, 7vw, 32px);
  }
}

@media (max-width: 640px) {
  .feature-access {
    padding: 20px 8px 40px;
  }

  .feature-access h1 {
    font-size: 24px;
  }

  .feature-access__intro p {
    font-size: 13px;
  }

  .feature-demo-card {
    min-height: auto;
    padding: 14px;
  }

  .feature-demo-card strong {
    font-size: 18px;
  }

  .exchange-pdp-shell {
    padding-top: 10px;
  }

  .exchange-context-section {
    width: calc(100% - 16px);
    margin-bottom: 12px;
    padding: 12px;
  }

  .exchange-context-section__header {
    align-items: flex-start;
  }

  .exchange-context-section h1 {
    font-size: 19px;
  }

  .exchange-news-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .exchange-news-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .exchange-ai-summary {
    width: calc(100% - 16px);
    margin-bottom: 18px;
    padding: 12px;
  }

  .exchange-ai-summary__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .exchange-ai-summary__meta-actions {
    width: 100%;
    justify-content: space-between;
  }

  .exchange-ai-summary__lists {
    grid-template-columns: 1fr;
  }

  .exchange-ai-summary__copy {
    min-height: auto;
    padding: 14px;
  }

  .exchange-ai-summary__copy p {
    font-size: 13px;
    line-height: 1.9;
  }

  .exchange-ai-summary.is-expanded .exchange-ai-summary__minimize-button {
    display: inline-flex;
  }

  .exchange-ai-summary__mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 36px;
    margin-top: 10px;
    border: 1px solid var(--arz-slate-200);
    border-radius: 8px;
    color: #334155;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
  }

  .exchange-ai-summary__details {
    display: none;
  }

  .exchange-ai-summary.is-expanded .exchange-ai-summary__details {
    display: block;
  }

  .coin-pdp-shell {
    padding-top: 10px;
    background: #fff;
  }

  .analysis-strip {
    display: flex;
    gap: 8px;
    width: 100%;
    padding: 0 8px;
    margin-bottom: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .analysis-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .coin-ad-banner {
    width: calc(100% - 16px);
    min-height: 64px;
    margin-bottom: 8px;
    padding: 10px 12px;
  }

  .coin-ad-banner span {
    font-size: 22px;
  }

  .coin-ad-banner button {
    min-width: 104px;
    height: 36px;
    font-size: 12px;
  }

  .ugc-summary,
  .comments-preview {
    width: calc(100% - 16px);
  }

  .ugc-summary {
    margin-bottom: 18px;
    padding: 12px;
  }

  .ugc-summary__header {
    align-items: flex-start;
  }

  .ugc-summary__icon {
    width: 30px;
    height: 30px;
  }

  .ugc-summary h2,
  .comments-preview h2 {
    font-size: 19px;
  }

  .ugc-summary__title-group p {
    max-width: 190px;
    font-size: 11px;
  }

  .sentiment-chip {
    min-width: 76px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .ugc-summary.is-expanded .ugc-summary__minimize-button {
    display: inline-flex;
  }

  .ugc-summary__compact-summary p {
    font-size: 13px;
    line-height: 1.9;
    -webkit-line-clamp: 2;
  }

  .ugc-summary__compact-summary {
    display: block;
  }

  .ugc-summary.is-expanded .ugc-summary__compact-summary {
    display: none;
  }

  .ugc-summary__mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 36px;
    margin-top: 10px;
    border: 1px solid var(--arz-slate-200);
    border-radius: 8px;
    color: #334155;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
  }

  .ugc-summary__details {
    display: none;
  }

  .ugc-summary.is-expanded .ugc-summary__details {
    display: block;
  }

  .ugc-summary__tabs {
    display: flex;
    gap: 6px;
    margin: 12px 0 8px;
    overflow-x: auto;
  }

  .ugc-summary__tabs button {
    flex: 1 1 0;
    width: auto;
    min-width: 72px;
  }

  .ugc-summary__panel {
    min-height: auto;
    padding: 10px;
  }

  .arguments-grid,
  .targets-grid {
    grid-template-columns: 1fr;
  }

  .summary-panel p {
    font-size: 13px;
    -webkit-line-clamp: 4;
  }

  .comment-form textarea {
    min-height: 72px;
  }

  .comments-disclaimer {
    align-items: flex-start;
    margin: 18px 0;
    font-size: 12px;
  }

  .comment-item {
    grid-template-columns: 34px 1fr;
    gap: 8px;
  }
}

.idea-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 24px;
  border-bottom: 1px solid #edf2f7;
  color: var(--arz-slate-500);
  font-size: 13px;
  line-height: 1.8;
}

.idea-main-card,
.idea-body-card,
.idea-discussion-card {
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
}

.idea-main-card {
  overflow: hidden;
}

.idea-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  grid-template-areas:
    "kicker ."
    "title side"
    "meta meta";
  align-items: start;
  gap: 8px 18px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--arz-slate-200);
}

.idea-hero__content {
  display: contents;
  min-width: 0;
}

.idea-kicker,
.idea-meta-row,
.idea-tags,
.idea-hero__author,
.idea-action-bar,
.idea-action-bar > div,
.idea-stat-chip,
.idea-action-bar__buttons,
.idea-section-heading,
.idea-comment__content header,
.idea-comment__content footer,
.idea-discussion-card__header,
.idea-discussion-note,
.idea-empty-description,
.idea-empty-comments {
  display: flex;
  align-items: center;
}

.idea-kicker {
  grid-area: kicker;
  gap: 7px;
  color: #047857;
  font-size: 13px;
  font-weight: 700;
}

.idea-hero h1 {
  grid-area: title;
  margin: 0;
  color: #1f2933;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: 0;
}

.idea-hero--long-title h1 {
  font-size: clamp(25px, 2.45vw, 32px);
  line-height: 1.44;
}

.idea-meta-row {
  grid-area: meta;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  width: 100%;
  color: var(--arz-slate-500);
  font-size: 13px;
  line-height: 1.8;
}

.idea-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.idea-tags {
  flex-wrap: wrap;
  gap: 8px;
}

.idea-meta-coins {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  min-width: 0;
  margin-right: auto;
}

.idea-hero__side {
  grid-area: side;
  align-self: center;
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.idea-tags--desktop {
  width: 100%;
  direction: ltr;
  justify-content: flex-start;
}

.idea-coin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.6;
}

.idea-coin-pill {
  gap: 7px;
  border: 1px solid rgba(0, 168, 120, 0.18);
  color: #0f766e;
  background: var(--arz-green-soft);
  font-weight: 700;
}

.idea-coin-pill img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.idea-coin-pill b {
  direction: ltr;
  color: #14532d;
}

.idea-meta-coins .idea-coin-pill {
  min-height: 28px;
  padding: 4px 9px;
  font-size: 11px;
}

.idea-meta-coins .idea-coin-pill img {
  width: 16px;
  height: 16px;
}

.idea-coin-overflow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  min-width: 34px;
  padding: 4px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #475569;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.6;
  direction: ltr;
}

.idea-hero__author {
  align-self: start;
  box-sizing: border-box;
  justify-content: flex-start;
  gap: 8px;
  width: auto;
  min-width: 136px;
  max-width: 100%;
  padding: 6px;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: #fbfcfd;
}

.idea-tags--desktop .idea-coin-pill {
  flex: 0 0 auto;
  max-width: 100%;
  direction: rtl;
  justify-content: center;
}

.idea-tags--desktop-wide {
  grid-column: 1 / -1;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.idea-tags--desktop-wide::-webkit-scrollbar {
  display: none;
}

.idea-hero__author img,
.idea-hero__author > span,
.idea-comment__avatar,
.idea-comment__avatar-fallback {
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.idea-hero__author img,
.idea-hero__author > span {
  width: 34px;
  height: 34px;
}

.idea-hero__author > span,
.idea-comment__avatar-fallback {
  display: grid;
  place-items: center;
  color: #fff;
  background: #0f766e;
  font-weight: 900;
}

.idea-hero__author div {
  min-width: 0;
}

.idea-hero__author strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.idea-hero__author strong {
  color: #1f2933;
  font-size: 12px;
  font-weight: 700;
}

.idea-chart-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.idea-chart-frame img {
  display: block;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 16 / 7.4;
  object-fit: contain;
}


.idea-action-bar {
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--arz-slate-200);
  background: #fff;
}

.idea-action-bar > div {
  flex-wrap: wrap;
  gap: 8px;
}

.idea-stat-chip {
  gap: 6px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  color: #475569;
  background: #fbfcfd;
  font-size: 12px;
}

.idea-stat-chip strong {
  color: #1f2933;
  font-size: 13px;
  font-weight: 700;
}

.idea-stat-chip small {
  color: var(--arz-slate-500);
}

.idea-action-bar__buttons {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.idea-action-bar__buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 8px;
}

.idea-action-bar__buttons button {
  width: 38px;
  border: 1px solid var(--arz-slate-200);
  color: #475569;
  background: #fff;
}

.idea-body-card {
  margin: 16px 18px 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}


.idea-section-heading {
  gap: 10px;
  margin-bottom: 14px;
}

.idea-section-heading > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 168, 120, 0.18);
  border-radius: 8px;
  color: #047857;
  background: var(--arz-green-soft);
}

.idea-section-heading h2 {
  margin: 0;
  color: #1f2933;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.45;
  letter-spacing: 0;
}

.idea-section-heading p {
  margin: 2px 0 0;
  color: var(--arz-slate-500);
  font-size: 12px;
  line-height: 1.7;
}

.idea-description-prose {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fff;
}

.idea-description-prose p {
  width: min(760px, 100%);
  margin: 0;
  margin-inline: auto;
  color: #334155;
  font-size: 15px;
  line-height: 2.15;
}

.idea-description-cooked {
	transition: all 1s;
	display: grid;
	gap: 14px;
	width: min(760px, 100%);
	margin-inline: auto;
	color: #334155;
	font-size: 15px;
	line-height: 2.05;
}


.idea-description-cooked :is(h2, h3, h4, p, ul, ol, blockquote, pre, table, figure) {
  margin: 0;
}

.idea-description-cooked :is(h2, h3, h4) {
  color: #1f2933;
  font-weight: 950;
  line-height: 1.65;
  letter-spacing: 0;
}

.idea-description-cooked h2 {
  font-size: 20px;
}

.idea-description-cooked h3 {
  font-size: 17px;
}

.idea-description-cooked h4 {
  font-size: 15px;
}

.idea-description-cooked :is(ul, ol) {
  display: grid;
  gap: 8px;
  padding: 0 22px 0 0;
}

.idea-description-cooked li::marker {
  color: #0f766e;
  font-weight: 900;
}

.idea-description-cooked a {
  color: #047857;
  font-weight: 850;
  text-decoration: none;
}

.idea-description-cooked blockquote {
  padding: 12px 14px;
  border-right: 3px solid rgba(0, 168, 120, 0.35);
  border-radius: 8px;
  color: #475569;
  background: #f8fafc;
}

.idea-description-cooked :is(pre, code) {
  direction: ltr;
  text-align: left;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.idea-description-cooked code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #f1f5f9;
  font-size: 0.9em;
}

.idea-description-cooked pre {
  overflow-x: auto;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
  line-height: 1.8;
}

.idea-description-cooked table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}

.idea-description-cooked :is(th, td) {
  min-width: 116px;
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  text-align: right;
  white-space: nowrap;
}

.idea-description-cooked th {
  color: #1f2933;
  background: #f8fafc;
  font-weight: 950;
}

.idea-description-cooked tr:last-child td {
  border-bottom: 0;
}

.idea-description-cooked img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #020617;
}

.idea-description-prose .idea-description-lead {
  color: #0f766e;
  font-size: 16px;
  font-weight: 900;
}

.idea-description-prose--short {
  min-height: 68px;
  align-content: center;
}

.idea-description-divider {
  display: block;
  width: min(680px, 100%);
  height: 1px;
  margin: 2px auto;
  background: #edf2f7;
}

.idea-description-media {
  width: min(760px, 100%);
  margin: 4px auto;
  overflow: hidden;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #020617;
}

.idea-description-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.idea-body-card--mobile.is-collapsed .idea-description-prose {
  max-height: 238px;
}

.idea-body-card--mobile.is-collapsed .idea-description-prose::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 78%);
  content: "";
  pointer-events: none;
}

.idea-description-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  color: #334155;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.idea-empty-comments {
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 8px;
  color: #92400e;
  background: #fffbeb;
}

.idea-empty-comments strong {
  display: block;
  margin-bottom: 4px;
  color: #78350f;
  font-size: 14px;
  font-weight: 950;
}

.idea-empty-comments p {
  margin: 0;
  color: #92400e;
  font-size: 13px;
  line-height: 1.9;
}

.idea-discussion-card {
  margin-top: 16px;
  padding: 18px;
}

.idea-discussion-card__header {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.idea-discussion-card__header a {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  color: #334155;
  background: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.idea-comment-form {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--arz-slate-200);
  border-radius: 8px;
  background: #fbfcfd;
}

.idea-comment-form textarea {
  width: 100%;
  min-height: 92px;
  padding: 14px;
  resize: vertical;
  border: 1px solid #dbe3eb;
  border-radius: 8px;
  color: #334155;
  background: #fff;
}

.idea-comment-form textarea:focus {
  border-color: var(--arz-slate-300);
}

.idea-comment-form > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.idea-comment-form p {
  margin: 0;
  color: var(--arz-slate-500);
  font-size: 12px;
  line-height: 1.8;
}

.idea-comment-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 120px;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #18181b;
  font-size: 13px;
  font-weight: 850;
}

.idea-comment-form button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.idea-discussion-note {
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: #64748b;
  background: #fafafa;
  font-size: 13px;
  line-height: 1.9;
}

.idea-discussion-note p {
  margin: 0;
}

.idea-comments-list {
  border-top: 1px solid var(--arz-slate-200);
}

.idea-comment {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--arz-slate-200);
}

.idea-comment__avatar,
.idea-comment__avatar-fallback {
  width: 40px;
  height: 40px;
}

.idea-comment__content {
  min-width: 0;
}

.idea-comment__content header {
  justify-content: space-between;
  gap: 12px;
}

.idea-comment__content header div {
  min-width: 0;
}

.idea-comment__content strong,
.idea-comment__content span {
  display: inline-block;
}

.idea-comment__content strong {
  color: #111827;
  font-size: 13px;
  font-weight: 950;
}

.idea-comment__content header span {
  direction: ltr;
  margin-inline-start: 8px;
  color: var(--arz-slate-500);
  font-size: 12px;
}

.idea-comment__content time {
  flex: 0 0 auto;
  color: var(--arz-slate-500);
  font-size: 12px;
}

.idea-comment__content p {
  margin: 8px 0 10px;
  color: #334155;
  font-size: 13px;
  line-height: 2;
}

.idea-comment__content footer {
  flex-wrap: wrap;
  gap: 10px;
  color: var(--arz-slate-500);
  font-size: 12px;
}

.idea-comment__content footer button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  color: #334155;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.idea-empty-comments {
  margin-top: 12px;
}

@media (min-width: 761px) and (max-width: 1100px) {
  .idea-hero {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 14px;
    padding: 14px 20px;
  }

  .idea-hero h1 {
    font-size: 28px;
  }

  .idea-hero--long-title h1 {
    font-size: clamp(25px, 2.65vw, 30px);
    line-height: 1.44;
  }

  .idea-hero__author {
    min-width: 150px;
  }
}

@media (max-width: 760px) {

  .idea-breadcrumb {
    overflow: hidden;
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .idea-hero {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 10px;
    padding: 16px 14px 12px;
  }

  .idea-hero__content {
    display: block;
  }

  .idea-hero__side {
    grid-area: auto;
    display: block;
  }

  .idea-kicker {
    margin-bottom: 10px;
  }

  .idea-meta-row {
    margin-top: 12px;
  }

  .idea-hero h1 {
    font-size: 21px;
    line-height: 1.45;
  }

  .idea-hero--long-title h1 {
    font-size: 20px;
    line-height: 1.48;
  }

  .idea-tags--mobile {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-top: 14px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .idea-tags--mobile::-webkit-scrollbar {
    display: none;
  }

  .idea-tags--mobile .idea-coin-pill {
    flex: 0 0 auto;
  }


  .idea-hero__author {
    width: 100%;
  }


  .idea-chart-frame--mobile {
    display: block;
    margin: 12px -14px 0;
  }

  .idea-chart-frame img {
    max-height: none;
    aspect-ratio: 1.12 / 1;
  }

  .idea-action-bar {
    align-items: center;
    flex-direction: row;
    padding: 10px 12px;
  }

  .idea-action-bar__buttons {
    width: auto;
  }

  .idea-action-bar__buttons button {
    width: 40px;
    min-height: 40px;
  }


  .idea-body-card--mobile {
    display: block;
    margin: 14px 0 0;
    padding: 0 14px;
    box-shadow: none;
  }

  .idea-description-prose {
    gap: 12px;
    padding: 14px;
  }

  .idea-description-prose p {
    font-size: 14px;
    line-height: 1.9;
  }

  .idea-description-prose .idea-description-lead {
    font-size: 15px;
  }

  .idea-description-prose--short {
    min-height: 48px;
  }

  .idea-body-card--mobile.is-collapsed .idea-description-prose {
    max-height: 232px;
  }

  .idea-discussion-card {
    margin-top: 12px;
    padding: 14px;
  }

  .idea-discussion-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .idea-discussion-card__header a {
    width: 100%;
    text-align: center;
  }

  .idea-comment-form > div {
    align-items: stretch;
    flex-direction: column;
  }

  .idea-comment-form button {
    width: 100%;
  }

  .idea-comment {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 9px;
  }

  .idea-comment__avatar,
  .idea-comment__avatar-fallback {
    width: 34px;
    height: 34px;
  }

  .idea-comment__content header {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}


.idea-description-cooked .lightbox .meta {
    display: none;
}

.idea-description-cooked .content-shadow{
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;z-index:9;
    pointer-events: none;
    transition: 1s all;
    opacity:1;
}