.person-page {
  padding: 0 0 40px;
}
.breadcrumb {
  margin-bottom: 40px;
}
.person-detail {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}
.person-avatar {
  flex: 0 0 300px;
}
.person-avatar img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.person-info {
  flex: 1;
}
.person-info h1 {
  font-size: 32px;
  font-weight: 700;
  color: #252525;
  margin: 0 0 10px;
}
.person-info .person-title {
  font-size: 20px;
  color: #e60012;
  font-weight: 500;
  margin: 0 0 20px;
}
.person-info .person-type {
  display: inline-block;
  padding: 5px 15px;
  background: #f2f2f2;
  color: #666;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}
.person-info .contact-info {
  margin-bottom: 30px;
}
.person-info .contact-info p {
  margin: 0 0 10px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}
.person-info .contact-info p i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.person-info .person-bio {
  margin-bottom: 30px;
}
.person-info .person-bio h3 {
  font-size: 20px;
  color: #252525;
  margin: 0 0 15px;
  position: relative;
  padding-bottom: 10px;
}
.person-info .person-bio h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #e60012;
}
.person-info .person-bio p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 15px;
}
.recommended-members {
  margin-top: 50px;
}
.recommended-members h2 {
  font-size: 24px;
  font-weight: 700;
  color: #252525;
  margin: 0 0 30px;
  position: relative;
  padding-bottom: 15px;
}
.recommended-members h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #e60012;
}
.recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.recommended-member {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f2f2f2;
}
.recommended-member:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.recommended-member .member-avatar {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.recommended-member .member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.recommended-member .member-info {
  padding: 20px;
}
.recommended-member .member-info .member-name {
  font-size: 18px;
  font-weight: 700;
  color: #252525;
  margin: 0 0 5px;
}
.recommended-member .member-info .member-title {
  font-size: 14px;
  color: #e60012;
  margin: 0 0 10px;
  font-weight: 500;
}
.recommended-member .member-info .member-link {
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
  background: #252525;
  color: #fff;
  width: 100%;
  flex: 1;
  padding: 8px 0;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .recommended-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .person-detail {
    flex-direction: column;
    gap: 30px;
  }
  .person-avatar {
    flex: 0 0 auto;
    max-width: 400px;
    margin: 0 auto;
  }
  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .person-page {
    margin-top: 20px;
  }
  .person-info h1 {
    font-size: 28px;
  }
  .person-info .person-title {
    font-size: 18px;
  }
  .recommended-grid {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=person.css.map */