.people-section {
  width: 100%;
  min-height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vh, 100px) 0;
}

/* Decorative rectangles - Left */
.people-decor-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.people-decor-left .decor-rect {
   width: 600px;
  height: 360;
  max-width: 100%;
  transform: rotate(90deg) translateX(50px);
  transform-origin: center;
}


/* Decorative rectangles - Right */
.people-decor-right {
  position: absolute;
  right: 0;
  top: 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.people-decor-right .decor-rect {
  width: 600px;
  height: 360;
  max-width: 100%;
  transform: rotate(90deg) translateX(50px);
  transform-origin: center;
  margin-left: 1000px;
  margin-right: -80px;
}


/* Main container */
.people-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(80px, 10vw, 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 4vh, 50px);
  position: relative;
  z-index: 2;
}

/* Title */
.people-title {
  font-family: 'Headline', sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: white;
  text-align: center;
}

.people-title-red {
  color: #F40000;
}

/* Founders grid */
.people-founders {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 120px);
  width: 100%;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.founder-image-wrapper {
  width: clamp(200px, 25vw, 300px);
  height: clamp(250px, 30vw, 350px);
  overflow: hidden;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.founder-card:hover .founder-image {
  filter: grayscale(0%);
}

.founder-name {
  font-family: 'Headline', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  color: white;
  margin: 0;
  text-align: center;
}

.founder-title {
  font-family: 'Basic text 2', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: white;
  margin: 0;
  text-align: center;
  opacity: 0.9;
}

/* Description */
.people-description {
  max-width: 900px;
  text-align: center;
}

.people-text {
  font-family: 'Basic text 2', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: white;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.people-text strong {
  font-family: 'Basic text', sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* Footer */
.people-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: clamp(20px, 4vh, 40px);
}

.footer-brand {
  font-family: 'Basic text', sans-serif;
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-line {
  flex: 1;
  height: 1px;
  background-color: white;
  margin: 0 20px;
  opacity: 0.5;
}

.footer-type {
  font-family: 'Basic text', sans-serif;
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: white;
  font-weight: 400;
  letter-spacing: 1px;
}


/* Responsive */
@media (max-width: 768px) {
  .people-founders {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .people-decor-left,
  .people-decor-right {
    display: none;
  }

  .people-container {
    padding: 0 clamp(20px, 5vw, 40px);
  }
}
