@charset "UTF-8";
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent-color, #007acc);
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  font-size: 14px; }
  .skip-link:focus {
    top: 6px; }

.avatar-image img {
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
  @media (max-width: 768px) {
    .avatar-image img {
      height: 200px;
      width: auto;
      display: block;
      margin: 0 auto; } }
.demo-image img {
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
  @media (max-width: 768px) {
    .demo-image img {
      height: 200px;
      width: auto;
      display: block;
      margin: 0 auto; } }
.heading-logo {
  height: 80px;
  vertical-align: middle;
  margin-right: 15px; }
  @media (max-width: 768px) {
    .heading-logo {
      height: 50px;
      margin-right: 10px; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

@media (prefers-contrast: high) {
  .publication-item {
    border: 2px solid currentColor;
    background: transparent; }
  .skip-link {
    background: ButtonText;
    color: ButtonFace;
    border: 2px solid currentColor; } }

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent-color, #007acc);
  outline-offset: 2px; }

iframe.pdf-viewer {
  width: 100% !important;
  height: 90vh !important;
  min-height: 800px !important;
  border: 1px solid var(--border-color, #ccc) !important;
  border-radius: 8px !important; }
  @media (max-width: 768px) {
    iframe.pdf-viewer {
      height: 85vh !important;
      min-height: 600px !important; } }
  @media (max-width: 480px) {
    iframe.pdf-viewer {
      height: 80vh !important;
      min-height: 500px !important; } }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.publications-list {
  list-style: none;
  padding: 0; }
  .publications-list .publication-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 3px solid var(--border-color, #e1e5e9);
    background: var(--card-background, #f8f9fa);
    border-radius: 4px; }
    .publications-list .publication-item.highlight {
      border-left-color: var(--accent-color, #007acc); }
    .publications-list .publication-item strong {
      color: var(--heading-color, #212529); }
    .publications-list .publication-item em {
      color: var(--text-muted, #6c757d); }
    .publications-list .publication-item a {
      font-size: 0.9rem;
      word-break: break-all; }

.breadcrumb-nav {
  margin-bottom: 1rem; }
  .breadcrumb-nav .breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem; }
    .breadcrumb-nav .breadcrumb .breadcrumb-item:not(:last-child):after {
      content: "›";
      margin: 0 0.5rem;
      color: var(--text-muted, #6c757d); }
    .breadcrumb-nav .breadcrumb .breadcrumb-item a {
      color: var(--link-color, #007acc);
      text-decoration: none; }
      .breadcrumb-nav .breadcrumb .breadcrumb-item a:hover {
        text-decoration: underline; }
    .breadcrumb-nav .breadcrumb .breadcrumb-item.active {
      color: var(--text-muted, #6c757d); }

@media (max-width: 768px) {
  .content {
    padding: 1rem; }
  .publications-list .publication-item {
    padding: 0.75rem;
    margin-bottom: 1rem; }
    .publications-list .publication-item a {
      font-size: 0.8rem; }
  .breadcrumb-nav .breadcrumb {
    font-size: 0.8rem; } }

.content:has(.hero-fullscreen) {
  flex-direction: column; }

.hero-fullscreen {
  min-height: calc(100vh - 10rem);
  min-height: calc(100dvh - 10rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 6rem; }
  .hero-fullscreen > .container.centered {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center; }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #9e9e9e;
  animation: bounce 2s ease infinite;
  opacity: 0.8; }
  .scroll-hint svg {
    display: block;
    width: 3rem;
    height: 3rem; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0); }
  40% {
    transform: translateX(-50%) translateY(-8px); }
  60% {
    transform: translateX(-50%) translateY(-4px); } }

.home-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: left; }

.home-section {
  margin-bottom: 5rem; }
  .home-section:last-child {
    margin-bottom: 0; }
  .home-section h2 {
    font-weight: 600;
    font-size: 2.8rem;
    margin: 0 0 2rem;
    color: #212121; }
  .home-section p {
    font-size: 1.8rem;
    line-height: 1.75;
    color: #424242; }

.research-focus p {
  max-width: 64rem; }
  .research-focus p strong {
    color: #1565c0;
    font-weight: 600; }

.news-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative; }
  .news-timeline::before {
    content: "";
    position: absolute;
    left: 7.4rem;
    top: 0.8rem;
    bottom: 0.8rem;
    width: 1px;
    background: #e0e0e0; }
  .news-timeline li {
    display: flex;
    align-items: baseline;
    padding: 1rem 0;
    font-size: 1.7rem;
    line-height: 1.6;
    position: relative; }
    .news-timeline li:first-child {
      padding-top: 0; }
    .news-timeline li:last-child {
      padding-bottom: 0; }
  .news-timeline .news-date {
    flex: 0 0 7rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1565c0;
    text-align: right;
    padding-right: 2rem;
    position: relative; }
    .news-timeline .news-date::after {
      content: "";
      position: absolute;
      right: 0.7rem;
      top: 0.65em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #1565c0; }
  .news-timeline .news-body {
    flex: 1;
    padding-left: 1.5rem;
    color: #424242; }
    .news-timeline .news-body a {
      color: #1565c0;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease; }
      .news-timeline .news-body a:hover, .news-timeline .news-body a:focus {
        border-bottom-color: #1565c0; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; }
  @media only screen and (max-width: 768px) {
    .results-grid {
      grid-template-columns: 1fr;
      gap: 1.6rem; } }
.result-card {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2.4rem 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; }
  .result-card:hover {
    border-color: #1565c0;
    box-shadow: 0 2px 12px rgba(21, 101, 192, 0.08); }
  .result-card .result-value {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: #1565c0; }
  .result-card .result-desc {
    margin-top: 0.6rem;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #757575; }

body.colorscheme-dark .scroll-hint,
body.colorscheme-auto[data-theme="dark"] .scroll-hint {
  color: #616161; }

body.colorscheme-dark .home-section h2,
body.colorscheme-auto[data-theme="dark"] .home-section h2 {
  color: #dadada; }

body.colorscheme-dark .home-section p,
body.colorscheme-auto[data-theme="dark"] .home-section p {
  color: #bdbdbd; }

body.colorscheme-dark .research-focus p strong,
body.colorscheme-auto[data-theme="dark"] .research-focus p strong {
  color: #42a5f5; }

body.colorscheme-dark .news-timeline::before,
body.colorscheme-auto[data-theme="dark"] .news-timeline::before {
  background: #424242; }

body.colorscheme-dark .news-timeline .news-date,
body.colorscheme-auto[data-theme="dark"] .news-timeline .news-date {
  color: #42a5f5; }
  body.colorscheme-dark .news-timeline .news-date::after,
  body.colorscheme-auto[data-theme="dark"] .news-timeline .news-date::after {
    background: #42a5f5; }

body.colorscheme-dark .news-timeline .news-body,
body.colorscheme-auto[data-theme="dark"] .news-timeline .news-body {
  color: #bdbdbd; }
  body.colorscheme-dark .news-timeline .news-body a,
  body.colorscheme-auto[data-theme="dark"] .news-timeline .news-body a {
    color: #42a5f5; }
    body.colorscheme-dark .news-timeline .news-body a:hover, body.colorscheme-dark .news-timeline .news-body a:focus,
    body.colorscheme-auto[data-theme="dark"] .news-timeline .news-body a:hover,
    body.colorscheme-auto[data-theme="dark"] .news-timeline .news-body a:focus {
      border-bottom-color: #42a5f5; }

body.colorscheme-dark .result-card,
body.colorscheme-auto[data-theme="dark"] .result-card {
  border-color: #424242;
  background: #2a2a2a; }
  body.colorscheme-dark .result-card:hover,
  body.colorscheme-auto[data-theme="dark"] .result-card:hover {
    border-color: #42a5f5;
    box-shadow: 0 2px 12px rgba(66, 165, 245, 0.1); }
  body.colorscheme-dark .result-card .result-value,
  body.colorscheme-auto[data-theme="dark"] .result-card .result-value {
    color: #42a5f5; }
  body.colorscheme-dark .result-card .result-desc,
  body.colorscheme-auto[data-theme="dark"] .result-card .result-desc {
    color: #9e9e9e; }

@media (prefers-color-scheme: dark) {
  body.colorscheme-auto .scroll-hint {
    color: #616161; }
  body.colorscheme-auto .home-section h2 {
    color: #dadada; }
  body.colorscheme-auto .home-section p {
    color: #bdbdbd; }
  body.colorscheme-auto .research-focus p strong {
    color: #42a5f5; }
  body.colorscheme-auto .news-timeline::before {
    background: #424242; }
  body.colorscheme-auto .news-timeline .news-date {
    color: #42a5f5; }
    body.colorscheme-auto .news-timeline .news-date::after {
      background: #42a5f5; }
  body.colorscheme-auto .news-timeline .news-body {
    color: #bdbdbd; }
    body.colorscheme-auto .news-timeline .news-body a {
      color: #42a5f5; }
      body.colorscheme-auto .news-timeline .news-body a:hover, body.colorscheme-auto .news-timeline .news-body a:focus {
        border-bottom-color: #42a5f5; }
  body.colorscheme-auto .result-card {
    border-color: #424242;
    background: #2a2a2a; }
    body.colorscheme-auto .result-card:hover {
      border-color: #42a5f5;
      box-shadow: 0 2px 12px rgba(66, 165, 245, 0.1); }
    body.colorscheme-auto .result-card .result-value {
      color: #42a5f5; }
    body.colorscheme-auto .result-card .result-desc {
      color: #9e9e9e; } }

@media only screen and (max-width: 768px) {
  .hero-fullscreen {
    min-height: 100dvh;
    min-height: 100vh; }
  .scroll-hint {
    bottom: 2rem; }
  .home-content {
    padding: 4rem 1.6rem; }
  .home-section {
    margin-bottom: 4rem; }
    .home-section h2 {
      font-size: 2.4rem; }
  .news-timeline::before {
    display: none; }
  .news-timeline li {
    flex-direction: column;
    padding: 1.2rem 0; }
  .news-timeline .news-date {
    flex: none;
    text-align: left;
    padding-right: 0;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em; }
    .news-timeline .news-date::after {
      display: none; }
  .news-timeline .news-body {
    padding-left: 0; }
  .result-card {
    padding: 2rem; }
    .result-card .result-value {
      font-size: 2.4rem; } }

.container.list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr; }

.post-card {
  margin-bottom: 1.6rem;
  width: 100%;
  display: flex; }

.post-card-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 16rem;
  padding: 2rem 2.4rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; }
  .post-card-link:hover, .post-card-link:focus {
    border-color: #1565c0;
    box-shadow: 0 2px 12px rgba(21, 101, 192, 0.08); }

.post-card-date {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1565c0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem; }

.post-card-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  color: #212121;
  margin-bottom: 0.6rem; }
  .post-card-title strong {
    font-weight: 700; }

.post-card-desc {
  display: block;
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #757575;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.post-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; }

.post-card-tag {
  font-size: 1.1rem;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  background: #f0f4f8;
  color: #546e7a;
  font-weight: 500; }

.container.post .post-title h1.title {
  font-weight: 400; }
  .container.post .post-title h1.title strong {
    font-weight: 700; }

body.colorscheme-dark .post-card-link,
body.colorscheme-auto[data-theme="dark"] .post-card-link {
  border-color: #424242;
  background: #2a2a2a; }
  body.colorscheme-dark .post-card-link:hover, body.colorscheme-dark .post-card-link:focus,
  body.colorscheme-auto[data-theme="dark"] .post-card-link:hover,
  body.colorscheme-auto[data-theme="dark"] .post-card-link:focus {
    border-color: #42a5f5;
    box-shadow: 0 2px 12px rgba(66, 165, 245, 0.1); }

body.colorscheme-dark .post-card-date,
body.colorscheme-auto[data-theme="dark"] .post-card-date {
  color: #42a5f5; }

body.colorscheme-dark .post-card-title,
body.colorscheme-auto[data-theme="dark"] .post-card-title {
  color: #e0e0e0; }

body.colorscheme-dark .post-card-desc,
body.colorscheme-auto[data-theme="dark"] .post-card-desc {
  color: #9e9e9e; }

body.colorscheme-dark .post-card-tag,
body.colorscheme-auto[data-theme="dark"] .post-card-tag {
  background: #383838;
  color: #90a4ae; }

@media (prefers-color-scheme: dark) {
  body.colorscheme-auto .post-card-link {
    border-color: #424242;
    background: #2a2a2a; }
    body.colorscheme-auto .post-card-link:hover, body.colorscheme-auto .post-card-link:focus {
      border-color: #42a5f5;
      box-shadow: 0 2px 12px rgba(66, 165, 245, 0.1); }
  body.colorscheme-auto .post-card-date {
    color: #42a5f5; }
  body.colorscheme-auto .post-card-title {
    color: #e0e0e0; }
  body.colorscheme-auto .post-card-desc {
    color: #9e9e9e; }
  body.colorscheme-auto .post-card-tag {
    background: #383838;
    color: #90a4ae; } }

@media only screen and (max-width: 768px) {
  .post-card-link {
    padding: 1.6rem; }
  .post-card-title {
    font-size: 1.6rem; }
  .post-card-desc {
    font-size: 1.3rem; } }

.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color, #e1e5e9); }
  .related-posts h3 {
    margin-bottom: 1.5rem;
    color: var(--heading-color, #212529); }
  .related-posts .related-grid {
    display: grid;
    gap: 1.5rem; }
    @media (min-width: 768px) {
      .related-posts .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } }
  .related-posts .related-item {
    padding: 1rem;
    border: 1px solid var(--border-color, #e1e5e9);
    border-radius: 6px;
    transition: border-color 0.2s ease; }
    .related-posts .related-item:hover {
      border-color: var(--accent-color, #007acc); }
    .related-posts .related-item h4 {
      margin: 0 0 0.5rem 0; }
      .related-posts .related-item h4 a {
        text-decoration: none;
        color: var(--heading-color, #212529); }
        .related-posts .related-item h4 a:hover {
          color: var(--accent-color, #007acc); }
    .related-posts .related-item .related-excerpt {
      margin: 0 0 1rem 0;
      color: var(--text-color, #495057);
      line-height: 1.5; }
    .related-posts .related-item .related-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: var(--text-muted, #6c757d); }
      .related-posts .related-item .related-meta .related-tags {
        display: flex;
        gap: 0.25rem; }
        .related-posts .related-item .related-meta .related-tags .tag {
          background: var(--tag-background, #f8f9fa);
          color: var(--tag-color, #495057);
          padding: 0.125rem 0.5rem;
          border-radius: 3px;
          font-size: 0.75rem; }

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