.main {
    margin-top: 50px;
    padding: 0 80px;
    font-size: 30px;
    background-color: #fdfdfd;
}

.main h1 {
    text-align: center;
    font-size:55px;
}

.member-block {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  border-bottom: 2px solid #ddd;
  font-family: Arial, sans-serif;
}

.role {
  text-align: center;
  font-size: 30px;
  color: #444;
  margin-bottom: 8px;
}

.name {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.member-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 25px;
}

.photo img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.description {
  flex: 1;
  font-size: 20px;
  line-height: 1.4;
  text-align: justify;
}

.description p {
    margin-bottom: 8px;
}