/* ==========================================
   PROJELER SAYFASI ÖZEL STİLLER
   ========================================== */

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Project Card Stilleri */
.project-card {
    padding: 30px;
    min-height: 400px;
    justify-content: space-between;
}

.project-card h3 {
    margin-bottom: 15px;
}

.project-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Project Card Buton Hizalama */
.project-card .btn {
    margin-top: auto;
    align-self: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .project-card {
        padding: 20px;
        min-height: 350px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}