.mif-scope {
  --mif-ink: #1b1a1a;
  --mif-body: #9b9b9b;
  --mif-green: #e97136;
  --mif-green-d: #b01705;
  --mif-amber: #e97136;
  --mif-line: #eaeaea;
  --mif-soft: #f9f9f9;
  --mif-white: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--mif-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.mif-scope *,
.mif-scope *::before,
.mif-scope *::after {
  box-sizing: border-box;
}

.mif-sec {
  padding: 64px 20px;
}

.mif-sec--soft {
  background: var(--mif-soft);
}

.mif-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.mif-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: url("/assets/images/page-titles/10.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay over background image */
.mif-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Content stays above background + overlay */
.mif-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 40px;
}

/* Hero eyebrow */
.mif-hero .mif-eyebrow {
  color: #e97136;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Hero heading */
.mif-hero .mif-h1 {
  color: #ffffff;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 900px;
}

/* Hero paragraph */
.mif-hero .mif-lead {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  max-width: 750px;
  margin-bottom: 30px;
}

/* Navigation chips */
.mif-hero .mif-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mif-hero .mif-chips li {
  margin: 0;
  padding: 0;
}

/* Chip */
.mif-hero .mif-chips a {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid #e97136;
  border-radius: 50px;
  background: #e97136;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

/* Chip hover */
.mif-hero .mif-chips a:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* =========================================================   TABLET   ========================================================= */
@media (max-width: 991.98px) {
  .mif-hero {
    min-height: 620px;
    background-position: center;
  }

  .mif-hero .mif-h1 {
    font-size: 2.5rem;
  }

  .mif-hero .mif-lead {
    font-size: 18px;
  }
}

/* =========================================================   MOBILE   ========================================================= */
@media (max-width: 768px) {
  .mif-hero {
    min-height: 620px;
    align-items: center;
    background-position: center;
  }

  .mif-hero .mif-h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .mif-hero .mif-lead {
    font-size: 18px;
    line-height: 1.5;
  }

  .mif-hero .mif-chips {
    gap: 8px;
  }

  .mif-hero .mif-chips a {
    padding: 8px 13px;
    font-size: 0.82rem;
  }
}

/* =========================================================   SMALL MOBILE   ========================================================= */
@media (max-width: 575.98px) {
  .mif-hero {
    min-height: 620px;
  }

  .mif-hero .mif-h1 {
    font-size: 1.7rem;
  }

  .mif-hero .mif-lead {
    font-size: 14px;
  }
}

.mif-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mif-green);
  margin: 0 0 14px;
}

.mif-h1 {
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.14;
  font-weight: 800;
  color: var(--mif-ink);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.mif-h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--mif-ink);
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}

.mif-h3 {
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--mif-ink);
  margin: 0 0 8px;
}

.mif-lead {
  font-size: 15px;
  margin: 0 0 26px;
  max-width: 80ch;
  margin: 0 0 26px;
}

.mif-p {
  margin: 0 0 14px;
}

.mif-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.mif-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    background 0.15s,
    color 0.15s;
}

.mif-btn--pri {
  background: var(--mif-green);
  color: #fff;
}

.mif-btn--pri:hover {
  background: var(--mif-green);
  color: #fff;
}

.mif-btn--sec {
  background: transparent;
  color: var(--mif-line);
  border-color: var(--mif-line);
}

.mif-btn--sec:hover {
  background: var(--mif-green);
  color: var(--mif-line);
  border-color: var(--mif-green);
}

.mif-btn--sm {
  padding: 11px 18px;
  font-size: 0.9rem;
}

.mif-grid {
  display: grid;
  gap: 22px;
}

.mif-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.mif-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.mif-card {
  background: #fff;
  border: 1px solid var(--mif-line);
  border-radius: 12px;
  padding: 26px;
}

.mif-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mif-green);
  background: #e8f2ec;
  border-radius: 999px;
  padding: 5px 11px;
  margin: 0 0 12px;
}

.mif-tag--grey {
  color: #4a5a52;
  background: #eef2f0;
}

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

.mif-list li {
  position: relative;
  padding: 0 0 0 24px;
  margin: 0 0 8px;
  font-size: 0.94rem;
}

.mif-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mif-green);
}

/* ---- founder feature ---- */
.mif-founder {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(240px, 320px) 1fr;
  align-items: start;
}

@media (max-width: 760px) {
  .mif-founder {
    grid-template-columns: 1fr;
  }
}

.mif-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: #e8f2ec;
  border: 1px solid var(--mif-line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mif-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 12px;
  overflow: hidden;
}

.mif-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mif-quote {
  border-left: 4px solid var(--mif-green);
  padding: 8px 0 8px 22px;
  margin: 0 0 20px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
  color: var(--mif-ink);
  font-weight: 600;
  max-width: 60ch;
}

.mif-sign {
  font-size: 0.9rem;
  color: var(--mif-muted);
  margin: 0;
}

/* ---- leader cards ---- */
.mif-ldr {
  background: #fff;
  border: 1px solid var(--mif-line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  border-top: 4px solid var(--mif-green);
  display: flex;
  flex-direction: column;
}

.mif-ldr__photo {
  width: 100%;
  aspect-ratio: 16/10;
  background: #e8f2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mif-muted);
  font-size: 0.78rem;
  text-align: center;
  padding: 12px;
}

.mif-ldr__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mif-ldr__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mif-ldr__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--mif-ink);
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}

.mif-ldr__role {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mif-green);
  margin: 0 0 4px;
}

.mif-ldr__cred {
  font-size: 0.8rem;
  color: var(--mif-muted);
  margin: 0 0 14px;
}

.mif-ldr__bio {
  font-size: 0.94rem;
  margin: 0 0 16px;
  flex: 1;
}

.mif-ldr__owns {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mif-green);
  margin: 0 0 8px;
}

/* ---- accountability table ---- */
.mif-tblwrap {
  overflow-x: auto;
  border: 1px solid var(--mif-line);
  border-radius: 12px;
  background: #fff;
}

.mif-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 640px;
}

.mif-tbl th {
  background: var(--mif-green);
  color: #fff;
  text-align: left;
  padding: 13px 16px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mif-tbl td {
  padding: 13px 16px;
  border-top: 1px solid var(--mif-line);
  vertical-align: top;
}

.mif-note {
  border-left: 4px solid var(--mif-green);
  background: var(--mif-soft);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0 0;
}

.mif-note--amber {
  border-left-color: var(--mif-amber);
  background: #fdf7ee;
}

.mif-note--onsoft {
  background: #fff;
}

.mif-note p {
  margin: 0 0 8px;
}

.mif-note p:last-child {
  margin: 0;
}

.mif-note strong {
  color: var(--mif-ink);
}

.mif-disclaimer {
  margin: 34px 0 0;
  padding: 22px;
  border: 1px solid var(--mif-line);
  border-radius: 10px;
  background: #fff;
  font-size: 0.86rem;
  line-height: 1.6;
}

.mif-disclaimer b {
  color: var(--mif-ink);
}

.mif-draftbar {
  background: #12201a;
  color: #cfe3d7;
  padding: 14px 20px;
  font-size: 0.85rem;
  text-align: center;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

@media (max-width: 600px) {
  .mif-sec {
    padding: 48px 18px;
  }
}

/* =========================================   FOUNDER SECTION========================================= */
#mif-founder {
  overflow: hidden;
}

#mif-founder .mif-wrap {
  max-width: 1120px;
}

/* =========================================   FOUNDER GRID========================================= */
.mif-founder {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.4fr;
  gap: 36px;
  align-items: stretch;
}

/* =========================================   FOUNDER IMAGE========================================= */
.mif-founder__media {
  height: 100%;
}

.mif-photo {
  width: 100%;
  height: 100%;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  border: 1px solid var(--mif-line);
  border-radius: 16px;
  color: var(--mif-body);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

/* Image */
.mif-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================   FOUNDER CONTENT========================================= */
.mif-founder__content {
  min-width: 0;
  height: 580px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* =========================================   SCROLL AREA========================================= */
.mif-founder__scroll-area {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding-right: 12px;
  scroll-behavior: smooth;
  position: relative;
}

/* Active Scroll */
.mif-founder__scroll-area.is-scrollable {
  overflow-y: auto;
}

/* Scrollbar */
.mif-founder__scroll-area.is-scrollable::-webkit-scrollbar {
  width: 6px;
}

.mif-founder__scroll-area.is-scrollable::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 10px;
}

.mif-founder__scroll-area.is-scrollable::-webkit-scrollbar-thumb {
  background: var(--mif-green);
  border-radius: 10px;
}

.mif-founder__scroll-area.is-scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--mif-green-d);
}

/* Firefox */
.mif-founder__scroll-area.is-scrollable {
  scrollbar-width: thin;
  scrollbar-color: var(--mif-green) #eeeeee;
}

/* =========================================   FOUNDER NAME========================================= */
.mif-founder__name {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

/* =========================================   ROLE========================================= */
.mif-founder__role {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--mif-green);
}

/* =========================================   EXPERIENCE========================================= */
.mif-founder__experience {
  margin: 0 0 22px;
  font-size: 0.85rem;
  color: var(--mif-body);
}

/* =========================================   QUOTE========================================= */
.mif-founder .mif-quote {
  border-left: 4px solid var(--mif-green);
  padding: 8px 0 8px 20px;
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.55;
  font-weight: 600;
  color: var(--mif-ink);
}

/* =========================================   CONTENT TEXT========================================= */
.mif-founder__scroll-area .mif-p {
  margin: 0 0 16px;
  line-height: 1.75;
  color: var(--mif-body);
}

.mif-founder__scroll-area .mif-sign {
  margin: 6px 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--mif-line);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mif-ink);
}

/* =========================================   READ MORE BUTTON========================================= */
.mif-read-more-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  padding: 11px 18px;
  border: 1px solid var(--mif-green);
  border-radius: 8px;
  background: transparent;
  color: var(--mif-green);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.mif-read-more-btn:hover {
  background: var(--mif-green);
  color: #ffffff;
  transform: translateY(-2px);
}

.mif-read-more-btn__icon {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Active Button */
.mif-read-more-btn.is-active {
  background: var(--mif-green);
  color: #ffffff;
}

.mif-read-more-btn.is-active .mif-read-more-btn__icon {
  transform: rotate(180deg);
}

/* =========================================   MOBILE========================================= */
@media (max-width: 991.98px) {
  .mif-founder {
    grid-template-columns: 1fr;
  }

  .mif-founder__media {
    height: auto;
  }

  .mif-photo {
    min-height: 480px;
    height: 480px;
  }

  .mif-founder__content {
    height: 520px;
  }
}

/* =========================================   SMALL MOBILE========================================= */
@media (max-width: 575.98px) {
  .mif-founder {
    gap: 24px;
  }

  .mif-photo {
    min-height: 400px;
    height: 400px;
    border-radius: 12px;
  }

  .mif-founder__content {
    height: 500px;
  }

  .mif-founder__scroll-area {
    padding-right: 8px;
  }

  .mif-founder__name {
    font-size: 1.75rem;
  }

  .mif-founder__role {
    font-size: 0.95rem;
  }

  .mif-founder__experience {
    margin-bottom: 18px;
  }

  .mif-founder .mif-quote {
    padding-left: 15px;
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .mif-founder__scroll-area .mif-p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .mif-read-more-btn {
    width: 100%;
    padding: 12px 18px;
  }
}

.mif-read-card {
  height: 100%;
  min-height: 480px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--mif-line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mif-read-card__content {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding-right: 8px;
  scroll-behavior: smooth;
}

.mif-read-card__content.is-scrollable {
  overflow-y: auto;
}

.mif-read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  padding: 11px 18px;
  border: 1px solid var(--mif-green);
  border-radius: 8px;
  background: transparent;
  color: var(--mif-green);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.mif-read-more-btn:hover {
  background: var(--mif-green);
  color: #fff;
}

.mif-read-more-btn.is-active {
  background: var(--mif-green);
  color: #fff;
}

/* =========================================   LEADERSHIP SECTION========================================= */
#mif-leadership {
  position: relative;
}

/* =========================================   LEADERSHIP GRID========================================= */
#mif-leadership .mif-grid--2 {
  gap: 28px;
}

/* =========================================   LEADERSHIP CARD========================================= */
.mif-ldr {
  height: 100%;
  min-height: 720px;
  background: var(--mif-white);
  border: 1px solid var(--mif-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Simple Professional Hover */
.mif-ldr:hover {
  transform: translateY(-6px);
  border-color: var(--mif-green);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* =========================================   PHOTO========================================= */
.mif-ldr__photo {
  width: 100%;
  height: 260px;
  background: var(--mif-soft);
  border-bottom: 1px solid var(--mif-line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--mif-body);
  font-size: 0.85rem;
  overflow: hidden;
  flex-shrink: 0;
}

.mif-ldr__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================   CARD BODY========================================= */
.mif-ldr__body {
  flex: 1;
  min-height: 0;
  padding: 26px;
  overflow: hidden;
  padding-right: 18px;
  scroll-behavior: smooth;
}

/* Scroll Enable After Read More */
.mif-ldr__body.is-scrollable {
  overflow-y: auto;
}

/* =========================================   CUSTOM SCROLLBAR========================================= */
.mif-ldr__body.is-scrollable::-webkit-scrollbar {
  width: 6px;
}

.mif-ldr__body.is-scrollable::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}

.mif-ldr__body.is-scrollable::-webkit-scrollbar-thumb {
  background: var(--mif-green);
  border-radius: 20px;
}

.mif-ldr__body.is-scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--mif-green-d);
}

/* Firefox */
.mif-ldr__body.is-scrollable {
  scrollbar-width: thin;
  scrollbar-color: var(--mif-green) #f1f1f1;
}

/* =========================================   NAME========================================= */
.mif-ldr__name {
  margin: 0 0 6px;
  color: var(--mif-ink);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
}

/* =========================================   ROLE========================================= */
.mif-ldr__role {
  margin: 0 0 8px;
  color: var(--mif-green);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

/* =========================================   CREDENTIALS========================================= */
.mif-ldr__cred {
  margin: 0 0 18px;
  color: var(--mif-body);
  font-size: 0.82rem;
  line-height: 1.6;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mif-line);
}

/* =========================================   BIO========================================= */
.mif-ldr__bio {
  margin: 0 0 20px;
  color: var(--mif-body);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* =========================================   HE OWNS LABEL========================================= */
.mif-ldr__owns {
  margin: 0 0 10px;
  color: var(--mif-ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================   LIST========================================= */
.mif-ldr .mif-list {
  margin: 0;
  padding: 0;
}

.mif-ldr .mif-list li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================   READ MORE BUTTON AREA========================================= */
.mif-ldr__read-btn {
  width: calc(100% - 52px);
  margin: 0 26px 26px;
  flex-shrink: 0;
  justify-content: center;
  border-radius: 10px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

/* Button Hover */
.mif-ldr__read-btn:hover {
  transform: translateY(-2px);
}

/* Active */
.mif-ldr__read-btn.is-active {
  background: var(--mif-green);
  color: #ffffff;
  border-color: var(--mif-green);
}

/* Active Icon */
.mif-ldr__read-btn.is-active .mif-read-more-btn__icon {
  transform: rotate(180deg);
}

/* =========================================   TABLET========================================= */
@media (max-width: 991.98px) {
  .mif-ldr {
    min-height: 680px;
  }

  .mif-ldr__photo {
    height: 240px;
  }

  .mif-ldr__body {
    padding: 24px;
  }

  .mif-ldr__read-btn {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
  }
}

/* =========================================   MOBILE========================================= */
@media (max-width: 575.98px) {
  .mif-ldr {
    min-height: 620px;
    border-radius: 14px;
  }

  .mif-ldr__photo {
    height: 220px;
  }

  .mif-ldr__body {
    padding: 20px;
    padding-right: 14px;
  }

  .mif-ldr__name {
    font-size: 1.2rem;
  }

  .mif-ldr__role {
    font-size: 0.88rem;
  }

  .mif-ldr__bio {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .mif-ldr__read-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 18px;
  }
}
/* =========================================
   LEADERSHIP SECTION
========================================= */

#mif-leadership {
  overflow: hidden;
}

#mif-leadership .mif-grid {
  align-items: stretch;
}

/* =========================================
   LEADERSHIP CARD
========================================= */

.mif-ldr {
  height: 620px;
  display: flex;
  flex-direction: column;

  background: var(--mif-white);
  border: 1px solid var(--mif-line);

  border-radius: 14px;
  overflow: hidden;

  position: relative;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Simple Hover */

.mif-ldr:hover {
  transform: translateY(-5px);

  border-color: rgba(233, 113, 54, 0.45);

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

/* =========================================
   PHOTO
========================================= */

.mif-ldr__photo {
  width: 100%;
  height: 220px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 20px;

  background: var(--mif-soft);

  border-bottom: 1px solid var(--mif-line);

  color: #777;

  font-size: 0.8rem;

  letter-spacing: 0.04em;
}

/* If image is used */

.mif-ldr__photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* =========================================
   CARD BODY
========================================= */

.mif-ldr__body {
  flex: 1;

  min-height: 0;

  padding: 24px 22px;

  overflow: hidden;

  position: relative;

  scrollbar-width: thin;

  scrollbar-color: var(--mif-green) transparent;

  transition: all 0.3s ease;
}

/* =========================================
   WHEN READ MORE CLICKED
   INTERNAL SCROLL ENABLE
========================================= */

.mif-ldr__body.is-scrollable {
  overflow-y: auto;

  padding-right: 14px;
}

/* Chrome / Edge Scrollbar */

.mif-ldr__body.is-scrollable::-webkit-scrollbar {
  width: 6px;
}

.mif-ldr__body.is-scrollable::-webkit-scrollbar-track {
  background: transparent;
}

.mif-ldr__body.is-scrollable::-webkit-scrollbar-thumb {
  background: var(--mif-green);

  border-radius: 20px;
}

/* =========================================
   FADE EFFECT BEFORE READ MORE
========================================= */

.mif-ldr__body:not(.is-scrollable)::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 70px;

  pointer-events: none;

  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 90%);
}

/* =========================================
   NAME
========================================= */

.mif-ldr__name {
  margin: 0 0 5px;

  font-size: 1.2rem;

  font-weight: 800;

  line-height: 1.3;

  color: var(--mif-ink);
}

/* =========================================
   ROLE
========================================= */

.mif-ldr__role {
  margin: 0 0 8px;

  font-size: 0.9rem;

  font-weight: 700;

  line-height: 1.5;

  color: var(--mif-green);
}

/* =========================================
   CREDENTIAL
========================================= */

.mif-ldr__cred {
  margin: 0 0 16px;

  padding-bottom: 16px;

  font-size: 0.8rem;

  line-height: 1.6;

  color: var(--mif-body);

  border-bottom: 1px solid var(--mif-line);
}

/* =========================================
   BIO
========================================= */

.mif-ldr__bio {
  margin: 0 0 18px;

  font-size: 0.94rem;

  line-height: 1.75;

  color: var(--mif-body);
}

/* =========================================
   OWNS TITLE
========================================= */

.mif-ldr__owns {
  margin: 0 0 10px;

  font-size: 0.75rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.09em;

  color: var(--mif-green);
}

/* =========================================
   LIST
========================================= */

.mif-ldr .mif-list {
  margin: 0;
}

.mif-ldr .mif-list li {
  font-size: 0.9rem;

  line-height: 1.65;

  margin-bottom: 9px;
}

/* =========================================
   EXTRA NOTE
========================================= */

.mif-ldr__extra-note {
  margin: 16px 0 0;

  padding-top: 14px;

  border-top: 1px solid var(--mif-line);

  font-size: 0.88rem;

  line-height: 1.65;
}

/* =========================================
   READ MORE BUTTON
========================================= */

.mif-read-more-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 14px 20px;

  background: var(--mif-white);

  color: var(--mif-green);

  border: 0;

  border-top: 1px solid var(--mif-line);

  font-family: inherit;

  font-size: 0.88rem;

  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.mif-read-more-btn:hover {
  background: var(--mif-soft);

  color: var(--mif-green-d);
}

/* =========================================
   BUTTON ICON
========================================= */

.mif-read-more-btn__icon {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  border-radius: 50%;

  background: rgba(233, 113, 54, 0.1);

  transition: transform 0.3s ease;
}

.mif-read-more-btn.is-active .mif-read-more-btn__icon {
  transform: rotate(180deg);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
  .mif-ldr {
    height: 590px;
  }

  .mif-ldr__photo {
    height: 200px;
  }

  .mif-ldr__body {
    padding: 22px 20px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {
  .mif-ldr {
    height: 560px;

    border-radius: 12px;
  }

  .mif-ldr__photo {
    height: 180px;

    font-size: 0.75rem;
  }

  .mif-ldr__body {
    padding: 20px 18px;
  }

  .mif-ldr__name {
    font-size: 1.1rem;
  }

  .mif-ldr__role {
    font-size: 0.85rem;
  }

  .mif-ldr__cred {
    font-size: 0.76rem;
  }

  .mif-ldr__bio {
    font-size: 0.9rem;

    line-height: 1.7;
  }

  .mif-read-more-btn {
    padding: 13px 16px;
  }
}

/* =========================================
   WHERE OUR PEOPLE WORK / PLACES SECTION
========================================= */

#mif-places {
  position: relative;
  overflow: hidden;
}

/* Grid spacing */
#mif-places .mif-grid {
  margin-top: 28px;
}

/* =========================================
   LOCATION CARDS
========================================= */

#mif-places .mif-card {
  position: relative;
  height: 100%;
  padding: 30px 28px;

  background: var(--mif-white);
  border: 1px solid var(--mif-line);
  border-radius: 16px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Left Accent Line */

#mif-places .mif-card::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background: var(--mif-green);

  transform: scaleY(0.25);
  transform-origin: top;

  transition: transform 0.35s ease;
}

/* Small decorative circle */

#mif-places .mif-card::after {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  top: -60px;
  right: -60px;

  border-radius: 50%;

  background: rgba(233, 113, 54, 0.07);

  transition:
    transform 0.4s ease,
    background 0.4s ease;
}

/* =========================================
   HOVER
========================================= */

#mif-places .mif-card:hover {
  transform: translateY(-8px);

  border-color: rgba(233, 113, 54, 0.45);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

/* Accent line expand */

#mif-places .mif-card:hover::before {
  transform: scaleY(1);
}

/* Decorative circle animation */

#mif-places .mif-card:hover::after {
  transform: scale(1.4);

  background: rgba(233, 113, 54, 0.1);
}

/* =========================================
   TAG
========================================= */

#mif-places .mif-tag {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;

  margin-bottom: 16px;
}

/* =========================================
   CARD TITLE
========================================= */

#mif-places .mif-h3 {
  position: relative;
  z-index: 1;

  margin-bottom: 12px;

  font-size: 1.3rem;
  font-weight: 800;

  transition: color 0.3s ease;
}

#mif-places .mif-card:hover .mif-h3 {
  color: var(--mif-green-d);
}

/* =========================================
   CARD TEXT
========================================= */

#mif-places .mif-p {
  position: relative;
  z-index: 1;

  margin: 0;

  font-size: 0.96rem;
  line-height: 1.75;

  transition: color 0.3s ease;
}

/* =========================================
   OPENING SOON CARD
========================================= */

#mif-places .mif-card[style*="border-color"] {
  border-color: rgba(184, 113, 10, 0.45) !important;
}

/* Opening soon accent */

#mif-places .mif-card[style*="border-color"]::before {
  background: var(--mif-amber);
}

/* Opening soon tag */

#mif-places .mif-card .mif-tag--grey {
  background: rgba(233, 113, 54, 0.1);
  color: var(--mif-green-d);
}

/* =========================================
   FIELD NOTE
========================================= */

#mif-places .mif-note {
  position: relative;

  margin-top: 28px;

  padding: 22px 24px;

  border-left: 4px solid var(--mif-green);

  background: var(--mif-white);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

#mif-places .mif-note:hover {
  transform: translateY(-3px);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

#mif-places .mif-note strong {
  color: var(--mif-ink);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
  #mif-places .mif-card {
    padding: 26px 24px;
  }

  #mif-places .mif-h3 {
    font-size: 1.2rem;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {
  #mif-places .mif-grid {
    margin-top: 22px;
  }

  #mif-places .mif-card {
    padding: 24px 20px;

    border-radius: 14px;
  }

  #mif-places .mif-card:hover {
    transform: translateY(-4px);
  }

  #mif-places .mif-h3 {
    font-size: 1.15rem;
  }

  #mif-places .mif-p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  #mif-places .mif-note {
    padding: 18px 18px;
    margin-top: 22px;
  }
}
/* =========================================
   JOIN US SECTION
========================================= */

#mif-join {
  position: relative;
  overflow: hidden;
}

/* Subtle background decoration */

#mif-join::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: -220px;
  right: -180px;

  border-radius: 50%;

  background: rgba(233, 113, 54, 0.07);

  pointer-events: none;
}

#mif-join::after {
  content: "";
  position: absolute;

  width: 260px;
  height: 260px;

  bottom: -150px;
  left: -100px;

  border-radius: 50%;

  background: rgba(233, 113, 54, 0.05);

  pointer-events: none;
}

/* Keep content above decorations */

#mif-join .mif-wrap {
  position: relative;
  z-index: 1;
}

/* =========================================
   HEADING AREA
========================================= */

#mif-join .mif-eyebrow {
  display: inline-flex;
  align-items: center;

  padding: 7px 13px;

  margin-bottom: 16px;

  background: rgba(233, 113, 54, 0.1);

  border-radius: 50px;
}

#mif-join .mif-h2 {
  max-width: 720px;

  margin-bottom: 18px;

  font-size: clamp(2rem, 3.5vw, 2.7rem);

  line-height: 1.2;
}

#mif-join .mif-lead {
  max-width: 780px;

  margin-bottom: 28px;

  font-size: 1.05rem;

  line-height: 1.8;
}

/* =========================================
   BUTTON AREA
========================================= */

#mif-join .mif-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

/* Primary Button */

#mif-join .mif-btn--pri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  box-shadow: 0 10px 22px rgba(233, 113, 54, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

#mif-join .mif-btn--pri:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(233, 113, 54, 0.3);
}

/* Secondary Button */

#mif-join .mif-btn--sec {
  background: transparent;
  color: var(--mif-amber);
  border-color: var(--mif-amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

#mif-join .mif-btn--sec:hover {
    background: var(--mif-amber);
    color: var(--mif-line);
    border-color: var(--mif-amber);
}

/* =========================================
   WARNING / NO FEE NOTE
========================================= */

#mif-join .mif-note--amber {
  position: relative;

  margin-top: 10px;

  padding: 24px 26px;

  border-left: 5px solid var(--mif-green);

  border-radius: 12px;

  background: #ffffff;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);

  overflow: hidden;
}

/* Accent background */

#mif-join .mif-note--amber::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 100px;
  height: 100%;

  background: linear-gradient(90deg, transparent, rgba(233, 113, 54, 0.06));

  pointer-events: none;
}

#mif-join .mif-note--amber p {
  position: relative;
  z-index: 1;

  margin: 0;

  font-size: 0.98rem;

  line-height: 1.8;
}

#mif-join .mif-note--amber strong {
  color: var(--mif-ink);
}

/* =========================================
   DISCLAIMER
========================================= */

#mif-join .mif-disclaimer {
  position: relative;

  margin-top: 26px;

  padding: 22px 24px;

  background: rgba(255, 255, 255, 0.75);

  border: 1px solid var(--mif-line);

  border-radius: 12px;

  font-size: 0.88rem;

  line-height: 1.75;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

#mif-join .mif-disclaimer:hover {
  border-color: rgba(233, 113, 54, 0.35);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

#mif-join .mif-disclaimer b {
  display: inline-block;

  margin-bottom: 4px;

  color: var(--mif-ink);

  font-weight: 800;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
  #mif-join .mif-h2 {
    max-width: 650px;
  }

  #mif-join .mif-lead {
    max-width: 100%;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {
  #mif-join::before {
    width: 280px;
    height: 280px;

    top: -150px;
    right: -150px;
  }

  #mif-join::after {
    width: 180px;
    height: 180px;
    bottom: -100px;
    left: -100px;
  }

  #mif-join .mif-eyebrow {
    padding: 6px 11px;
    font-size: 0.7rem;
  }

  #mif-join .mif-h2 {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  #mif-join .mif-lead {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  /* Buttons full width */

  #mif-join .mif-btns {
    flex-direction: column;
    gap: 12px;
  }

  #mif-join .mif-btn {
    width: 100%;
  }

  #mif-join .mif-note--amber {
    padding: 20px 18px;
    border-radius: 10px;
  }

  #mif-join .mif-note--amber p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  #mif-join .mif-disclaimer {
    padding: 18px;
    font-size: 0.82rem;
    line-height: 1.7;
  }
}
