.event-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
}

.event-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.event-image {
    position: relative;
    width: 100%;
    padding-top: 52%;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-details {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.event-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-info span {
    display: block;
    margin-bottom: 5px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    color: #666;
}

.info-item i {
    width: 16px;
    margin-right: 8px;
    color: #666;
}

.info-item span {
    font-size: 0.85rem;
}

.event-info i {
    width: 20px;
    margin-right: 5px;
}

.event-price {
    color: #000;
    font-weight: bold;
    margin-bottom: 15px;
}

.event-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-footer .badge {
    font-size: 0.8rem;
}

.event-footer .badge i {
    margin-right: 5px;
}

.event-footer .btn {
  
    font-size: 0.9rem;
}

/* Tablet ve üstü için 4'lü grid */
@media (min-width: 768px) {
    .event-container {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}
