@import url('https://fonts.googleapis.com/css?family=Lato');

/*
 - Common styles
*/

/* HTML body */
body {
  font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Footer (copyright, Yonsei logo) */
footer p {
  clear: left;
  margin-bottom: 0;
  color: #888888;
}
.footer-copyright { /* Copyright */
  display: block;
}
.footer-logo { /* Logo */
  display: block;
  margin-bottom: 8px;
}
.footer-logo img { /* Logo image */
  width: auto;
  height: 36px;
}
@media (min-width: 768px) {
  .footer-copyright { /* Copyright (PC) */
    float: right !important;
  }
  .footer-logo { /* Logo (PC) */
    float: left !important;
  }
}

/* List with numbering */
ol {
  line-height: 1.6;
}
/* List with dots */
ul {
  line-height: 1.6;
}

/* External link (having upper-right arrow) */
.external-link {
  margin-right: 2px;
}
.external-link:before {
  margin-left: 2px;
  font-family: FontAwesome;
  content: "\f14c";
}

/* For "Honor/Bronze/Silver/Gold prize" texts */
.honor-medal {
  font-weight: bold;
  color: #000066;
}
.bronze-medal {
  font-weight: bold;
  color: #aa7942;
}
.silver-medal {
  font-weight: bold;
  color: #999999;
}
.gold-medal {
  font-weight: bold;
  color: #ff9300;
}

/* Subheader for each list */
.subheader {
  font-weight: 600;
  font-size: 19px;
}


/*
 - Home (index.html)
*/

/* Profile area */
.main-header {
  background-color: #e7e7e7;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 32px;
}
.main-header-title { /* Title (Chan-Byoung Chae @ Yonsei University */
  font-weight: 350;
  font-size: 32px;
  margin-bottom: 24px;
}
.main-header-yonsei-logo { /* Title Yonsei logo */
  width: 44px;
  height: 44px;
  margin-left: 4px;
}
.main-header-image { /* Profile image container */
  display: block;
}
.main-header-image .thumbnail { /* Profile image */
  width: 248px;
}
@media (min-width: 768px) {
  .main-header-image { /* Profile image (PC) */
    position: relative;
    float: left;
    margin-right: 32px;
    width: 248px;
  }
}
.main-header-body { /* Profile texts */
  float: left;
  font-size: 16px;
}
.main-header-links { /* Profile bottom links (LinkedIn, Math Genealogy, etc.) */
  width: 100%;
  float: left;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-header-links .fa { /* Profile bottom link icons */
  display: block;
  font-size: 20px;
}
@media (min-width: 768px) {
  .main-header-links { /* Profile bottom links (PC) */
    font-size: 16px;
  }
  .main-header-links .fa { /* Profile bottom link icons (PC) */
    font-size: 24px;
  }
}
.main-header-links a { /* Profile bottom link texts */
  text-decoration: none !important;
  color: #222222;
}
.main-header-links a:hover { /* Profile bottom link texts (when mouse is hovered) */
  color: #666666;
}

/* News header (Month/Year) */
.main-news-header {
  width: 1px;
  white-space: nowrap;
  font-weight: bold;
  text-align: right;
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}
/* News text */
.main-news-body {
  width: auto;
  text-align: justify;
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}
/* News text links */
.main-news-body a:not(:hover) {
  text-decoration: none !important;
}
/* News spacer (vertical) */
.main-news-spacer {
  height: 24px;
}

/* Short bio */
.main-bio {
  text-align: justify;
  line-height: 1.6;
}


/*
 - Group (research_group.html)
*/

/* Member profile image */
.members .media-object {
  border: 1px solid #eeeeee;
  border-radius: 4px;
  padding: 4px;
  width: 120px;
}


/*
 - Photos (photos.html)
*/

/* Photo container */
#photos .thumbnail {
  text-align: center;
  overflow: hidden;
}
/* Photo image */
#photos .thumbnail .photos-image-area {
  height: 240px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
/* Photo title text */
#photos .thumbnail .photos-text-area {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
