/* Clean Academic Portfolio Style */
/* Inspired by Jon Barron, Deepak Pathak, Jonas Kulhanek */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 15px;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

a {
  color: #0000EE;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: normal;
  color: #000000;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

h2 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 15px;
}

/* Profile Section - Table Style */
.profile {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}

.profile img {
  display: table-cell;
  vertical-align: top;
  width: 180px;
  height: auto;
  border-radius: 10px;
  margin-right: 25px;
}

.profile-info {
  display: table-cell;
  vertical-align: top;
  padding-left: 25px;
}

.profile-bio {
  font-size: 15px;
  margin-bottom: 12px;
  text-align: justify;
}

.social-links {
  margin-top: 10px;
  font-size: 14px;
}

.social-links a {
  margin-right: 8px;
}

.social-links a::after {
  content: " /";
  color: #666;
  margin-left: 8px;
}

.social-links a:last-child::after {
  content: "";
}

/* Publications - Table Layout */
.publication-list {
  margin-top: 10px;
}

.publication-card {
  display: table;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}

.publication-card:last-child {
  border-bottom: none;
}

.pub-media {
  display: table-cell;
  vertical-align: top;
  width: 200px;
  padding-right: 20px;
}

.pub-media video,
.pub-media img {
  width: 200px;
  height: auto;
  border-radius: 4px;
  background: #f5f5f5;
}

.pub-content {
  display: table-cell;
  vertical-align: top;
  font-size: 14px;
}

.pub-title {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.pub-authors {
  color: #333;
  margin-bottom: 3px;
}

.pub-venue {
  font-style: italic;
  color: #555;
  margin-bottom: 8px;
}

.pub-links a {
  margin-right: 6px;
  font-size: 13px;
}

.pub-links a::after {
  content: " /";
  color: #999;
  margin-left: 6px;
}

.pub-links a:last-child::after {
  content: "";
}

/* Mobile Responsive */
@media (max-width: 650px) {
  .profile {
    display: block;
    text-align: center;
  }

  .profile img {
    display: block;
    margin: 0 auto 15px auto;
    width: 150px;
  }

  .profile-info {
    display: block;
    padding-left: 0;
    text-align: left;
  }

  .profile-bio {
    text-align: left;
  }

  .publication-card {
    display: block;
  }

  .pub-media {
    display: block;
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .pub-media video,
  .pub-media img {
    width: 100%;
    max-width: 300px;
  }

  .pub-content {
    display: block;
  }
}