.cc-subtitle {
  color: var(--muted);
  margin: -0.5rem 0 1.5rem;
  font-size: 1rem;
}

/* Textarea */
.cc-textarea {
  width: 100%;
  min-height: 180px;
  padding: 1rem;
  border: 1px solid #e4e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--card);
  resize: vertical;
  line-height: 1.65;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.cc-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(11, 110, 253, 0.12);
}

.cc-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.6rem;
  margin-bottom: 1.5rem;
}

.cc-btn {
  padding: 0.4rem 0.9rem;
  border: 1px solid #e4e8f0;
  border-radius: 8px;
  background: var(--card);
  color: var(--muted);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.cc-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Stats grid */
.cc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.cc-stat {
  background: var(--card);
  border: 1px solid #e4e8f0;
  border-radius: 12px;
  padding: 1.1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.cc-stat__value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cc-stat__label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.cc-stat--primary {
  border-color: var(--accent);
  background: linear-gradient(135deg, #eef3ff 0%, #e0eaff 100%);
}

.cc-stat--primary .cc-stat__value {
  font-size: 2.2rem;
}

.cc-stat--primary .cc-stat__label {
  font-weight: 700;
  color: var(--accent);
}

/* SEO section */
.cc-seo {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e4e8f0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cc-seo h2 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.cc-seo h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin: 1.25rem 0 0.3rem;
}

.cc-seo p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 540px) {
  .cc-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-stat__value {
    font-size: 1.35rem;
  }
}
