

body {
margin: 0;
font-family: system-ui, sans-serif;
background: #050505;
color: #ddd;
}

a{
text-decoration: none;
color: inherit;
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1rem;
padding: 1rem;
}

.project-card {
border-radius: 1rem;
overflow: hidden;
display: flex;
flex-direction: column;
transition: background 0.3s ease; /* sanfter Farbwechsel */
}

.project-card:hover {
background: rgb(19, 19, 19);
}

.frame {
position: relative;
width: 100%;
aspect-ratio: 16 / 10; /* 1280:800 */
overflow: hidden;
background: #000;
border-radius: 1rem;
}

.frame iframe {
position: absolute;
top: 0;
left: 0;
width: 1280px;   /* Desktop-Viewport */
height: 800px;
border: 0;
pointer-events: none; /* Card bleibt klickbar */
transform-origin: top left;
overflow: hidden;
}

.title {
padding: 1rem 1.5rem;
font-size: .9rem;
display: flex;
font-weight: 600;
}