.founder-quote-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px 0;
  padding: 0 24px;
}

.founder-quote-card {
  background: linear-gradient(120deg, #b08a3c, #8a6a2a, #e1c16e, #c49a3a, #7a5c23, #b08a3c);
  background-size: 200% 200%;
  animation: gold-gradient-move 14s ease-in-out infinite;
  border-radius: 48px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  min-height: 220px;
  box-shadow: 0 8px 32px rgba(80,40,20,0.13);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  margin: 0 auto;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@keyframes gold-gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 75% 50%; }
  100% { background-position: 0% 50%; }
}

.founder-quote-card:hover {
  box-shadow: 0 16px 48px rgba(232,117,54,0.18), 0 8px 32px rgba(80,40,20,0.18);
  transform: translateY(-4px) scale(1.02);
}

/* Force mobile-like layout (photo on top, centered) on larger screens */
.founder-quote-card.photo-top {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.founder-quote-card.photo-top .founder-quote-photo {
  margin-right: 0;
  margin-bottom: 18px;
}
.founder-quote-card.photo-top .founder-quote-content,
.founder-quote-card.photo-top .founder-quote-meta,
.founder-quote-card.photo-top .founder-quote-text {
  margin-left: 0;
}
.founder-quote-card.photo-top::before {
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
  font-size: 4.5rem;
}

.founder-quote-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  left: 120px;
  font-size: 7rem;
  color: rgba(255,255,255,0.13);
  font-family: serif;
  z-index: 0;
  pointer-events: none;
}

/* subtle dark overlay to improve text contrast */
.founder-quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.18), rgba(0,0,0,0.12));
  z-index: 0;
  pointer-events: none;
}

.founder-quote-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  box-shadow: 0 2px 12px rgba(80,40,20,0.10);
  border: 4px solid #fff3ea;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.founder-quote-photo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.founder-quote-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.founder-quote-text {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 32px;
  margin-left: 16px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  text-shadow: 0 2px 10px rgba(0,0,0,0.22);
}

.founder-quote-meta {
  margin-left: 16px;
  margin-top: auto;
}

.founder-quote-meta .founder-quote-name {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-top: 12px;
  position: relative;
}

.founder-quote-meta .founder-quote-name::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffd700 0%, #ffb98a 100%);
  margin-bottom: 8px;
}

.founder-quote-meta .founder-quote-title {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .founder-quote-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    border-radius: 32px;
    min-height: 0;
  }
  .founder-quote-photo {
    margin-right: 0;
    margin-bottom: 18px;
  }
  .founder-quote-content {
    margin-left: 0;
  }
  .founder-quote-meta, .founder-quote-text {
    margin-left: 0;
  }
  .founder-quote-card::before {
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    font-size: 4.5rem;
  }
}

@media (max-width: 600px) {
  .founder-quote-section {
    padding: 0 5vw;
  }
  .founder-quote-card {
    padding: 24px 20px;
    border-radius: 24px;
    width: 100%;
  }
  .founder-quote-photo {
    width: 70px;
    height: 70px;
  }
  .founder-quote-photo img {
    width: 62px;
    height: 62px;
  }
  .founder-quote-text {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }
  .founder-quote-meta .founder-quote-name {
    font-size: 0.9rem;
  }
  .founder-quote-meta .founder-quote-title {
    font-size: 0.85rem;
  }
} 