 /* Senior Görsel Sahne Ayarı */
.project-featured-img {
    width: 100%;
    height: 600px; /* Standart yükseklik */
    background-color: #f8f9fa; /* Hafif medikal gri/beyaz arka plan */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0;
}

.project-featured-img img {
    max-width: 95%;
    max-height: 95%;
    width: auto; /* Genişliği zorlama */
    height: auto; /* Yüksekliği zorlama */
    object-fit: contain; /* Görselin tamamını göster, kesme! */
    transition: transform 0.5s ease;
}

/* Üzerine gelince çok hafif bir odaklanma efekti (Opsiyonel) */
.project-featured-img:hover img {
    transform: scale(1.02);
}
@media (max-width: 991px) {
    .project-featured-img { height: 450px; } /* Tablette dengeli */
}

@media (max-width: 767px) {
    .project-featured-img { height: 350px; } /* Mobilde ekranı kaplamasın */
}
    .project-content { font-size: 1.15rem; line-height: 1.9; color: #444; }
    .project-content h2, .project-content h3 { color: var(--primary-color); font-weight: 700; margin-top: 40px; margin-bottom: 20px; }
    .project-content ul, .project-content ol { margin-bottom: 25px; padding-left: 20px; }
    .project-content li { margin-bottom: 10px; }
    .project-content img { border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin: 30px 0; }
    .hover-bg-light:hover { background-color: #f8f9fa; transition: 0.3s; }
    .last-child-border-0:last-child { border-bottom: 0 !important; }