:root {
  --bg: #FAF7F2;
  --fg: #1A1614;
  --muted: #8A7E74;
  --accent-warm: #C4622D;
  --accent-cool: #6B7C5E;
  --accent-warm-bg: #F5EDE6;
  --accent-cool-bg: #EDF0E9;
  --border: rgba(138, 126, 116, 0.18);
  --card-bg: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  margin: 0;
  background: var(--bg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.embed-card {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.embed-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 10px;
}

.embed-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.embed-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.embed-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.embed-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.embed-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.embed-more {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
  font-style: italic;
}

.embed-view-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: var(--accent-warm);
  color: #fff;
  text-decoration: none;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: background 0.15s;
}

.embed-view-btn:hover { background: #A8521F; }

.embed-view-btn--warm_lg {
  padding: 16px 24px;
  font-size: 17px;
  border-radius: 10px;
}

.embed-view-btn--cool { background: var(--accent-cool); }
.embed-view-btn--cool:hover { background: #56634B; }

.embed-urgency {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  margin-bottom: -8px;
}

.embed-brand {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

.embed-brand a {
  color: var(--muted);
  text-decoration: none;
}

.embed-brand a:hover { text-decoration: underline; }

.embed-copy-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.embed-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent-warm);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.embed-copy-btn:hover { background: #A8521F; }

.embed-copy-feedback {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-cool);
}
