/* =============================
   ABOUT HERO
============================= */

.about-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--primary);
  line-height: 1.25;
}

.about-hero p {
  color: var(--text);
  max-width: 520px;
}

.about-hero-media {
  background: #fff;
}

/* =============================
   JOURNEY SECTION
============================= */

.journey-item {
  position: relative;
  border-left: 5px solid var(--primary);
  border-radius: 5px;
}

/* Year Badge */
.journey-year {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 0px 50px 50px 0px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 15px;
}

/* Content */
.journey-content p {
  margin-left: 30px;
  color: var(--text);
  max-width: 360px;
}

/* Alignment tweak */
.journey-item.right {
  padding-left: 30px;
}

.journey-item.left {
  padding-left: 30px;
}

/* Responsive */
@media (max-width: 767px) {
  .journey-content p {
    max-width: 100%;
  }
}


/* =============================
   CORE IDEOLOGY (FIXED LAYOUT)
============================= */

.ideology-card {
  position: relative;

  width: 100%;
  max-width: 360px;
  height: 190px;
  /* 🔥 fixed height */

  margin: 0 auto;

  background: url(../images/bg/micro-card-bg.png) no-repeat center;
  background-size: 100% 100%;
}

/* ICON */
.ideology-icon {
  position: absolute;
  top: 18px;
  right: 35px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.ideology-icon img {
  width: 40px;
}

/* TITLE */
.ideology-title {
  position: absolute;

  top: 45px;
  /* 🔥 move down into center of capsule */
  left: 25px;

  transform: translateY(-50%);
  /* 🔥 true vertical centering */

  max-width: 240px;
  margin: 0;

  font-weight: 600;
}

/* DESCRIPTION */
.ideology-desc {
  position: absolute;
  top: 85px;
  left: 25px;
  right: 25px;

  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

/* =============================
   FOUNDER SECTION
============================= */

.founder-image img {
  max-width: 300px;
  border-radius: var(--radius-lg);
  margin: auto;
}

/* Content */
.founder-content p {
  color: var(--text);
  margin-bottom: 14px;
}

/* Quote */
.founder-content .fw-semibold {
  color: var(--primary);
}