 :root {
      --primary: #07124D;
      --text: #444;
      --max-width: 1200px;
    }

    body {
      margin: 0;
      padding: 0;
      background: #fff;
      color: var(--text);
    }

    .mentors {
      padding: 60px 20px;
    }

    .mentors-container {
      max-width: var(--max-width);
      margin: auto;
      text-align: center;
    }

.section-intro {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.section-box {
     width: 12px;
    height: 12px;
  background-color: #07124D; /* Use your primary color */
  border-radius: 2px;
}

.section-label {
  font-size: 1rem;
  font-weight: 600;
  color: #07124D; /* Match your primary color */
  font-family: "Syne", sans-serif;
}

    .mentors h2 {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 20px;
      font-family: "Syne", sans-serif;
      text-align: left;
      font-weight: 400;
    }

    .mentors p.description {
    margin: 0 auto 8rem;
           font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
  
    
    }

    .mentor-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      justify-items: center;
    }

    .mentor-card {
      max-width: 240px;
      text-align: center;
    }

    .mentor-card img {
      width: 200px;
      height: 200px;
      object-fit: cover;
    }
     .mentor-card .mentor-image {
      width: 200px;
      height: 200px;
      object-fit: cover;
      /* border:3px solid #07124D;
      border-radius: 50%; */
    }


    .mentor-card h3 {
      margin-top: 15px;
      font-size: 1.1rem;
      color: var(--primary);
       font-family: "Syne", sans-serif;
       text-decoration: underline;
    }

    .mentor-card p {
      font-size: 0.7rem;
      color: #555;
      line-height: 1.5;
         margin-top: 1rem;
          font-family: "poppins", sans-serif;
    }

    /* Breakpoints */
    @media (min-width: 600px) {
      .mentor-grid {
        grid-template-columns: repeat(2, 1fr);
      }
       .section-label {
    font-size: 14px;
    color: #07124D;
      font-family: "poppins", sans-serif;
  }

  .section-box {
          width: 12px;
        height: 12px;
         background-color: #07124D;
  }
    }

    @media (min-width: 900px) {
      .mentor-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .mentors h2 {
        font-size: 2rem;
        text-align: left;
         font-family: "Syne", sans-serif;
        font-weight: 400;
      }

      .mentor-card h3 {
               font-size: 1.3rem;
        font-weight: 500;
         font-family: "Syne", sans-serif;
         text-decoration: underline;
      }
    }