.people-section {
  width: 80vw;
  margin: 12rem auto 6rem;
}

.people-inner {
  width: 100%;
  margin: 0 auto;
}

.people-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.people-title-block {
  display: flex;
  flex-direction: column;
}

.people-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin: 0;
}

.people-subtitle {
    font-size: 0.94rem;
    color: #666;
    margin-top: 0.6rem;
    font-weight: 500;
}

.people-filter {
  margin: 0;
}

.people-filter select {
  min-width: 160px;
  border: 1px solid #d5d5d5;
  border-radius: 999px;
  padding: 0.9rem 3rem 0.9rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20'%3e%3cpath fill='%23666' d='M5 7l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 14px;
  cursor: pointer;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.people-card {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  min-height: 235px;
  padding: 0 1.6rem;
  border: 1px solid #d9d9d9;
  border-radius: 28px;
  background: #fafafa;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.people-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  background: #fff;
}

.people-card__thumb {
  flex: 0 0 175px;
  width: 175px;
}

.people-card__thumb img {
  width: 100%;
  aspect-ratio: 3 / 2.5;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #eee;
}

.people-card__body {
  flex: 1;
  min-width: 0;
}

.people-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.people-card__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: #eef5e8;
  color: #5f7d3a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.people-card__area {
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
}

.people-card__title {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.6;
  color: #111;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.people-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.people-card__company,
.people-card__name {
  font-size: 0.9rem;
  line-height: 1.2;
  color: #555;
  margin: 0;
}

.people-card__button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 29px;
    border: 1px solid #cfd5dc;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.people-card:hover .people-card__button {
  background: #111;
  color: #fff;
  border-color: #111;
}

.people-empty {
  padding: 4rem 1rem;
  text-align: center;
  color: #666;
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .people-section {
    width: 86vw;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .people-section {
    width: 90%;
    margin: 6rem auto 5rem;
  }

  .people-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .people-title {
    font-size: 2.6rem;
  }

  .people-subtitle {
    font-size: 0.95rem;
  }

  .people-filter,
  .people-filter select {
    width: 100%;
  }

  .people-grid {
    gap: 1rem;
  }

  .people-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1rem;
    padding: 1rem;
    min-height: auto;
    border-radius: 20px;
  }

  .people-card__thumb {
    width: 88px;
    flex: none;
  }

  .people-card__title {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }

  .people-card__company,
  .people-card__name {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .people-card__button {
    grid-column: 1 / -1;
    width: 100%;
    height: 46px;
    font-size: 1rem;
  }
}