body{
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
margin:0;
line-height:1.6;
background:#fafafa;
color:#222;
}

header{
text-align:center;
padding:40px;
background:white;
border-bottom:1px solid #eee;
}

nav a{
margin:0 15px;
text-decoration:none;
color:#444;
font-weight:500;
}

.hero{
display:flex;
align-items:center;
justify-content:center;
gap:40px;
padding:60px;
}

.profile{
width:160px;
border-radius:50%;
}

section{
max-width:900px;
margin:auto;
padding:60px 20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
border:1px solid #eee;
}

.button{
display:inline-block;
margin-top:20px;
padding:10px 16px;
background:#111;
color:white;
text-decoration:none;
border-radius:6px;
}

.tags{
display:flex;
flex-wrap:wrap;
gap:10px;
list-style:none;
padding:0;
}

.tags li{
background:#eee;
padding:6px 12px;
border-radius:20px;
}

footer{
text-align:center;
padding:40px;
background:white;
border-top:1px solid #eee;
}
/* Publications */

.pub-item{
margin-bottom:25px;
padding-bottom:20px;
border-bottom:1px solid #eee;
}

.pub-title{
font-weight:600;
font-size:18px;
margin-bottom:6px;
}

.pub-authors{
color:#555;
margin-bottom:4px;
}

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

.pub-links a{
display:inline-block;
margin-right:10px;
text-decoration:none;
font-size:14px;
color:#0066cc;
}

.pub-links a:hover{
text-decoration:underline;
}

.design-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.design-card{
background:white;
padding:10px;
border-radius:10px;
border:1px solid #eee;
text-align:center;
}

.design-card img{
width:100%;
border-radius:8px;
transition:0.3s;
}

.design-card img:hover{
transform:scale(1.03);
}

.center{
text-align:center;
margin-top:40px;
}
