/* Detay Sayfası Stilleri */
.detail-page {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.detail-content {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 2rem;
}

.detail-image {
    width: 100%;
    position: relative;
    padding-top: 40%; /* 5:2 aspect ratio - daha geniş bir görünüm */
    background: #f8f9fa;
    overflow: hidden;
}

.detail-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Görsel olmadığında gösterilecek placeholder */
.detail-image:empty {
    background: linear-gradient(45deg, #f1f1f1 25%, #e9ecef 25%, #e9ecef 50%, #f1f1f1 50%, #f1f1f1 75%, #e9ecef 75%, #e9ecef 100%);
    background-size: 20px 20px;
}

.detail-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b2bec3;
    font-size: 0.9rem;
}

.meta-item i {
    color: #dc3545;
}

.detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1.3;
    margin: 0;
}

.detail-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
}

/* Önem Derecesi Badge */
.importance-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1;
}

/* Diğer İçerikler Bölümü */
.other-content {
    margin-top: 3rem;
}

.other-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.other-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #dc3545;
    border-radius: 2px;
}

/* Sosyal Medya Paylaşım */
.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    color: #fff;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.share-button:hover {
    transform: translateY(-2px);
    color: #fff;
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .detail-image {
        padding-top: 66.67%; /* Mobilde 3:2 aspect ratio */
    }
    
    .detail-header {
        padding: 1.5rem;
    }
    
    .detail-title {
        font-size: 1.8rem;
    }
    
    .detail-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .detail-body {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
} 