/* Kompakt Etkinlik Kartları */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.event-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

/* Kompakt Fotoğraf */
.event-item__image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-item:hover .event-item__image img {
    transform: scale(1.05);
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 2rem;
}

/* Tarih Badge */
.event-item__date {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-width: 50px;
    backdrop-filter: blur(10px);
}

.event-date__day {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
    margin-bottom: 2px;
}

.event-date__month {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

/* İçerik */
.event-item__content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-item__header {
    margin-bottom: 0.75rem;
}

.event-item__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em;
}

.event-item__category {
    background: #f0fdf4;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

/* Meta Bilgiler */
.event-item__meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.event-meta__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

.event-meta__item i {
    color: #10b981;
    width: 16px;
    font-size: 0.9rem;
}

/* Açıklama */
.event-item__description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7em;
}

/* Butonlar */
.event-item__buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

/* Kompakt Butonlar */
.btn-primary.btn-sm {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-primary.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: white;
    text-decoration: none;
}

.btn-outline.btn-sm {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-outline.btn-sm:hover {
    background: #f8fafc;
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
    }
    
    .event-item__image {
        height: 140px;
    }
    
    .event-item__content {
        padding: 1rem;
    }
    
    .event-item__title {
        font-size: 1rem;
    }
    
    .event-item__buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-primary.btn-sm,
    .btn-outline.btn-sm {
        width: 100%;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .event-item__date {
        top: 8px;
        right: 8px;
        padding: 0.4rem;
        min-width: 45px;
    }
    
    .event-date__day {
        font-size: 0.9rem;
    }
    
    .event-date__month {
        font-size: 0.65rem;
    }
}