/* Character single page — Kudocare-inspired */
.cc-char-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cc-cream);
  overflow: hidden;
}

.cc-char-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.cc-char-hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.cc-char-blob {
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 58% 42% 48% 52% / 48% 55% 45% 52%;
  overflow: hidden;
  border: 6px solid var(--cc-primary);
  background: linear-gradient(160deg, #f3eefc, #fff9e8 55%, #e8f6f6);
  box-shadow: 0 24px 50px rgba(35, 22, 81, 0.16);
  animation: founderFloat 4.5s ease-in-out infinite, founderMorph 10s ease-in-out infinite;
}

.cc-char-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cc-char-hero-content .cc-eyebrow { margin-bottom: 0.35rem; }

.cc-char-learn,
.cc-char-activities,
.cc-char-why {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cc-char-learn { background: #fff; }
.cc-char-activities { background: var(--cc-cream); }
.cc-char-why { background: var(--cc-primary); color: #fff; }

.cc-char-why h2,
.cc-char-why h3,
.cc-char-why p,
.cc-char-why .cc-eyebrow { color: #fff; }

.cc-char-why .cc-eyebrow { color: var(--cc-yellow); }

.cc-learn-grid,
.cc-act-grid,
.cc-why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 2rem;
}

.cc-learn-item,
.cc-act-item {
  background: var(--cc-cream);
  border-radius: 20px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--cc-shadow);
  transition: transform 0.3s ease;
}

.cc-char-activities .cc-act-item { background: #fff; }

.cc-learn-item:hover,
.cc-act-item:hover { transform: translateY(-6px); }

.cc-learn-item strong,
.cc-act-item strong {
  display: block;
  color: var(--cc-primary);
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}

.cc-why-points article {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.4rem 1.25rem;
}

.cc-why-points h4 { color: var(--cc-yellow); margin-bottom: 0.4rem; }
.cc-why-points p { color: rgba(255,255,255,0.88); margin: 0; }

.cc-char-quote {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--cc-accent);
  background: rgba(255,131,96,0.1);
  border-radius: 0 16px 16px 0;
  font-weight: 700;
  color: var(--cc-primary);
}

.cc-related-chars {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cc-cream);
}

@media (max-width: 900px) {
  .cc-char-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cc-char-hero-content .cc-hero-actions,
  .cc-char-hero-content .cc-btn { justify-content: center; }
}

@media (max-width: 640px) {
  .cc-learn-grid,
  .cc-act-grid,
  .cc-why-points {
    grid-template-columns: 1fr;
  }
}
