/* Ana Sayfa Ürün Kartları Optimizasyonu */

/* Ürün Kartları Standardizasyonu */
.meeting-item {
    display: flex;
    flex-direction: column;
    height: 380px;
    min-height: 380px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.meeting-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Resim Alanı Standardizasyonu */
.meeting-item .thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.meeting-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.meeting-item .thumb:hover img {
    transform: scale(1.05);
}

/* Fiyat Etiketi - KALDIRILDI */
/*
.meeting-item .thumb .price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.meeting-item .thumb .price span {
    display: block;
    text-align: center;
    white-space: nowrap;
}
*/

/* İçerik Alanı */
.meeting-item .down-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: white;
    border-radius: 0 0 10px 10px;
}

/* Tarih Alanı - KALDIRILDI */
/*
.meeting-item .down-content .date {
    margin-bottom: 15px;
}

.meeting-item .down-content .date h6 {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.meeting-item .down-content .date h6 span {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 5px;
}
*/

.meeting-item .down-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.3;
    min-height: 2.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meeting-item .down-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meeting-item .down-content h4 a:hover {
    color: #667eea;
}

.meeting-item .down-content p {
    flex: 1;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Grid Düzeni */
.our-meetings .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.our-meetings .col-lg-6 {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin-bottom: 20px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .our-meetings .col-lg-6 {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .meeting-item {
        min-height: 350px;
    }
    
    .meeting-item .thumb {
        height: 180px;
    }
    
    .our-meetings .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .meeting-item .down-content {
        padding: 15px;
    }
    
    .meeting-item .down-content h4 {
        font-size: 1rem;
        min-height: 2.4em;
    }
    
    .meeting-item .down-content p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .meeting-item .thumb {
        height: 150px;
    }
    
    .meeting-item .thumb .price {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .meeting-item .down-content {
        padding: 12px;
    }
    
    .meeting-item .down-content h4 {
        font-size: 0.9rem;
        min-height: 2.2em;
    }
    
    .meeting-item .down-content p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
}

/* Hover Efektleri */
.meeting-item .thumb a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.meeting-item .thumb a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.meeting-item .thumb:hover a::before {
    opacity: 1;
}

/* Kategori Filtreleme Optimizasyonu */
.categories {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.categories h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories ul li {
    margin-bottom: 8px;
}

.categories ul li a {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.categories ul li a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
}

.main-button-red {
    margin-top: 20px;
    text-align: center;
}

.main-button-red a {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-button-red a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
