/* 
 * Minimal compressed styles for Lex Fridman MIT Research Page
 */
/* Reset and base styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  margin: 0;
  padding: 0;
}

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

/* Profile header with photo */
.profile-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.profile-header .profile-photo {
  flex-shrink: 0;
}
.profile-header .profile-photo img {
  width: 150px;
  height: auto;
  display: block;
  border-radius: 4px;
}
.profile-header .profile-info {
  flex-grow: 1;
}
.profile-header .profile-info p {
  margin: 0 0 12px 0;
  line-height: 1.5;
}
.profile-header .profile-info p:last-child {
  margin-bottom: 0;
}
.profile-header .profile-info strong {
  color: #000;
  font-weight: 600;
}
.profile-header .profile-info .pronunciation {
  color: #666;
  font-size: 13px;
  font-style: italic;
}
.profile-header .profile-info a {
  color: #0066cc;
  text-decoration: none;
}
.profile-header .profile-info a:hover {
  text-decoration: underline;
}
.profile-header .profile-info .compact-links {
  margin-top: 15px;
  font-size: 13px;
}

/* Publications section */
.publications h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
  padding-bottom: 10px;
}
.publications h2 .scholar-link {
  font-size: 14px;
  font-weight: normal;
}
.publications h2 .scholar-link a {
  color: #0066cc;
  text-decoration: none;
}
.publications h2 .scholar-link a:hover {
  text-decoration: underline;
}
.publications .publications-grid .publication {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fafafa;
}
.publications .publications-grid .publication .pub-title {
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #000;
}
.publications .publications-grid .publication .pub-summary {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.4;
}
.publications .publications-grid .publication .pub-summary .summary-label {
  color: #003366;
  font-weight: 600;
}
.publications .publications-grid .publication .pub-links {
  font-size: 13px;
}
.publications .publications-grid .publication .pub-links a {
  color: #0066cc;
  text-decoration: none;
}
.publications .publications-grid .publication .pub-links a:hover {
  text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .profile-header {
    flex-direction: column;
  }
  .profile-header .profile-photo img {
    width: 120px;
  }
  body {
    font-size: 13px;
  }
  .publications h2 {
    font-size: 16px;
  }
}
/* Remove Pico CSS overrides */
main.container {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* Minimal link styling */
a {
  color: #0066cc;
}
a:visited {
  color: #0066cc;
}
a:focus {
  outline: 2px solid #800020;
  outline-offset: 1px;
}

/* Footer links - subtle and centered */
.footer-links {
  text-align: center;
  padding: 2rem 0 1rem;
  font-size: 0.7rem;
  color: #999;
}
.footer-links a {
  color: #999;
  text-decoration: none;
}
.footer-links a:hover {
  color: #666;
  text-decoration: underline;
}
.footer-links .separator {
  margin: 0 0.5rem;
  color: #ccc;
}

/* BibTeX Modal Styles */
.tingle-modal .bibtex-modal .tingle-modal-box__content {
  padding: 20px;
}
.tingle-modal pre {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.4;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.tingle-modal-box {
  max-width: 600px;
}

/* Print styles */
@media print {
  .profile-photo {
    display: none;
  }
  .publication {
    page-break-inside: avoid;
  }
  a {
    color: #000 !important;
    text-decoration: underline;
  }
}

/*# sourceMappingURL=style.css.map */
