/* ===========================================
   FOUNDERS PAGE STYLES
   =========================================== */

/* Founder Card */
.founder-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  flex: 1 1 40%;
  min-width: 300px;
  max-width: 500px;
  box-sizing: border-box;
  background-color: #ffffff;
  width: 100%;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.founder-card h3 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 10px;
}

.founder-role {
  font-weight: bold;
  font-size: 1.1em;
  color: var(--primary-green);
  margin-bottom: 15px;
  color: #2e7d32;
  margin: 10px 0 14px;
}

.founder-bio {
  text-align: justify;
  font-size: 1em;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 14px;
}

.founder-img {
  display: block;
  max-width: 100%;
  width: 180px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  border: 4px solid var(--primary-green);
}

/* Quote Styles */
.highlight-quote-founders {
  max-width: 800px;
  margin: 20px auto;
  padding: 16px 24px;
  font-style: italic;
  background-color: #f1f1f1;
  border-left: 6px solid var(--primary-green, #2e7d32);
  color: #444;
  text-align: center;
  font-size: 1.05rem;
  border-radius: 6px;
  margin-bottom: -1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .founder-card {
    margin: 0 auto 20px auto;
  }
}
