/* ============================================
   CHARACTER INTRO SECTION (aligned with Features)
   ============================================ */

/*.character-section {
  width: 100%;
  padding: 6rem 0;
  background: #0a0a0a;
}*/

.character-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;

  /* ▼ EXACTLY MATCHES Features panel spacing */
/*  max-width: 1120px;*/
/*  margin: 0 auto;*/
/*  padding: 0 1rem; */
}

.character-text {
  flex: 1 1 40%;
  max-width: 500px;
  text-align: left;
}

.character-title {
  font-size: clamp(2.4rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.character-desc {
  font-size: 1.1rem;
  color: rgba(235,235,235,0.85);
  margin-bottom: 1.4rem;
  line-height: 1.55;
}

.character-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.character-points li {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  padding-left: 1.25rem;
  position: relative;
  color: rgba(230,230,230,0.9);
}

.character-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(246,185,146,0.9);   /* same accent warm */
}

/* IMAGE */
.character-image-wrap {
  flex: 1 1 60%;
  display: flex;
  justify-content: flex-end;
}

.character-image {
  width: 100%;
  height: auto;
  max-width: 900px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(0,0,0,0.75);
}

/* STACK ON MOBILE */
@media (max-width: 992px) {
  .character-inner {
    flex-direction: column;
    text-align: center;
  }

  .character-image {
    max-width: 100%;
  }
}


