/* BASE */

.about-page {
  font-family: inherit;
  color: #1e293b;
}


/* HERO */

.mm-over-hero {
	background-image: url(/wp-content/uploads/2024/04/IMG_2399-scaled.jpeg);
}


/* LAYOUT */

.about-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-section {
	padding: 0;
}

.about-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-section p {
  line-height: 1.7;
  margin-bottom: 16px;
}


/* SPLIT */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split.reverse {
  direction: rtl;
}

.about-split.reverse > * {
  direction: ltr;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-image-mobile {
	display: none;
}

.about-image-mobile img {
	border-radius: 0;
}


/* LIST */

.about-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

.about-text li {
  margin-bottom: 10px;
}


/* TURNING POINT */

section.mm-results.mm-results-particulieren.about-turning.mm-over {
  background-image: url(/wp-content/uploads/2026/05/eric_conference.png);
  min-height: 100vh;
  font-size: 1.2rem;
  align-items: center;
}

.about-turning .pp-highlight h3 {
	font-size: 2rem;
}

.about-turning .pp-highlight p {
	font-size: 1.4rem;
}

.about-label {
	font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 50%);
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.about-turning-highlight {
  font-weight: 500;
}


/* QUOTE */

.about-quote {
  background: #f8fafc;
  text-align: center;
  padding: 0 0 20px 0;
}

.about-quote .about-wrap {
	padding-top: 14px;
    padding-bottom: 120px;
}

.about-quote-mark {
  font-size: 48px;
  display: block;
  margin-bottom: 10px;
  color: #0ea5a4;
	max-width: 700px;
    text-align: left;
    margin-left: auto;
	margin-right: auto;
    padding-left: 32px;
}

.about-quote p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}


/* CTA */

.about-cta {
  background: linear-gradient(to bottom, #0b1f3a, #1e7f6e);
  color: white;
  text-align: center;
}

.about-cta-inner {
  padding: 100px 20px;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: white;
  color: #0b1f3a;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
}

/* APPROACH SECTION */

.about-approach {
  background: var(--main-background-dark);
  padding: 0;
}

.about-approach h2 {
	color: white;
}

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 30px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
}

.about-approach-item {
  padding: 28px;
  background: white;
  border-right: 1px solid #cbd5e1;

  position: relative;
  z-index: 1;

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

/* 🔹 Bottom accent line (centered transform instead of width) */
/* .about-approach-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #2b8a8f;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
} */

/* 🔹 Optional top highlight (adds polish, replaces “lost bar” feeling) */
.about-approach-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;

  transition: border-color 0.25s ease;
}

/* 🔹 Group dim (smoother) */
.about-approach-grid:hover .about-approach-item {
  opacity: 0.6;
}

/* 🔹 Active card */
.about-approach-grid:hover .about-approach-item:hover {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  z-index: 2; /* ensures it sits above neighbors cleanly */
}

/* 🔹 Animate accent line */
.about-approach-item:hover::after {
  transform: scaleX(1);
}

/* 🔹 Subtle outline instead of layout-breaking visuals */
.about-approach-item:hover::before {
  border-color: rgba(43, 138, 143, 0.25);
}

/* 🔹 Title interaction */
.about-approach-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #1a8faa;

  transition: color 0.25s ease;
}

.about-approach-item:hover h3 {
  color: #2b8a8f;
}

/* 🔹 Text */
.about-approach-item p {
  line-height: 1.6;
  font-size: 14px;
}

/* 🔹 Remove border on last */
.about-approach-item:last-child {
  border-right: none;
}
