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