@charset "utf-8";

body {
  font-family: sans-serif;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.language {
  text-align: right;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.profile img {
  max-width: 30%;
  height: auto;
  border-radius: 0.8rem;
}

.profile-details {
  display: flex;
  flex-direction: column;
}

.name {
  text-align: center;
  font-size: 3rem;
}

.organization-email {
  line-height: 3rem;
  font-size: 1.5rem;
}

.section {
  background-color: whitesmoke;
  padding: 0.5rem;
  padding-left: 1rem;
  margin-bottom: 0;
  font-size: 1.5rem;
  border-left: 0.3rem solid black;
}

.section-content {
  line-height: 2rem;
  margin: 0.5rem 0 1rem 0;
  padding-left: 2.5rem;
}

.section-content_bio_award {
  line-height: 2rem;
  padding-left: 2.5rem;
  display: flex
}

.year-month_bio {
  width: 12rem
}

.year-month_award {
  width: 6rem;
}

.bio_award {
  max-width: 80%;
}

.list {
  color: black;
  line-height: 1.8rem;
}

.list_sub {
  margin: 0 0 1rem 0;
  line-height: 1.5rem;
}

.list_detail {
  margin: 0.1rem 0 0.1rem 0;
  font-size: 0.9rem;
  line-height: 1.5rem;
}

.paper_title {
  font-weight: bold;
  margin: 0;
}

.publication_link {
  text-decoration: none;
  color: black
}

.author {
  display: flex;
  justify-content: space-between;
}

.graphycal {
  text-align: center;
  flex-basis: 30%
}

.graphycal img {
  max-width: 50%;
  height: auto;
}

.award {
  box-sizing: border-box;
  color: rgb(147, 46, 68);
  font-weight: bold;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media screen and (max-width: 440px) {
  .profile {
    display: block;
    align-items: center;
    margin: 0;
    text-align: center;
  }

  .profile img {
    max-width: 75%;
    height: auto;
  }

  .name {
    font-size: 1.5rem;
    text-align: center;
  }

  .organization-email {
    line-height: 1.5rem;
    font-size: 1rem;
    text-align: center;
  }

  .section {
    font-size: 1rem;
    border-left: 0.3rem solid black;
  }  

  .section-content {
    font-size: 0.8rem;
    padding-left: 0;
  }

  .section-content_bio_award {
    font-size: 0.8rem;
    padding-left: 0;
    line-height: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
  }
  
  .year-month_bio {
    max-width: 30%;
    margin-right: 0.5rem
  }

  .bio_award {
    width: 70%;
  }
  
  .year-month_award {
    max-width: 30%;
    margin-right: 0.5rem
  }

  .list {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    line-height: 1rem;
  }

  .list_sub {
    font-size: 0.8rem;
    line-height: 1rem;
  }

  .list_detail {
    font-size: 0.8em;
    line-height: 1rem;
  }

  .award {
    font-size: 0.8rem;
    line-height: 1rem;
  }
  .graphycal img {
    max-width: 90%;
  }
  
}