.event-card {
    background: #fff;
    border-radius: 6px; /* dikdörtgen kart, hafif köşe yumuşatma */
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto; /* içeriğe göre yükseklik */
    min-height: 220px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.event-meta {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
}

.event-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2e7d32; /* yeşil ton */
    font-size: 0.95rem;
    background: #e8f5e9; /* chip görünümü */
    padding: 6px 10px;
    border-radius: 999px;
}

.event-time svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.event-image {
    width: 100%;
    aspect-ratio: 1050 / 1556; /* 1050x1556 görsel tümü görünsün */
    background: #f7f6f2; /* letterbox alanı için nötr arka plan */
    display: grid;
    place-items: center;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* görselin tamamı görünsün */
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

/* Kart içerik bölümü */
.event-content {
    padding: 12px 14px;
}

.event-title {
    margin-top: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b1b18;
    line-height: 1.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}