.simple-event {
border: 1px solid #ccc;
border-radius: 8px;
background: #1e1e1e;
overflow: hidden;
font-family: sans-serif;
margin: 1rem 0;
}
.simple-card {
position: relative;
height: 120px; /* Sabit yükseklik */
display: flex;
align-items: center;
}
.simple-card__background {
height: 100%;
width: 100%;
overflow: hidden;
}
.simple-card__img {
height: 100%;
width: 100%;
object-fit: cover; /* Oranlı kırpma */
display: block;
}
.simple-card__foreground {
position: absolute;
left: 1rem;
right: 1rem;
color: white;
font-weight: bold;
font-size: 1rem;
text-shadow: 0 0 5px black;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}