Skip to content

Latest commit

 

History

History
196 lines (160 loc) · 4.68 KB

File metadata and controls

196 lines (160 loc) · 4.68 KB


<style> /* --- Default (Light Mode) Setup --- */ .home-split-container { display: flex; flex-direction: row; justify-content: space-between; gap: 60px; margin-bottom: 15px; align-items: flex-start; } .intro-text-box { flex: 1; } /* Default Colors (Light Mode) */ .intro-text-box h2 { margin-top: 0; font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); /* theme-aware: follows the light/dark toggle */ } .intro-text-box p.lead { font-size: 1.1rem; line-height: 1.6; color: var(--text); } .news-sidebar-clean { flex: 0 0 280px; border-left: 2px solid var(--light-gray); padding-left: 25px; margin-top: 60px; } .news-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); font-weight: 700; margin-bottom: 15px; display: block; } .news-item { margin-bottom: 20px; } .news-date { font-size: 0.75rem; color: var(--gray); margin-bottom: 2px; } .news-link { font-size: 0.95rem; font-weight: 600; color: var(--text); opacity: 0.7; text-decoration: none; line-height: 1.3; display: block; } .news-link:hover { color: var(--primary); opacity: 1; } /* All colors above use theme variables (var(--text), var(--gray), var(--light-gray), var(--primary)), so they follow the site's light/dark toggle automatically — no prefers-color-scheme override needed (which wouldn't match the [data-dark] toggle anyway). */ /* MOBILE: Stack them vertically */ @media (max-width: 850px) { .home-split-container { flex-direction: column; gap: 40px; } .news-sidebar-clean { width: 100%; border-left: none; border-top: 2px solid var(--light-gray); padding-left: 0; padding-top: 25px; margin-top: 0; } } </style>

Our research vision

We explore the ultrafast dynamics of spins and magnetism, harnessing terahertz fields to control quantum magnets at the nanoscale. Our research pushes the boundaries of spin‑orbitronics, turning femtosecond and nanometer phenomena into future applications. Check our focus projects to learn more about our research.

Latest News
{% for post in site.posts limit:3 %}
  <div class="news-item">
    <div class="news-date">{{ post.date | date: "%B %Y" }}</div>
    <a href="{{ post.url | relative_url }}" class="news-link">
      {{ post.title }}
    </a>
  </div>
{% endfor %}

{% if site.posts.size == 0 %}
  <p style="font-size:0.8rem; color:var(--gray);">No news updates yet.</p>
{% endif %}

<a href="{{ '/news/' | relative_url }}" style="font-size: 0.85rem; color: var(--dark-gray); text-decoration: underline;">
  All updates &rarr;
</a>

{% include section.html %}

Highlights

{% capture text %}

We develop and use novel approaches for terahertz time-domain spectroscopy capable of combing femtosecond temporal and nanometer spatial resolutions. These steps are key to explore ultrafast dynamics in complex nanomaterials on the spatiotemporal scales relevant for applications and fundamental insights.

{% include button.html link="papers" text="See our publications" icon="fa-solid fa-arrow-right" flip=true style="bare" %}

{% endcapture %}

{% include feature.html image="images/NATS_scheme.svg" link="papers" title="Our Research" text=text %}

{% capture text %}

We focus on magnetic materials and aim at gaining control over the ultrafast dynamics of the order parameter on nanoscales. Promising research directions include terahertz dynamics in multiferroics or 2D materials.

{% include button.html link="focus" text="Browse our focus projects" icon="fa-solid fa-arrow-right" flip=true style="bare" %}

{% endcapture %}

{% include feature.html image="images/projects.jpg" link="focus" title="Our Projects" flip=true style="bare" text=text %}

{% capture text %}

Our international team includes researcher at a variety of academic stages, ranging from master students, via PhD candidates to postdoctoral researchers.

{% include button.html link="team" text="Meet our team" icon="fa-solid fa-arrow-right" flip=true style="bare" %}

{% endcapture %}

{% include feature.html image="images/groupphoto.jpeg" link="team" title="Our Team" text=text %}