.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 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.event-category {
    background: #007bff;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-category[data-category="Futbol"],
.event-category[data-category="Spor"] {
    background-color: #00b894;
}

.event-category-theatre {
    background-color: #e91e63;
}

.event-category-other {
    background-color: #2196f3;
}

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

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-info {
    margin-bottom: 0.5rem;
}

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

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

.info-item span {
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.event-footer {
    margin-top: auto;
}

.event-footer .btn {
    padding: 8px 20px;
}

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: #46178f;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #351373;
}

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